diff --git a/fannyapp.pro b/fannyapp.pro index c420543..d0f7ffa 100644 --- a/fannyapp.pro +++ b/fannyapp.pro @@ -37,8 +37,8 @@ HEADERS += \ headers/appstyle.h RESOURCES += \ - shared/shared.qrc \ - qml/qml.qrc + resources/shared/shared.qrc \ + resources/qml/qml.qrc # Additional import path used to resolve QML modules in Qt Creator's code model QML_IMPORT_PATH = diff --git a/qml/Components/CompatibleToolButton.qml b/qml/Components/CompatibleToolButton.qml deleted file mode 100644 index 7f68089..0000000 --- a/qml/Components/CompatibleToolButton.qml +++ /dev/null @@ -1,111 +0,0 @@ -import QtQuick 2.0 -import QtQuick.Controls 2.1 -import QtQuick.Controls.Material 2.1 - -Loader { - id: control - - property QIconSource icon: QIconSource {} - - property int fontPixelSize: height * 0.4 - - property string text - - signal clicked - - Connections { - target: icon - - onNameChanged: { - control.syncProperties() - } - - onColorChanged: { - control.syncProperties() - } - } - - onTextChanged: { - control.syncProperties() - } - - function syncProperties() { - - if(control.status !== Loader.Ready) { - return - } - - if(QtCompatiblityMode) { - control.item.text = control.text - control.item.font = control.font - - if(control.fontPixelSize !== undefined) { - control.item.font.pixelSize = control.fontPixelSize - } - } - else { - control.item.icon.name = control.icon.name - control.item.icon.color = control.icon.color - - control.item.icon.width = control.icon.width - control.item.icon.height = control.icon.height - } - } - - onLoaded: { - control.syncProperties() - } - - Component.onCompleted: { - if(QtCompatiblityMode) { - control.sourceComponent = ancientToolButtonCp - } - else { - control.sourceComponent = modernToolButtonCp - } - } - - Connections { - target: control.item - - onClicked: { - control.clicked() - } - } - - Component { - id: ancientToolButtonCp - - ToolButton { - id: tb - - opacity: enabled ? 1.0 : 0.3 - - contentItem: Text { - text: tb.text - font.pixelSize: tb.height * 0.5 - font.family: iconFont.name - color: app.style.style.textColor - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - elide: Text.ElideRight - } - - FontLoader { - id: iconFont - source: "qrc:/fonts/IconFont.otf" - } - - } - } - - Component { - id: modernToolButtonCp - - ToolButton { - height: implicitHeight - width: implicitWidth - } - } - -} diff --git a/qml/Components/QIconSource.qml b/qml/Components/QIconSource.qml deleted file mode 100644 index 46b81c2..0000000 --- a/qml/Components/QIconSource.qml +++ /dev/null @@ -1,8 +0,0 @@ -import QtQuick 2.0 - -QtObject { - property string name: "" - property int height - property int width - property color color: "black" -} diff --git a/qml/Components/AppToolBar.qml b/resources/qml/Components/AppToolBar.qml similarity index 100% rename from qml/Components/AppToolBar.qml rename to resources/qml/Components/AppToolBar.qml diff --git a/resources/qml/Components/CompatibleToolButton.qml b/resources/qml/Components/CompatibleToolButton.qml new file mode 100644 index 0000000..51a6275 --- /dev/null +++ b/resources/qml/Components/CompatibleToolButton.qml @@ -0,0 +1,31 @@ +import QtQuick 2.0 +import QtQuick.Controls 2.1 +import QtQuick.Controls.Material 2.1 + +ToolButton { + id: tb + + opacity: enabled ? 1.0 : 0.3 + + contentItem: Item { + + Text { + anchors.centerIn: parent + anchors.horizontalCenterOffset: 3 + text: tb.text + + font.pixelSize: tb.height * 0.5 + font.family: iconFont.name + color: app.style.style.textColor + horizontalAlignment: Text.AlignLeft + verticalAlignment: Text.AlignVCenter + elide: Text.ElideRight + } + } + + FontLoader { + id: iconFont + source: "qrc:/fonts/IconFont.otf" + } + +} diff --git a/qml/Components/EventView.qml b/resources/qml/Components/EventView.qml similarity index 100% rename from qml/Components/EventView.qml rename to resources/qml/Components/EventView.qml diff --git a/qml/Components/FancyButton.qml b/resources/qml/Components/FancyButton.qml similarity index 100% rename from qml/Components/FancyButton.qml rename to resources/qml/Components/FancyButton.qml diff --git a/qml/Components/FannyDataListView.qml b/resources/qml/Components/FannyDataListView.qml similarity index 100% rename from qml/Components/FannyDataListView.qml rename to resources/qml/Components/FannyDataListView.qml diff --git a/qml/Components/FoodPlanView.qml b/resources/qml/Components/FoodPlanView.qml similarity index 100% rename from qml/Components/FoodPlanView.qml rename to resources/qml/Components/FoodPlanView.qml diff --git a/qml/Components/InfoArea.qml b/resources/qml/Components/InfoArea.qml similarity index 100% rename from qml/Components/InfoArea.qml rename to resources/qml/Components/InfoArea.qml diff --git a/qml/Components/ProgressCircle.qml b/resources/qml/Components/ProgressCircle.qml similarity index 100% rename from qml/Components/ProgressCircle.qml rename to resources/qml/Components/ProgressCircle.qml diff --git a/qml/Components/SettingsDelegate.qml b/resources/qml/Components/SettingsDelegate.qml similarity index 84% rename from qml/Components/SettingsDelegate.qml rename to resources/qml/Components/SettingsDelegate.qml index abba267..ca6004e 100644 --- a/qml/Components/SettingsDelegate.qml +++ b/resources/qml/Components/SettingsDelegate.qml @@ -64,24 +64,28 @@ ItemDelegate { color: app.style.style.textColor } - Image { - id: forwardIcon - - visible: control.showForwardIcon - + Text { anchors { verticalCenter: parent.verticalCenter right: parent.right rightMargin: 10 } - height: parent.height * 0.4 - + visible: control.showForwardIcon rotation: 180 + text: "\u0082" - fillMode: Image.PreserveAspectFit + font.pixelSize: parent.height * 0.4 + font.family: iconFont.name + color: app.style.style.textColor + horizontalAlignment: Text.AlignLeft + verticalAlignment: Text.AlignVCenter + elide: Text.ElideRight + } - source: app.style.style.backIcon + FontLoader { + id: iconFont + source: "qrc:/fonts/IconFont.otf" } } diff --git a/qml/Forms/EventForm.qml b/resources/qml/Forms/EventForm.qml similarity index 100% rename from qml/Forms/EventForm.qml rename to resources/qml/Forms/EventForm.qml diff --git a/qml/Forms/FilterForm.qml b/resources/qml/Forms/FilterForm.qml similarity index 99% rename from qml/Forms/FilterForm.qml rename to resources/qml/Forms/FilterForm.qml index 5da228f..d02211a 100644 --- a/qml/Forms/FilterForm.qml +++ b/resources/qml/Forms/FilterForm.qml @@ -292,9 +292,6 @@ Page { height: parent.height - icon.name: "delete" - icon.color: app.style.style.textColor - text: "\u0083" onClicked: { diff --git a/qml/Forms/FoodPlanForm.qml b/resources/qml/Forms/FoodPlanForm.qml similarity index 100% rename from qml/Forms/FoodPlanForm.qml rename to resources/qml/Forms/FoodPlanForm.qml diff --git a/qml/Forms/HomeForm.qml b/resources/qml/Forms/HomeForm.qml similarity index 100% rename from qml/Forms/HomeForm.qml rename to resources/qml/Forms/HomeForm.qml diff --git a/qml/Forms/LoadingForm.qml b/resources/qml/Forms/LoadingForm.qml similarity index 100% rename from qml/Forms/LoadingForm.qml rename to resources/qml/Forms/LoadingForm.qml diff --git a/qml/Forms/SettingsForm.qml b/resources/qml/Forms/SettingsForm.qml similarity index 100% rename from qml/Forms/SettingsForm.qml rename to resources/qml/Forms/SettingsForm.qml diff --git a/qml/Pages/LoginPage.qml b/resources/qml/Pages/LoginPage.qml similarity index 98% rename from qml/Pages/LoginPage.qml rename to resources/qml/Pages/LoginPage.qml index 64c5c87..6e3ff01 100644 --- a/qml/Pages/LoginPage.qml +++ b/resources/qml/Pages/LoginPage.qml @@ -150,8 +150,6 @@ Page { rightMargin: -width * 1.1 } - icon.color: app.style.style.textColor - onClicked: { if(state === "visible"){ state = "invisible" @@ -168,7 +166,6 @@ Page { name: "invisible" PropertyChanges { target: passwordHideShow - icon.name: "hide" text: "\u0081" } @@ -181,7 +178,6 @@ Page { name: "visible" PropertyChanges { target: passwordHideShow - icon.name: "view" text: "\u0080" } PropertyChanges { diff --git a/qml/Pages/MainPage.qml b/resources/qml/Pages/MainPage.qml similarity index 97% rename from qml/Pages/MainPage.qml rename to resources/qml/Pages/MainPage.qml index ddb5164..e3039d6 100644 --- a/qml/Pages/MainPage.qml +++ b/resources/qml/Pages/MainPage.qml @@ -153,9 +153,6 @@ Page { opacity: enabled ? 1:0.5 - icon.name: "back" - icon.color: app.style.style.textColor - text: "\u0082"//"\u2039" onClicked: { @@ -197,9 +194,6 @@ Page { visible: formStack.currentItem.title === "Vertretungsplan" - icon.name: "pdf" - icon.color: app.style.style.textColor - text: "\u0084"//"pdf ansehen" onClicked: { diff --git a/qml/main.qml b/resources/qml/main.qml similarity index 100% rename from qml/main.qml rename to resources/qml/main.qml diff --git a/qml/qml.qrc b/resources/qml/qml.qrc similarity index 94% rename from qml/qml.qrc rename to resources/qml/qml.qrc index f4b0097..3ad45b2 100644 --- a/qml/qml.qrc +++ b/resources/qml/qml.qrc @@ -18,6 +18,5 @@ Components/FannyDataListView.qml Components/ProgressCircle.qml Components/CompatibleToolButton.qml - Components/QIconSource.qml diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Contents.json b/resources/shared/Assets.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Contents.json rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Contents.json diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png diff --git a/shared/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png b/resources/shared/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png similarity index 100% rename from shared/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png rename to resources/shared/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png diff --git a/shared/Assets.xcassets/Contents.json b/resources/shared/Assets.xcassets/Contents.json similarity index 100% rename from shared/Assets.xcassets/Contents.json rename to resources/shared/Assets.xcassets/Contents.json diff --git a/shared/fonts/IconFont.otf b/resources/shared/fonts/IconFont.otf similarity index 100% rename from shared/fonts/IconFont.otf rename to resources/shared/fonts/IconFont.otf diff --git a/shared/graphics/Banner.png b/resources/shared/graphics/Banner.png similarity index 100% rename from shared/graphics/Banner.png rename to resources/shared/graphics/Banner.png diff --git a/shared/graphics/Banner.xcf b/resources/shared/graphics/Banner.xcf similarity index 100% rename from shared/graphics/Banner.xcf rename to resources/shared/graphics/Banner.xcf diff --git a/shared/graphics/images/FannyLogoLightBig.png b/resources/shared/graphics/FannyLogoLightBig.png similarity index 100% rename from shared/graphics/images/FannyLogoLightBig.png rename to resources/shared/graphics/FannyLogoLightBig.png diff --git a/shared/graphics/Icon Big square.png b/resources/shared/graphics/Icon Big square.png similarity index 100% rename from shared/graphics/Icon Big square.png rename to resources/shared/graphics/Icon Big square.png diff --git a/shared/graphics/favicon.png b/resources/shared/graphics/favicon.png similarity index 100% rename from shared/graphics/favicon.png rename to resources/shared/graphics/favicon.png diff --git a/shared/graphics/favicon.xcf b/resources/shared/graphics/favicon.xcf similarity index 100% rename from shared/graphics/favicon.xcf rename to resources/shared/graphics/favicon.xcf diff --git a/shared/graphics/screenshots/1_Screenshot_MainPage.jpg b/resources/shared/graphics/screenshots/1_Screenshot_MainPage.jpg similarity index 100% rename from shared/graphics/screenshots/1_Screenshot_MainPage.jpg rename to resources/shared/graphics/screenshots/1_Screenshot_MainPage.jpg diff --git a/shared/graphics/screenshots/2_Screenshot_EvetPage.jpg b/resources/shared/graphics/screenshots/2_Screenshot_EvetPage.jpg similarity index 100% rename from shared/graphics/screenshots/2_Screenshot_EvetPage.jpg rename to resources/shared/graphics/screenshots/2_Screenshot_EvetPage.jpg diff --git a/shared/graphics/screenshots/3_Screenshot_CookplanPage.jpg b/resources/shared/graphics/screenshots/3_Screenshot_CookplanPage.jpg similarity index 100% rename from shared/graphics/screenshots/3_Screenshot_CookplanPage.jpg rename to resources/shared/graphics/screenshots/3_Screenshot_CookplanPage.jpg diff --git a/shared/graphics/screenshots/4_Screenshot_SettingsPage.jpg b/resources/shared/graphics/screenshots/4_Screenshot_SettingsPage.jpg similarity index 100% rename from shared/graphics/screenshots/4_Screenshot_SettingsPage.jpg rename to resources/shared/graphics/screenshots/4_Screenshot_SettingsPage.jpg diff --git a/shared/graphics/screenshots/5_Screenshot_SettingsFiltersPage.jpg b/resources/shared/graphics/screenshots/5_Screenshot_SettingsFiltersPage.jpg similarity index 100% rename from shared/graphics/screenshots/5_Screenshot_SettingsFiltersPage.jpg rename to resources/shared/graphics/screenshots/5_Screenshot_SettingsFiltersPage.jpg diff --git a/shared/graphics/images/FannyLogoDark.jpg b/resources/shared/icons/FannyLogoDark.jpg similarity index 100% rename from shared/graphics/images/FannyLogoDark.jpg rename to resources/shared/icons/FannyLogoDark.jpg diff --git a/shared/graphics/images/FannyLogoLight.png b/resources/shared/icons/FannyLogoLight.png similarity index 100% rename from shared/graphics/images/FannyLogoLight.png rename to resources/shared/icons/FannyLogoLight.png diff --git a/shared/icons/TreffpunktFannyLogo.png b/resources/shared/icons/TreffpunktFannyLogo.png similarity index 100% rename from shared/icons/TreffpunktFannyLogo.png rename to resources/shared/icons/TreffpunktFannyLogo.png diff --git a/shared/graphics/images/TreffpunktFannyLogoDark.png b/resources/shared/icons/TreffpunktFannyLogoDark.png similarity index 100% rename from shared/graphics/images/TreffpunktFannyLogoDark.png rename to resources/shared/icons/TreffpunktFannyLogoDark.png diff --git a/shared/graphics/images/TreffpunktFannyLogoLight.png b/resources/shared/icons/TreffpunktFannyLogoLight.png similarity index 100% rename from shared/graphics/images/TreffpunktFannyLogoLight.png rename to resources/shared/icons/TreffpunktFannyLogoLight.png diff --git a/shared/icons/logoutBlack.png b/resources/shared/icons/logoutBlack.png similarity index 100% rename from shared/icons/logoutBlack.png rename to resources/shared/icons/logoutBlack.png diff --git a/shared/icons/logoutRed.png b/resources/shared/icons/logoutRed.png similarity index 100% rename from shared/icons/logoutRed.png rename to resources/shared/icons/logoutRed.png diff --git a/shared/icons/settings.png b/resources/shared/icons/settings.png similarity index 100% rename from shared/icons/settings.png rename to resources/shared/icons/settings.png diff --git a/shared/icons/settingsBlack.png b/resources/shared/icons/settingsBlack.png similarity index 100% rename from shared/icons/settingsBlack.png rename to resources/shared/icons/settingsBlack.png diff --git a/shared/icons/sheute.png b/resources/shared/icons/sheute.png similarity index 100% rename from shared/icons/sheute.png rename to resources/shared/icons/sheute.png diff --git a/shared/icons/smorgen.png b/resources/shared/icons/smorgen.png similarity index 100% rename from shared/icons/smorgen.png rename to resources/shared/icons/smorgen.png diff --git a/resources/shared/shared.qrc b/resources/shared/shared.qrc new file mode 100644 index 0000000..31c853e --- /dev/null +++ b/resources/shared/shared.qrc @@ -0,0 +1,18 @@ + + + icons/FannyLogoDark.jpg + icons/FannyLogoLight.png + icons/TreffpunktFannyLogoDark.png + icons/TreffpunktFannyLogoLight.png + icons/logoutBlack.png + icons/logoutRed.png + icons/settings.png + icons/settingsBlack.png + icons/sheute.png + icons/smorgen.png + icons/TreffpunktFannyLogo.png + graphics/Icon Big square.png + graphics/favicon.png + fonts/IconFont.otf + + diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1125@3x~iphoneX-portrait_1125x2436.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1125@3x~iphoneX-portrait_1125x2436.png deleted file mode 100644 index db4b8b8..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1125@3x~iphoneX-portrait_1125x2436.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1242@3x~iphone6s-landscape_2208x1242.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1242@3x~iphone6s-landscape_2208x1242.png deleted file mode 100644 index bddb468..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1242@3x~iphone6s-landscape_2208x1242.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1242@3x~iphone6s-portrait_1242x2208.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1242@3x~iphone6s-portrait_1242x2208.png deleted file mode 100644 index bde25c8..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1242@3x~iphone6s-portrait_1242x2208.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1242@3x~iphoneXsMax-portrait_1242x2688.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1242@3x~iphoneXsMax-portrait_1242x2688.png deleted file mode 100644 index efcde22..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1242@3x~iphoneXsMax-portrait_1242x2688.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1792@2x~iphoneXr-landscape_1792x828.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1792@2x~iphoneXr-landscape_1792x828.png deleted file mode 100644 index 3379259..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-1792@2x~iphoneXr-landscape_1792x828.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-2436@3x~iphoneX-landscape_2436x1125.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-2436@3x~iphoneX-landscape_2436x1125.png deleted file mode 100644 index 0cd2287..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-2436@3x~iphoneX-landscape_2436x1125.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-2688@3x~iphoneXsMax-landscape_2688x1242.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-2688@3x~iphoneXsMax-landscape_2688x1242.png deleted file mode 100644 index d337d96..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-2688@3x~iphoneXsMax-landscape_2688x1242.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x~iphone_640x1136.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x~iphone_640x1136.png deleted file mode 100644 index cada91f..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x~iphone_640x1136.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-750@2x~iphone6-landscape_1334x750.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-750@2x~iphone6-landscape_1334x750.png deleted file mode 100644 index 407cd37..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-750@2x~iphone6-landscape_1334x750.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-750@2x~iphone6-portrait_750x1334.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-750@2x~iphone6-portrait_750x1334.png deleted file mode 100644 index 2501723..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-750@2x~iphone6-portrait_750x1334.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-828@2x~iphoneXr-portrait_828x1792.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-828@2x~iphoneXr-portrait_828x1792.png deleted file mode 100644 index ecdadba..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-828@2x~iphoneXr-portrait_828x1792.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2048x1496.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2048x1496.png deleted file mode 100644 index 624f4cf..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2048x1496.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2048x1536.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2048x1536.png deleted file mode 100644 index 5de5d67..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2048x1536.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2224x1668.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2224x1668.png deleted file mode 100644 index 7f34679..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2224x1668.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2732x2048.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2732x2048.png deleted file mode 100644 index 9c3fae1..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape@2x~ipad_2732x2048.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~ipad_1024x748.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~ipad_1024x748.png deleted file mode 100644 index 887b35d..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~ipad_1024x748.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~ipad_1024x768.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~ipad_1024x768.png deleted file mode 100644 index 9cea81d..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Landscape~ipad_1024x768.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_1536x2008.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_1536x2008.png deleted file mode 100644 index 767aaa6..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_1536x2008.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_1536x2048.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_1536x2048.png deleted file mode 100644 index a8835ae..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_1536x2048.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_1668x2224.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_1668x2224.png deleted file mode 100644 index 1a1b6a5..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_1668x2224.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_2048x2732.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_2048x2732.png deleted file mode 100644 index a180af1..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait@2x~ipad_2048x2732.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait~ipad_768x1024.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait~ipad_768x1024.png deleted file mode 100644 index e027b09..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage-Portrait~ipad_768x1024.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage.png deleted file mode 100644 index 53f850c..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage~ipad.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage~ipad.png deleted file mode 100644 index 767aaa6..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage~ipad.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage~iphone-320x480.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage~iphone-320x480.png deleted file mode 100644 index b5a46d7..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage~iphone-320x480.png and /dev/null differ diff --git a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage~iphone_640x960.png b/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage~iphone_640x960.png deleted file mode 100644 index f46c067..0000000 Binary files a/shared/Assets.xcassets/LaunchImage.launchimage/LaunchImage~iphone_640x960.png and /dev/null differ diff --git a/shared/fonts/FontAwesome5Free-Solid.otf b/shared/fonts/FontAwesome5Free-Solid.otf deleted file mode 100644 index f59a233..0000000 Binary files a/shared/fonts/FontAwesome5Free-Solid.otf and /dev/null differ diff --git a/shared/fonts/FontAwesomeCustom.sfd b/shared/fonts/FontAwesomeCustom.sfd deleted file mode 100644 index 1e23bf9..0000000 --- a/shared/fonts/FontAwesomeCustom.sfd +++ /dev/null @@ -1,52279 +0,0 @@ -SplineFontDB: 3.0 -FontName: FontAwesome5Free-Solid -FullName: Font Awesome 5 Free Solid -FamilyName: Font Awesome 5 Free Solid -Weight: Solid -Copyright: Copyright (c) Font Awesome -Version: 330.498 (Font Awesome version: 5.11.2) -ItalicAngle: 0 -UnderlinePosition: -51 -UnderlineWidth: 25 -Ascent: 448 -Descent: 64 -InvalidEm: 0 -sfntRevision: 0x014a7f7c -LayerCount: 2 -Layer: 0 0 "Back" 1 -Layer: 1 0 "Fore" 0 -XUID: [1021 718 -10252168 10677055] -StyleMap: 0x0000 -FSType: 0 -OS2Version: 4 -OS2_WeightWidthSlopeOnly: 0 -OS2_UseTypoMetrics: 1 -CreationTime: 1569261225 -ModificationTime: 1575972106 -PfmFamily: 17 -TTFWeight: 900 -TTFWidth: 5 -LineGap: 0 -VLineGap: 0 -Panose: 2 0 5 3 0 0 0 0 0 0 -OS2TypoAscent: 448 -OS2TypoAOffset: 0 -OS2TypoDescent: -64 -OS2TypoDOffset: 0 -OS2TypoLinegap: 46 -OS2WinAscent: 460 -OS2WinAOffset: 0 -OS2WinDescent: 84 -OS2WinDOffset: 0 -HheadAscent: 448 -HheadAOffset: 0 -HheadDescent: -64 -HheadDOffset: 0 -OS2SubXSize: 332 -OS2SubYSize: 358 -OS2SubXOff: 0 -OS2SubYOff: 71 -OS2SupXSize: 332 -OS2SupYSize: 358 -OS2SupXOff: 0 -OS2SupYOff: 245 -OS2StrikeYSize: 25 -OS2StrikeYPos: 132 -OS2CapHeight: 421 -OS2XHeight: 314 -OS2Vendor: 'PfEd' -OS2CodePages: 80000001.00000000 -OS2UnicodeRanges: 00000001.10000000.00000000.00000000 -Lookup: 4 0 1 "'liga' Standard Ligatures in Latin lookup 0" { "'liga' Standard Ligatures in Latin lookup 0 per glyph data 0" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 1" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 2" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 3" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 4" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 5" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 6" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 7" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 8" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 10" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" "'liga' Standard Ligatures in Latin lookup 0 per glyph data 63" } ['liga' ('latn' <'dflt' > ) ] -DEI: 91125 -LangName: 1033 "" "" "" "Font Awesome 5 Free Solid-5.11.2" "" "330.498 (Font Awesome version: 5.11.2)" "" "" "" "" "The web's most popular icon set and toolkit." "https://fontawesome.com" "" "" "" "" "Font Awesome 5 Free" "Solid" "Font Awesome 5 Free Solid" "" "" "Font Awesome 5 Free" "Solid" -Encoding: UnicodeBmp -UnicodeInterp: none -NameList: AGL For New Fonts -DisplaySize: -48 -AntiAlias: 1 -FitToEm: 0 -WinInfo: 0 16 4 -BeginPrivate: 3 -BlueValues 31 [52 56 314 320 421 425 433 433] -OtherBlues 9 [-58 -55] -BlueShift 2 20 -EndPrivate -BeginChars: 65537 1029 - -StartChar: .notdef -Encoding: 65536 -1 0 -Width: 256 -Flags: MW -HStem: 0 25<50 206 50 231> 273 25<50 206 50 50> -VStem: 25 25<25 25 25 273> 206 25<25 273 273 273> -LayerCount: 2 -Fore -SplineSet -25 0 m 1 - 25 298 l 1 - 231 298 l 1 - 231 0 l 1 - 25 0 l 1 -50 25 m 1 - 206 25 l 1 - 206 273 l 1 - 50 273 l 1 - 50 25 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: space -Encoding: 32 32 1 -Width: 200 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Validated: 1 -EndChar - -StartChar: hyphen -Encoding: 45 45 2 -Width: 219 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -182 211 m 1 - 182 176 l 1 - 37 176 l 1 - 37 211 l 1 - 182 211 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: period -Encoding: 46 46 3 -Width: 119 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -86 56 m 1 - 33 56 l 1 - 33 109 l 1 - 86 109 l 1 - 86 56 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: zero -Encoding: 48 48 4 -Width: 307 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -26 238 m 0 - 26 361 70 425 154 425 c 0 - 237 425 281 360 281 239 c 0 - 281 116 237 52 154 52 c 0 - 70 52 26 116 26 238 c 0 -239 239 m 0 - 239 342 212 389 154 389 c 0 - 96 389 69 342 69 239 c 0 - 69 136 96 87 154 87 c 0 - 211 87 239 135 239 239 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: one -Encoding: 49 49 5 -Width: 335 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -164 421 m 1 - 188 421 l 1 - 188 91 l 1 - 269 91 l 1 - 269 56 l 1 - 66 56 l 1 - 66 91 l 1 - 146 91 l 1 - 146 368 l 1 - 71 321 l 1 - 71 361 l 1 - 164 421 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: two -Encoding: 50 50 6 -Width: 310 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -201 204 m 2 - 97 91 l 1 - 277 91 l 1 - 277 56 l 1 - 42 56 l 1 - 42 88 l 1 - 170 229 l 2 - 204 267 219 296 219 327 c 0 - 219 367 195 389 152 389 c 0 - 117 389 83 375 49 347 c 1 - 33 380 l 1 - 61 407 109 425 153 425 c 0 - 220 425 262 388 262 329 c 0 - 262 287 244 251 201 204 c 2 -EndSplineSet -Validated: 1 -EndChar - -StartChar: three -Encoding: 51 51 7 -Width: 297 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -270 155 m 0 - 270 91 224 52 150 52 c 0 - 103 52 57 69 27 97 c 1 - 44 130 l 1 - 77 102 113 88 149 88 c 0 - 201 88 228 111 228 156 c 0 - 228 201 200 223 144 223 c 2 - 102 223 l 1 - 102 259 l 1 - 136 259 l 2 - 190 259 220 283 220 328 c 0 - 220 367 195 389 152 389 c 0 - 117 389 83 375 49 347 c 1 - 33 380 l 1 - 62 408 107 425 154 425 c 0 - 219 425 262 389 262 332 c 0 - 262 290 240 257 204 243 c 1 - 247 231 270 200 270 155 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: four -Encoding: 52 52 8 -Width: 315 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -235 421 m 1 - 235 170 l 1 - 290 170 l 1 - 290 135 l 1 - 235 135 l 1 - 235 56 l 1 - 193 56 l 1 - 193 135 l 1 - 25 135 l 1 - 25 167 l 1 - 201 421 l 1 - 235 421 l 1 -193 170 m 1 - 193 349 l 1 - 69 170 l 1 - 193 170 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: five -Encoding: 53 53 9 -Width: 322 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -283 169 m 0 - 283 100 234 52 159 52 c 0 - 115 52 69 69 39 97 c 1 - 55 130 l 1 - 89 102 124 88 159 88 c 0 - 210 88 241 119 241 169 c 0 - 241 217 210 250 162 250 c 0 - 127 250 100 235 79 207 c 1 - 50 207 l 1 - 50 421 l 1 - 268 421 l 1 - 268 386 l 1 - 92 386 l 1 - 92 256 l 1 - 112 275 138 285 169 285 c 0 - 238 285 283 238 283 169 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: six -Encoding: 54 54 10 -Width: 311 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -283 169 m 0 - 283 102 233 52 165 52 c 0 - 77 52 28 116 28 229 c 0 - 28 352 80 425 168 425 c 0 - 210 425 252 408 282 380 c 1 - 266 347 l 1 - 232 376 202 389 169 389 c 0 - 106 389 70 330 70 230 c 2 - 70 222 l 1 - 86 261 123 285 169 285 c 0 - 236 285 283 237 283 169 c 0 -241 169 m 0 - 241 217 209 250 163 250 c 0 - 115 250 82 216 82 169 c 0 - 82 120 115 87 163 87 c 0 - 210 87 241 119 241 169 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: seven -Encoding: 55 55 11 -Width: 307 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -228 385 m 1 - 33 385 l 1 - 33 421 l 1 - 274 421 l 1 - 274 389 l 1 - 103 56 l 1 - 58 56 l 1 - 228 385 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: eight -Encoding: 56 56 12 -Width: 307 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -284 153 m 0 - 284 91 233 52 154 52 c 0 - 74 52 23 91 23 153 c 0 - 23 197 52 231 99 243 c 1 - 55 256 31 287 31 328 c 0 - 31 386 81 425 154 425 c 0 - 226 425 276 386 276 328 c 0 - 276 287 251 256 209 243 c 1 - 257 231 284 197 284 153 c 0 -154 255 m 1 - 203 261 234 286 234 325 c 0 - 234 365 204 390 154 390 c 0 - 103 390 73 365 73 325 c 0 - 73 286 104 261 154 255 c 1 -243 155 m 0 - 243 196 207 220 154 226 c 1 - 100 220 65 196 65 155 c 0 - 65 111 96 87 154 87 c 0 - 211 87 243 111 243 155 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: nine -Encoding: 57 57 13 -Width: 305 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -280 247 m 0 - 280 124 228 52 139 52 c 0 - 98 52 56 68 25 97 c 1 - 41 129 l 1 - 76 100 106 87 139 87 c 0 - 202 87 238 146 238 247 c 2 - 238 254 l 1 - 222 215 184 192 138 192 c 0 - 72 192 25 239 25 307 c 0 - 25 375 75 425 142 425 c 0 - 230 425 280 361 280 247 c 0 -226 308 m 0 - 226 357 193 389 144 389 c 0 - 98 389 67 357 67 308 c 0 - 67 259 98 227 145 227 c 0 - 193 227 226 260 226 308 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: A -Encoding: 65 65 14 -Width: 376 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -206 421 m 1 - 367 56 l 1 - 324 56 l 1 - 284 150 l 1 - 93 150 l 1 - 53 56 l 1 - 9 56 l 1 - 169 421 l 1 - 206 421 l 1 -269 185 m 1 - 188 372 l 1 - 108 185 l 1 - 269 185 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: B -Encoding: 66 66 15 -Width: 363 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -318 155 m 0 - 318 92 274 56 197 56 c 2 - 45 56 l 1 - 45 421 l 1 - 191 421 l 2 - 266 421 309 386 309 325 c 0 - 309 286 288 257 252 243 c 1 - 293 232 318 200 318 155 c 0 -185 386 m 2 - 87 386 l 1 - 87 259 l 1 - 185 259 l 2 - 240 259 268 281 268 323 c 0 - 268 365 240 386 185 386 c 2 -276 156 m 0 - 276 201 249 223 193 223 c 2 - 87 223 l 1 - 87 91 l 1 - 193 91 l 2 - 250 91 276 112 276 156 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: C -Encoding: 67 67 16 -Width: 357 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 239 m 0 - 32 353 97 425 201 425 c 0 - 251 425 294 409 325 379 c 1 - 309 346 l 1 - 274 377 242 388 201 388 c 0 - 121 388 75 335 75 239 c 0 - 75 143 121 88 201 88 c 0 - 242 88 274 100 309 130 c 1 - 325 98 l 1 - 294 67 251 52 201 52 c 0 - 97 52 32 124 32 239 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: D -Encoding: 68 68 17 -Width: 396 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -167 56 m 2 - 45 56 l 1 - 45 421 l 1 - 167 421 l 2 - 284 421 351 355 351 239 c 0 - 351 122 284 56 167 56 c 2 -87 385 m 1 - 87 92 l 1 - 165 92 l 2 - 259 92 307 141 307 239 c 0 - 307 336 260 385 165 385 c 2 - 87 385 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: E -Encoding: 69 69 18 -Width: 320 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -275 91 m 1 - 275 56 l 1 - 45 56 l 1 - 45 421 l 1 - 275 421 l 1 - 275 386 l 1 - 87 386 l 1 - 87 259 l 1 - 265 259 l 1 - 265 223 l 1 - 87 223 l 1 - 87 91 l 1 - 275 91 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: F -Encoding: 70 70 19 -Width: 315 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -87 223 m 1 - 87 56 l 1 - 45 56 l 1 - 45 421 l 1 - 270 421 l 1 - 270 385 l 1 - 87 385 l 1 - 87 259 l 1 - 260 259 l 1 - 260 223 l 1 - 87 223 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: G -Encoding: 71 71 20 -Width: 365 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -204 213 m 1 - 204 246 l 1 - 333 246 l 1 - 333 77 l 1 - 305 62 254 52 206 52 c 0 - 97 52 32 122 32 239 c 0 - 32 354 97 425 203 425 c 0 - 254 425 298 409 329 379 c 1 - 312 346 l 1 - 277 377 246 389 203 389 c 0 - 121 389 75 336 75 239 c 0 - 75 140 121 87 207 87 c 0 - 238 87 267 92 295 102 c 1 - 295 213 l 1 - 204 213 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: H -Encoding: 72 72 21 -Width: 392 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -87 259 m 1 - 305 259 l 1 - 305 421 l 1 - 347 421 l 1 - 347 56 l 1 - 305 56 l 1 - 305 223 l 1 - 87 223 l 1 - 87 56 l 1 - 45 56 l 1 - 45 421 l 1 - 87 421 l 1 - 87 259 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: I -Encoding: 73 73 22 -Width: 132 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -87 421 m 1 - 87 56 l 1 - 45 56 l 1 - 45 421 l 1 - 87 421 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: J -Encoding: 74 74 23 -Width: 126 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet --3 -35 m 1 - -3 1 l 1 - 13 -1 25 -3 34 -3 c 0 - 69 -3 81 15 81 62 c 2 - 81 421 l 1 - 123 421 l 1 - 123 61 l 2 - 123 -10 100 -39 41 -39 c 0 - 29 -39 15 -38 -3 -35 c 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: K -Encoding: 75 75 24 -Width: 375 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -320 421 m 1 - 130 243 l 1 - 330 56 l 1 - 275 56 l 1 - 87 230 l 1 - 87 56 l 1 - 45 56 l 1 - 45 421 l 1 - 87 421 l 1 - 87 253 l 1 - 266 421 l 1 - 320 421 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: L -Encoding: 76 76 25 -Width: 315 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -270 92 m 1 - 270 56 l 1 - 45 56 l 1 - 45 421 l 1 - 87 421 l 1 - 87 92 l 1 - 270 92 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: M -Encoding: 77 77 26 -Width: 435 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -80 421 m 1 - 218 106 l 1 - 355 421 l 1 - 390 421 l 1 - 390 56 l 1 - 351 56 l 1 - 351 327 l 1 - 232 56 l 1 - 203 56 l 1 - 83 325 l 1 - 84 56 l 1 - 45 56 l 1 - 45 421 l 1 - 80 421 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: N -Encoding: 78 78 27 -Width: 382 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -77 421 m 1 - 297 127 l 1 - 297 421 l 1 - 337 421 l 1 - 337 56 l 1 - 305 56 l 1 - 84 349 l 1 - 84 56 l 1 - 45 56 l 1 - 45 421 l 1 - 77 421 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: O -Encoding: 79 79 28 -Width: 396 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 238 m 0 - 32 353 95 425 198 425 c 0 - 301 425 364 353 364 239 c 0 - 364 124 299 52 198 52 c 0 - 96 52 32 124 32 238 c 0 -320 239 m 0 - 320 335 275 389 198 389 c 0 - 120 389 75 335 75 239 c 0 - 75 143 120 88 198 88 c 0 - 275 88 320 143 320 239 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: P -Encoding: 80 80 29 -Width: 355 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -87 56 m 1 - 45 56 l 1 - 45 421 l 1 - 190 421 l 2 - 266 421 310 382 310 319 c 0 - 310 255 265 216 190 216 c 2 - 87 216 l 1 - 87 56 l 1 -87 386 m 1 - 87 251 l 1 - 187 251 l 2 - 241 251 268 275 268 319 c 0 - 268 362 241 386 187 386 c 2 - 87 386 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: Q -Encoding: 81 81 30 -Width: 396 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -325 -15 m 1 - 296 -42 l 1 - 267 -20 237 16 216 53 c 1 - 208 52 202 52 198 52 c 0 - 96 52 32 124 32 238 c 0 - 32 353 95 425 198 425 c 0 - 301 425 364 353 364 239 c 0 - 364 149 325 86 259 62 c 1 - 274 35 296 9 325 -15 c 1 -198 88 m 0 - 275 88 320 143 320 239 c 0 - 320 335 275 389 198 389 c 0 - 120 389 75 335 75 239 c 0 - 75 143 120 88 198 88 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: R -Encoding: 82 82 31 -Width: 376 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -285 179 m 2 - 331 56 l 1 - 287 56 l 1 - 242 177 l 2 - 231 207 213 215 178 215 c 2 - 87 215 l 1 - 87 56 l 1 - 45 56 l 1 - 45 421 l 1 - 190 421 l 2 - 268 421 312 385 312 319 c 0 - 312 272 286 238 239 224 c 1 - 260 221 275 207 285 179 c 2 -87 386 m 1 - 87 250 l 1 - 186 250 l 2 - 242 250 270 273 270 319 c 0 - 270 364 244 386 186 386 c 2 - 87 386 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: S -Encoding: 83 83 32 -Width: 320 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -25 98 m 1 - 40 130 l 1 - 77 100 112 88 161 88 c 0 - 220 88 254 112 253 153 c 0 - 252 192 221 201 161 215 c 0 - 133 222 110 228 92 235 c 0 - 56 250 31 276 31 319 c 0 - 31 382 84 425 164 425 c 0 - 215 425 260 409 290 379 c 1 - 273 346 l 1 - 239 375 205 389 164 389 c 0 - 107 389 73 363 73 321 c 0 - 73 284 101 269 159 255 c 0 - 190 248 214 240 232 234 c 0 - 269 222 295 197 295 155 c 0 - 295 93 243 52 161 52 c 0 - 104 52 58 67 25 98 c 1 -EndSplineSet -Validated: 33 -EndChar - -StartChar: T -Encoding: 84 84 33 -Width: 309 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -176 385 m 1 - 176 56 l 1 - 133 56 l 1 - 133 385 l 1 - 6 385 l 1 - 6 421 l 1 - 303 421 l 1 - 303 385 l 1 - 176 385 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: U -Encoding: 85 85 34 -Width: 374 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -42 199 m 2 - 42 421 l 1 - 84 421 l 1 - 84 195 l 2 - 84 124 119 88 187 88 c 0 - 255 88 290 124 290 195 c 2 - 290 421 l 1 - 332 421 l 1 - 332 199 l 2 - 332 103 282 52 187 52 c 0 - 92 52 42 102 42 199 c 2 -EndSplineSet -Validated: 1 -EndChar - -StartChar: V -Encoding: 86 86 35 -Width: 357 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -46 421 m 1 - 179 109 l 1 - 313 421 l 1 - 356 421 l 1 - 197 56 l 1 - 160 56 l 1 - 1 421 l 1 - 46 421 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: W -Encoding: 87 87 36 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -302 420 m 1 - 406 115 l 1 - 510 421 l 1 - 552 421 l 1 - 424 56 l 1 - 389 56 l 1 - 285 354 l 1 - 180 56 l 1 - 145 56 l 1 - 17 421 l 1 - 60 421 l 1 - 163 116 l 1 - 269 421 l 1 - 302 420 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: X -Encoding: 88 88 37 -Width: 334 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -274 421 m 1 - 324 421 l 1 - 191 242 l 1 - 330 56 l 1 - 280 56 l 1 - 167 211 l 1 - 54 56 l 1 - 4 56 l 1 - 143 243 l 1 - 11 421 l 1 - 61 421 l 1 - 167 274 l 1 - 274 421 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: Y -Encoding: 89 89 38 -Width: 328 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -156 241 m 1 - 271 421 l 1 - 319 421 l 1 - 176 203 l 1 - 176 56 l 1 - 134 56 l 1 - 134 204 l 1 - -9 421 l 1 - 40 421 l 1 - 156 241 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: Z -Encoding: 90 90 39 -Width: 309 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -281 421 m 1 - 281 390 l 1 - 72 91 l 1 - 286 91 l 1 - 286 56 l 1 - 23 56 l 1 - 23 87 l 1 - 232 385 l 1 - 23 385 l 1 - 23 421 l 1 - 281 421 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: a -Encoding: 97 97 40 -Width: 292 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -226 269 m 1 - 226 314 l 1 - 267 314 l 1 - 267 56 l 1 - 226 56 l 1 - 226 103 l 1 - 211 70 179 52 139 52 c 0 - 70 52 25 105 25 185 c 0 - 25 265 71 320 139 320 c 0 - 179 320 210 301 226 269 c 1 -226 186 m 0 - 226 250 198 285 147 285 c 0 - 96 285 67 248 67 185 c 0 - 67 122 96 87 147 87 c 0 - 198 87 226 123 226 186 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: b -Encoding: 98 98 41 -Width: 323 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -283 187 m 0 - 283 107 237 52 168 52 c 0 - 128 52 97 71 81 104 c 1 - 81 56 l 1 - 40 56 l 1 - 40 433 l 1 - 81 433 l 1 - 81 268 l 1 - 96 301 128 320 168 320 c 0 - 237 320 283 267 283 187 c 0 -240 187 m 0 - 240 249 211 285 161 285 c 0 - 110 285 81 250 81 186 c 0 - 81 123 110 87 161 87 c 0 - 210 87 240 124 240 187 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: c -Encoding: 99 99 42 -Width: 266 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -25 185 m 0 - 25 265 74 320 150 320 c 0 - 185 320 220 307 241 286 c 1 - 227 255 l 1 - 201 276 177 285 152 285 c 0 - 99 285 68 248 68 185 c 0 - 68 123 99 87 152 87 c 0 - 177 87 201 96 227 116 c 1 - 241 86 l 1 - 219 65 183 52 148 52 c 0 - 73 52 25 105 25 185 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: d -Encoding: 100 100 43 -Width: 292 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -225 270 m 1 - 225 433 l 1 - 267 433 l 1 - 267 56 l 1 - 226 56 l 1 - 226 103 l 1 - 211 70 179 52 139 52 c 0 - 71 52 25 107 25 187 c 0 - 25 267 70 320 139 320 c 0 - 179 320 210 301 225 270 c 1 -226 186 m 0 - 226 249 198 285 147 285 c 0 - 96 285 67 249 67 187 c 0 - 67 124 96 87 147 87 c 0 - 198 87 226 123 226 186 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: e -Encoding: 101 101 44 -Width: 280 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -255 194 m 2 - 255 186 l 1 - 67 186 l 1 - 67 121 97 87 154 87 c 0 - 184 87 212 97 237 117 c 1 - 251 87 l 1 - 228 66 190 52 154 52 c 0 - 73 52 25 103 25 186 c 0 - 25 265 75 320 146 320 c 0 - 214 320 255 272 255 194 c 2 -68 213 m 1 - 218 213 l 1 - 214 262 189 287 146 287 c 0 - 103 287 76 260 68 213 c 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: f -Encoding: 102 102 45 -Width: 169 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -95 348 m 2 - 95 314 l 1 - 158 314 l 1 - 158 281 l 1 - 95 281 l 1 - 95 56 l 1 - 54 56 l 1 - 54 281 l 1 - 4 281 l 1 - 4 314 l 1 - 54 314 l 1 - 54 353 l 2 - 54 407 82 435 131 435 c 0 - 142 435 154 433 165 430 c 1 - 165 395 l 1 - 156 398 147 399 139 399 c 0 - 112 399 95 385 95 348 c 2 -EndSplineSet -Validated: 1 -EndChar - -StartChar: g -Encoding: 103 103 46 -Width: 294 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -228 269 m 1 - 228 314 l 1 - 269 314 l 1 - 269 58 l 2 - 269 -18 229 -58 153 -58 c 0 - 114 -58 80 -49 52 -32 c 1 - 59 2 l 1 - 92 -16 118 -24 153 -24 c 0 - 203 -24 228 3 228 54 c 2 - 228 115 l 1 - 212 83 181 64 140 64 c 0 - 71 64 25 115 25 192 c 0 - 25 268 71 320 140 320 c 0 - 181 320 212 301 228 269 c 1 -228 192 m 0 - 228 250 198 285 148 285 c 0 - 97 285 67 250 67 192 c 0 - 67 134 97 98 148 98 c 0 - 198 98 228 134 228 192 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: h -Encoding: 104 104 47 -Width: 301 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -261 218 m 2 - 261 56 l 1 - 220 56 l 1 - 220 216 l 2 - 220 263 201 285 160 285 c 0 - 113 285 81 253 81 203 c 2 - 81 56 l 1 - 40 56 l 1 - 40 433 l 1 - 81 433 l 1 - 81 272 l 1 - 98 303 130 320 168 320 c 0 - 230 320 261 286 261 218 c 2 -EndSplineSet -Validated: 1 -EndChar - -StartChar: i -Encoding: 105 105 48 -Width: 122 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -86 376 m 1 - 36 376 l 1 - 36 423 l 1 - 86 423 l 1 - 86 376 l 1 -81 314 m 1 - 81 56 l 1 - 40 56 l 1 - 40 314 l 1 - 81 314 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: j -Encoding: 106 106 49 -Width: 114 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -86 376 m 1 - 36 376 l 1 - 36 423 l 1 - 86 423 l 1 - 86 376 l 1 --3 -21 m 0 - 26 -21 40 -4 40 30 c 2 - 40 314 l 1 - 81 314 l 1 - 81 25 l 2 - 81 -28 53 -57 6 -57 c 0 - -6 -57 -17 -55 -28 -52 c 1 - -28 -17 l 1 - -19 -19 -11 -21 -3 -21 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: k -Encoding: 107 107 50 -Width: 308 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -255 313 m 1 - 126 190 l 1 - 268 56 l 1 - 214 56 l 1 - 81 180 l 1 - 81 56 l 1 - 40 56 l 1 - 40 433 l 1 - 81 433 l 1 - 81 195 l 1 - 203 313 l 1 - 255 313 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: l -Encoding: 108 108 51 -Width: 121 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -81 433 m 1 - 81 56 l 1 - 40 56 l 1 - 40 433 l 1 - 81 433 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: m -Encoding: 109 109 52 -Width: 447 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -411 218 m 2 - 411 56 l 1 - 370 56 l 1 - 370 216 l 2 - 370 264 354 285 316 285 c 0 - 273 285 247 254 247 203 c 2 - 247 56 l 1 - 205 56 l 1 - 205 216 l 2 - 205 263 189 285 152 285 c 0 - 108 285 81 254 81 203 c 2 - 81 56 l 1 - 40 56 l 1 - 40 241 l 2 - 40 268 38 292 36 314 c 1 - 75 314 l 1 - 79 268 l 1 - 94 301 123 320 161 320 c 0 - 202 320 227 304 240 270 c 1 - 255 300 287 320 326 320 c 0 - 382 320 411 286 411 218 c 2 -EndSplineSet -Validated: 1 -EndChar - -StartChar: n -Encoding: 110 110 53 -Width: 297 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -261 218 m 2 - 261 56 l 1 - 220 56 l 1 - 220 216 l 2 - 220 263 201 285 160 285 c 0 - 113 285 81 253 81 203 c 2 - 81 56 l 1 - 40 56 l 1 - 40 241 l 2 - 40 268 38 292 36 314 c 1 - 75 314 l 1 - 79 267 l 1 - 95 301 128 320 168 320 c 0 - 230 320 261 286 261 218 c 2 -EndSplineSet -Validated: 1 -EndChar - -StartChar: o -Encoding: 111 111 54 -Width: 293 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -25 186 m 0 - 25 267 73 320 146 320 c 0 - 220 320 268 267 268 186 c 0 - 268 105 220 52 146 52 c 0 - 73 52 25 105 25 186 c 0 -226 186 m 0 - 226 249 196 285 146 285 c 0 - 96 285 67 249 67 186 c 0 - 67 121 95 87 146 87 c 0 - 198 87 226 121 226 186 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: p -Encoding: 112 112 55 -Width: 319 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -283 185 m 0 - 283 105 237 52 168 52 c 0 - 128 52 97 71 81 104 c 1 - 81 -55 l 1 - 40 -55 l 1 - 40 241 l 2 - 40 268 38 292 36 314 c 1 - 75 314 l 1 - 79 264 l 1 - 94 299 126 320 168 320 c 0 - 237 320 283 265 283 185 c 0 -240 185 m 0 - 240 248 210 285 161 285 c 0 - 110 285 81 250 81 186 c 0 - 81 123 110 87 161 87 c 0 - 211 87 240 122 240 185 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: q -Encoding: 113 113 56 -Width: 296 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -227 265 m 1 - 232 314 l 1 - 271 314 l 1 - 268 292 267 268 267 241 c 2 - 267 -55 l 1 - 225 -55 l 1 - 225 102 l 1 - 210 70 179 52 139 52 c 0 - 70 52 25 105 25 185 c 0 - 25 265 71 320 139 320 c 0 - 180 320 212 300 227 265 c 1 -226 186 m 0 - 226 250 198 285 147 285 c 0 - 96 285 67 248 67 185 c 0 - 67 122 96 87 147 87 c 0 - 198 87 226 123 226 186 c 0 -EndSplineSet -Validated: 1 -EndChar - -StartChar: r -Encoding: 114 114 57 -Width: 219 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -183 317 m 1 - 182 279 l 1 - 175 281 165 283 155 283 c 0 - 130 283 112 275 99 259 c 0 - 88 244 81 225 81 203 c 2 - 81 56 l 1 - 40 56 l 1 - 40 241 l 2 - 40 268 38 292 36 314 c 1 - 75 314 l 1 - 79 266 l 1 - 92 301 123 320 160 320 c 0 - 168 320 176 319 183 317 c 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: s -Encoding: 115 115 58 -Width: 252 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -24 86 m 1 - 38 116 l 1 - 66 94 93 86 129 86 c 0 - 167 86 188 100 188 125 c 0 - 188 145 175 156 144 164 c 2 - 100 174 l 2 - 57 184 33 209 33 243 c 0 - 33 288 72 320 132 320 c 0 - 168 320 201 308 223 286 c 1 - 209 256 l 1 - 185 276 159 286 132 286 c 0 - 95 286 74 271 74 246 c 0 - 74 225 86 213 114 207 c 2 - 157 196 l 2 - 205 184 228 162 228 126 c 0 - 228 81 189 52 127 52 c 0 - 83 52 49 64 24 86 c 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: t -Encoding: 116 116 59 -Width: 173 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -169 314 m 1 - 169 281 l 1 - 95 281 l 1 - 95 140 l 2 - 95 102 112 88 140 88 c 0 - 150 88 159 90 168 93 c 1 - 168 58 l 1 - 157 54 145 52 132 52 c 0 - 83 52 54 81 54 134 c 2 - 54 281 l 1 - 4 281 l 1 - 4 314 l 1 - 54 314 l 1 - 54 380 l 1 - 95 394 l 1 - 95 314 l 1 - 169 314 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: u -Encoding: 117 117 60 -Width: 293 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -214 168 m 2 - 214 314 l 1 - 255 314 l 1 - 255 56 l 1 - 215 56 l 1 - 215 101 l 1 - 199 69 168 52 131 52 c 0 - 70 52 38 87 38 154 c 2 - 38 314 l 1 - 80 314 l 1 - 80 155 l 2 - 80 108 99 87 138 87 c 0 - 183 87 214 119 214 168 c 2 -EndSplineSet -Validated: 1 -EndChar - -StartChar: v -Encoding: 118 118 61 -Width: 272 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -50 313 m 1 - 137 101 l 1 - 225 313 l 1 - 266 313 l 1 - 155 56 l 1 - 116 56 l 1 - 6 313 l 1 - 50 313 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: w -Encoding: 119 119 62 -Width: 445 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -242 314 m 1 - 316 105 l 1 - 390 314 l 1 - 431 314 l 1 - 336 56 l 1 - 296 56 l 1 - 222 257 l 1 - 149 56 l 1 - 109 56 l 1 - 14 314 l 1 - 57 314 l 1 - 130 106 l 1 - 205 314 l 1 - 242 314 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: x -Encoding: 120 120 63 -Width: 274 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -211 314 m 1 - 262 314 l 1 - 162 189 l 1 - 268 56 l 1 - 218 56 l 1 - 137 157 l 1 - 56 56 l 1 - 6 56 l 1 - 113 189 l 1 - 12 314 l 1 - 62 314 l 1 - 137 219 l 1 - 211 314 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: y -Encoding: 121 121 64 -Width: 272 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -137 101 m 1 - 225 314 l 1 - 266 314 l 1 - 146 32 l 2 - 121 -26 83 -50 28 -60 c 1 - 19 -28 l 1 - 43 -22 61 -15 74 -6 c 0 - 86 3 97 17 105 36 c 2 - 115 59 l 1 - 6 314 l 1 - 50 314 l 1 - 137 101 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: z -Encoding: 122 122 65 -Width: 269 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -238 314 m 1 - 238 283 l 1 - 77 89 l 1 - 243 89 l 1 - 243 56 l 1 - 26 56 l 1 - 26 85 l 1 - 188 281 l 1 - 31 281 l 1 - 31 314 l 1 - 238 314 l 1 -EndSplineSet -Validated: 1 -EndChar - -StartChar: glass-martini -Encoding: 61440 61440 66 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -502.049804688 390.400390625 m 2 - 288 176.360351562 l 1 - 288 -16 l 1 - 344 -16 l 2 - 366.08984375 -16 384 -33.91015625 384 -56 c 0 - 384 -60.419921875 380.419921875 -64 376 -64 c 2 - 136 -64 l 2 - 131.580078125 -64 128 -60.419921875 128 -56 c 0 - 128 -33.91015625 145.91015625 -16 168 -16 c 2 - 224 -16 l 1 - 224 176.360351562 l 1 - 9.9501953125 390.400390625 l 2 - -11.2998046875 411.66015625 3.75 448 33.7998046875 448 c 2 - 478.200195312 448 l 2 - 508.25 448 523.299804688 411.66015625 502.049804688 390.400390625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" g l a s s hyphen m a r t i n i -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" G l a s s hyphen M a r t i n i -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" G l a s s hyphen m a r t i n i -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" G L A S S hyphen M A R T I N I -EndChar - -StartChar: music -Encoding: 61441 61441 67 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -470.379882812 446.490234375 m 2 - 472.97265625 447.306640625 477.282226562 447.970703125 480 447.970703125 c 0 - 497.647460938 447.970703125 511.983398438 433.647460938 512 416 c 2 - 512 64 l 2 - 512 28.650390625 469 0 416 0 c 0 - 363 0 320 28.66015625 320 64 c 0 - 320 99.33984375 363 128 416 128 c 0 - 424.958984375 127.951171875 439.294921875 126.190429688 448 124.0703125 c 1 - 448 308.6796875 l 1 - 192 233.6796875 l 1 - 192 0 l 2 - 192 -35.33984375 149 -64 96 -64 c 0 - 43 -64 0 -35.33984375 0 0 c 0 - 0 35.33984375 43 64 96 64 c 0 - 104.958007812 63.94921875 119.293945312 62.193359375 128 60.080078125 c 1 - 128 321.490234375 l 2 - 128.0078125 334.448242188 138.047851562 348.116210938 150.41015625 352 c 2 - 470.379882812 446.490234375 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" m u s i c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" M u s i c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" M U S I C -EndChar - -StartChar: search -Encoding: 61442 61442 68 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -505 5.2998046875 m 2 - 514.299804688 -4.099609375 514.299804688 -19.2998046875 504.900390625 -28.7001953125 c 2 - 476.599609375 -57 l 2 - 467.299804688 -66.400390625 452.099609375 -66.400390625 442.700195312 -57 c 2 - 343 42.7001953125 l 2 - 338.5 47.2001953125 336 53.2998046875 336 59.7001953125 c 2 - 336 76 l 1 - 300.700195312 48.400390625 256.299804688 32 208 32 c 0 - 93.099609375 32 0 125.099609375 0 240 c 0 - 0 354.900390625 93.099609375 448 208 448 c 0 - 322.900390625 448 416 354.900390625 416 240 c 0 - 416 191.700195312 399.599609375 147.299804688 372 112 c 1 - 388.299804688 112 l 2 - 394.700195312 112 400.799804688 109.5 405.299804688 105 c 2 - 505 5.2998046875 l 2 -208 112 m 0 - 278.799804688 112 336 169.299804688 336 240 c 0 - 336 310.799804688 278.700195312 368 208 368 c 0 - 137.200195312 368 80 310.700195312 80 240 c 0 - 80 169.200195312 137.299804688 112 208 112 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" s e a r c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S e a r c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S E A R C H -EndChar - -StartChar: heart -Encoding: 61444 61444 69 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -462.299804688 385.400390625 m 0 - 525.099609375 331.799804688 528.400390625 235.599609375 472.099609375 177.5 c 2 - 278.599609375 -22.2998046875 l 2 - 266.099609375 -35.2001953125 245.799804688 -35.2001953125 233.299804688 -22.2998046875 c 2 - 39.7998046875 177.5 l 2 - -16.400390625 235.599609375 -13.099609375 331.799804688 49.7001953125 385.400390625 c 0 - 104.5 432.099609375 186.099609375 423.700195312 236.299804688 371.799804688 c 2 - 256 351.5 l 1 - 275.700195312 371.799804688 l 2 - 326 423.700195312 407.5 432.099609375 462.299804688 385.400390625 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" h e a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" H E A R T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" H e a r t -EndChar - -StartChar: star -Encoding: 61445 61445 70 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -259.299804688 430.200195312 m 2 - 271.099609375 454.099609375 305 453.799804688 316.700195312 430.200195312 c 2 - 382 297.799804688 l 1 - 528.099609375 276.5 l 2 - 554.299804688 272.700195312 564.799804688 240.400390625 545.799804688 221.900390625 c 2 - 440.099609375 118.900390625 l 1 - 465.099609375 -26.599609375 l 2 - 469.599609375 -52.900390625 441.900390625 -72.5 418.700195312 -60.2998046875 c 2 - 288 8.400390625 l 1 - 157.299804688 -60.2998046875 l 2 - 134.099609375 -72.599609375 106.400390625 -52.900390625 110.900390625 -26.599609375 c 2 - 135.900390625 118.900390625 l 1 - 30.2001953125 221.900390625 l 2 - 11.2001953125 240.400390625 21.7001953125 272.700195312 47.900390625 276.5 c 2 - 194 297.799804688 l 1 - 259.299804688 430.200195312 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" s t a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" S t a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" S T A R -EndChar - -StartChar: user -Encoding: 61447 61447 71 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -313.599609375 160 m 2 - 387.799804688 160 448 99.7998046875 448 25.599609375 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 99.7998046875 60.2001953125 160 134.400390625 160 c 2 - 151.099609375 160 l 1 - 173.400390625 149.799804688 198 144 224 144 c 0 - 250 144 274.700195312 149.799804688 296.900390625 160 c 1 - 313.599609375 160 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" u s e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" U S E R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" U s e r -EndChar - -StartChar: film -Encoding: 61448 61448 72 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -488 384 m 2 - 501.299804688 384 512 373.299804688 512 360 c 2 - 512 24 l 2 - 512 10.7001953125 501.299804688 0 488 0 c 2 - 480 0 l 1 - 480 20 l 2 - 480 26.599609375 474.599609375 32 468 32 c 2 - 428 32 l 2 - 421.400390625 32 416 26.599609375 416 20 c 2 - 416 0 l 1 - 96 0 l 1 - 96 20 l 2 - 96 26.599609375 90.599609375 32 84 32 c 2 - 44 32 l 2 - 37.400390625 32 32 26.599609375 32 20 c 2 - 32 0 l 1 - 24 0 l 2 - 10.7001953125 0 0 10.7001953125 0 24 c 2 - 0 360 l 2 - 0 373.299804688 10.7001953125 384 24 384 c 2 - 32 384 l 1 - 32 364 l 2 - 32 357.400390625 37.400390625 352 44 352 c 2 - 84 352 l 2 - 90.599609375 352 96 357.400390625 96 364 c 2 - 96 384 l 1 - 416 384 l 1 - 416 364 l 2 - 416 357.400390625 421.400390625 352 428 352 c 2 - 468 352 l 2 - 474.599609375 352 480 357.400390625 480 364 c 2 - 480 384 l 1 - 488 384 l 2 -96 76 m 2 - 96 116 l 2 - 96 122.599609375 90.599609375 128 84 128 c 2 - 44 128 l 2 - 37.400390625 128 32 122.599609375 32 116 c 2 - 32 76 l 2 - 32 69.400390625 37.400390625 64 44 64 c 2 - 84 64 l 2 - 90.599609375 64 96 69.400390625 96 76 c 2 -96 172 m 2 - 96 212 l 2 - 96 218.599609375 90.599609375 224 84 224 c 2 - 44 224 l 2 - 37.400390625 224 32 218.599609375 32 212 c 2 - 32 172 l 2 - 32 165.400390625 37.400390625 160 44 160 c 2 - 84 160 l 2 - 90.599609375 160 96 165.400390625 96 172 c 2 -96 268 m 2 - 96 308 l 2 - 96 314.599609375 90.599609375 320 84 320 c 2 - 44 320 l 2 - 37.400390625 320 32 314.599609375 32 308 c 2 - 32 268 l 2 - 32 261.400390625 37.400390625 256 44 256 c 2 - 84 256 l 2 - 90.599609375 256 96 261.400390625 96 268 c 2 -368 60 m 2 - 368 156 l 2 - 368 162.599609375 362.599609375 168 356 168 c 2 - 156 168 l 2 - 149.400390625 168 144 162.599609375 144 156 c 2 - 144 60 l 2 - 144 53.400390625 149.400390625 48 156 48 c 2 - 356 48 l 2 - 362.599609375 48 368 53.400390625 368 60 c 2 -368 228 m 2 - 368 324 l 2 - 368 330.599609375 362.599609375 336 356 336 c 2 - 156 336 l 2 - 149.400390625 336 144 330.599609375 144 324 c 2 - 144 228 l 2 - 144 221.400390625 149.400390625 216 156 216 c 2 - 356 216 l 2 - 362.599609375 216 368 221.400390625 368 228 c 2 -480 76 m 2 - 480 116 l 2 - 480 122.599609375 474.599609375 128 468 128 c 2 - 428 128 l 2 - 421.400390625 128 416 122.599609375 416 116 c 2 - 416 76 l 2 - 416 69.400390625 421.400390625 64 428 64 c 2 - 468 64 l 2 - 474.599609375 64 480 69.400390625 480 76 c 2 -480 172 m 2 - 480 212 l 2 - 480 218.599609375 474.599609375 224 468 224 c 2 - 428 224 l 2 - 421.400390625 224 416 218.599609375 416 212 c 2 - 416 172 l 2 - 416 165.400390625 421.400390625 160 428 160 c 2 - 468 160 l 2 - 474.599609375 160 480 165.400390625 480 172 c 2 -480 268 m 2 - 480 308 l 2 - 480 314.599609375 474.599609375 320 468 320 c 2 - 428 320 l 2 - 421.400390625 320 416 314.599609375 416 308 c 2 - 416 268 l 2 - 416 261.400390625 421.400390625 256 428 256 c 2 - 468 256 l 2 - 474.599609375 256 480 261.400390625 480 268 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" f i l m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" F i l m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" F I L M -EndChar - -StartChar: th-large -Encoding: 61449 61449 73 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -296 416 m 2 - 488 416 l 2 - 501.254882812 416 512 405.254882812 512 392 c 2 - 512 232 l 2 - 512 218.745117188 501.254882812 208 488 208 c 2 - 296 208 l 2 - 282.745117188 208 272 218.745117188 272 232 c 2 - 272 392 l 2 - 272 405.254882812 282.745117188 416 296 416 c 2 -216 416 m 2 - 229.254882812 416 240 405.254882812 240 392 c 2 - 240 232 l 2 - 240 218.745117188 229.254882812 208 216 208 c 2 - 24 208 l 2 - 10.7451171875 208 0 218.745117188 0 232 c 2 - 0 392 l 2 - 0 405.254882812 10.7451171875 416 24 416 c 2 - 216 416 l 2 -0 152 m 2 - 0 165.254882812 10.7451171875 176 24 176 c 2 - 216 176 l 2 - 229.254882812 176 240 165.254882812 240 152 c 2 - 240 -8 l 2 - 240 -21.2548828125 229.254882812 -32 216 -32 c 2 - 24 -32 l 2 - 10.7451171875 -32 0 -21.2548828125 0 -8 c 2 - 0 152 l 2 -296 -32 m 2 - 282.745117188 -32 272 -21.2548828125 272 -8 c 2 - 272 152 l 2 - 272 165.254882812 282.745117188 176 296 176 c 2 - 488 176 l 2 - 501.254882812 176 512 165.254882812 512 152 c 2 - 512 -8 l 2 - 512 -21.2548828125 501.254882812 -32 488 -32 c 2 - 296 -32 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" t h hyphen l a r g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" T h hyphen L a r g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" T h hyphen l a r g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" T H hyphen L A R G E -EndChar - -StartChar: th -Encoding: 61450 61450 74 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -149.333007812 392 m 2 - 149.333007812 312 l 2 - 149.333007812 298.745117188 138.587890625 288 125.333007812 288 c 2 - 24 288 l 2 - 10.7451171875 288 0 298.745117188 0 312 c 2 - 0 392 l 2 - 0 405.254882812 10.7451171875 416 24 416 c 2 - 125.333007812 416 l 2 - 138.587890625 416 149.333007812 405.254882812 149.333007812 392 c 2 -330.666992188 152 m 2 - 330.666992188 138.745117188 319.921875 128 306.666015625 128 c 2 - 205.333007812 128 l 2 - 192.078125 128 181.333007812 138.745117188 181.333007812 152 c 2 - 181.333007812 232 l 2 - 181.333007812 245.254882812 192.078125 256 205.333007812 256 c 2 - 306.666992188 256 l 2 - 319.921875 256 330.666992188 245.254882812 330.666992188 232 c 2 - 330.666992188 152 l 2 -362.666992188 392 m 2 - 362.666992188 405.254882812 373.412109375 416 386.666992188 416 c 2 - 488 416 l 2 - 501.254882812 416 512 405.254882812 512 392 c 2 - 512 312 l 2 - 512 298.745117188 501.254882812 288 488 288 c 2 - 386.666992188 288 l 2 - 373.412109375 288 362.666992188 298.745117188 362.666992188 312 c 2 - 362.666992188 392 l 2 -330.666992188 312 m 2 - 330.666992188 298.745117188 319.921875 288 306.666015625 288 c 2 - 205.333007812 288 l 2 - 192.078125 288 181.333007812 298.745117188 181.333007812 312 c 2 - 181.333007812 392 l 2 - 181.333007812 405.254882812 192.078125 416 205.333007812 416 c 2 - 306.666992188 416 l 2 - 319.921875 416 330.666992188 405.254882812 330.666992188 392 c 2 - 330.666992188 312 l 2 -125.333007812 256 m 2 - 138.587890625 256 149.333007812 245.254882812 149.333007812 232 c 2 - 149.333007812 152 l 2 - 149.333007812 138.745117188 138.587890625 128 125.333007812 128 c 2 - 24 128 l 2 - 10.7451171875 128 0 138.745117188 0 152 c 2 - 0 232 l 2 - 0 245.254882812 10.7451171875 256 24 256 c 2 - 125.333007812 256 l 2 -0 72 m 2 - 0 85.2548828125 10.7451171875 96 24 96 c 2 - 125.333007812 96 l 2 - 138.587890625 96 149.333007812 85.2548828125 149.333007812 72 c 2 - 149.333007812 -8 l 2 - 149.333007812 -21.2548828125 138.587890625 -32 125.333007812 -32 c 2 - 24 -32 l 2 - 10.7451171875 -32 0 -21.2548828125 0 -8 c 2 - 0 72 l 2 -386.666992188 128 m 2 - 373.412109375 128 362.666992188 138.745117188 362.666992188 152 c 2 - 362.666992188 232 l 2 - 362.666992188 245.254882812 373.412109375 256 386.666992188 256 c 2 - 488 256 l 2 - 501.254882812 256 512 245.254882812 512 232 c 2 - 512 152 l 2 - 512 138.745117188 501.254882812 128 488 128 c 2 - 386.666992188 128 l 2 -386.666992188 -32 m 2 - 373.412109375 -32 362.666992188 -21.2548828125 362.666992188 -8 c 2 - 362.666992188 72 l 2 - 362.666992188 85.2548828125 373.412109375 96 386.666992188 96 c 2 - 488 96 l 2 - 501.254882812 96 512 85.2548828125 512 72 c 2 - 512 -8 l 2 - 512 -21.2548828125 501.254882812 -32 488 -32 c 2 - 386.666992188 -32 l 2 -181.333007812 72 m 2 - 181.333007812 85.2548828125 192.078125 96 205.333007812 96 c 2 - 306.666015625 96 l 2 - 319.920898438 96 330.666015625 85.2548828125 330.666015625 72 c 2 - 330.666015625 -8 l 2 - 330.666015625 -21.2548828125 319.920898438 -32 306.666015625 -32 c 2 - 205.333007812 -32 l 2 - 192.078125 -32 181.333007812 -21.2548828125 181.333007812 -8 c 2 - 181.333007812 72 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" T h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" T H -EndChar - -StartChar: th-list -Encoding: 61451 61451 75 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -149.333007812 232 m 2 - 149.333007812 152 l 2 - 149.333007812 138.745117188 138.587890625 128 125.333007812 128 c 2 - 24 128 l 2 - 10.7451171875 128 0 138.745117188 0 152 c 2 - 0 232 l 2 - 0 245.254882812 10.7451171875 256 24 256 c 2 - 125.333007812 256 l 2 - 138.587890625 256 149.333007812 245.254882812 149.333007812 232 c 2 -0 72 m 2 - 0 85.2548828125 10.7451171875 96 24 96 c 2 - 125.333007812 96 l 2 - 138.587890625 96 149.333007812 85.2548828125 149.333007812 72 c 2 - 149.333007812 -8 l 2 - 149.333007812 -21.2548828125 138.587890625 -32 125.333007812 -32 c 2 - 24 -32 l 2 - 10.7451171875 -32 0 -21.2548828125 0 -8 c 2 - 0 72 l 2 -125.333007812 416 m 2 - 138.587890625 416 149.333007812 405.254882812 149.333007812 392 c 2 - 149.333007812 312 l 2 - 149.333007812 298.745117188 138.587890625 288 125.333007812 288 c 2 - 24 288 l 2 - 10.7451171875 288 0 298.745117188 0 312 c 2 - 0 392 l 2 - 0 405.254882812 10.7451171875 416 24 416 c 2 - 125.333007812 416 l 2 -205.333007812 -32 m 2 - 192.078125 -32 181.333007812 -21.2548828125 181.333007812 -8 c 2 - 181.333007812 72 l 2 - 181.333007812 85.2548828125 192.078125 96 205.333007812 96 c 2 - 488 96 l 2 - 501.254882812 96 512 85.2548828125 512 72 c 2 - 512 -8 l 2 - 512 -21.2548828125 501.254882812 -32 488 -32 c 2 - 205.333007812 -32 l 2 -181.333007812 392 m 2 - 181.333007812 405.254882812 192.078125 416 205.333007812 416 c 2 - 488 416 l 2 - 501.254882812 416 512 405.254882812 512 392 c 2 - 512 312 l 2 - 512 298.745117188 501.254882812 288 488 288 c 2 - 205.333007812 288 l 2 - 192.078125 288 181.333007812 298.745117188 181.333007812 312 c 2 - 181.333007812 392 l 2 -205.333007812 128 m 2 - 192.078125 128 181.333007812 138.745117188 181.333007812 152 c 2 - 181.333007812 232 l 2 - 181.333007812 245.254882812 192.078125 256 205.333007812 256 c 2 - 488 256 l 2 - 501.254882812 256 512 245.254882812 512 232 c 2 - 512 152 l 2 - 512 138.745117188 501.254882812 128 488 128 c 2 - 205.333007812 128 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" t h hyphen l i s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" T h hyphen L i s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" T h hyphen l i s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" T H hyphen L I S T -EndChar - -StartChar: check -Encoding: 61452 61452 76 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -173.8984375 8.595703125 m 2 - 7.498046875 174.99609375 l 2 - -2.4990234375 184.993164062 -2.4990234375 201.202148438 7.498046875 211.200195312 c 2 - 43.701171875 247.404296875 l 2 - 53.6982421875 257.40234375 69.908203125 257.40234375 79.9052734375 247.404296875 c 2 - 192 135.309570312 l 1 - 432.094726562 375.404296875 l 2 - 442.091796875 385.401367188 458.301757812 385.401367188 468.298828125 375.404296875 c 2 - 504.501953125 339.200195312 l 2 - 514.499023438 329.203125 514.499023438 312.994140625 504.501953125 302.99609375 c 2 - 210.1015625 8.5947265625 l 2 - 200.103515625 -1.40234375 183.89453125 -1.40234375 173.8984375 8.595703125 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" C h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" C H E C K -EndChar - -StartChar: times -Encoding: 61453 61453 77 -Width: 352 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -242.719726562 192 m 1 - 342.790039062 91.9296875 l 2 - 355.0703125 79.6396484375 355.0703125 59.73046875 342.790039062 47.4501953125 c 2 - 320.549804688 25.2099609375 l 2 - 308.26953125 12.9296875 288.349609375 12.9296875 276.0703125 25.2099609375 c 2 - 176 125.280273438 l 1 - 75.9296875 25.2099609375 l 2 - 63.650390625 12.9296875 43.73046875 12.9296875 31.4501953125 25.2099609375 c 2 - 9.2099609375 47.4501953125 l 2 - -3.0703125 59.740234375 -3.0703125 79.650390625 9.2099609375 91.9296875 c 2 - 109.280273438 192 l 1 - 9.2099609375 292.0703125 l 2 - -3.0703125 304.360351562 -3.0703125 324.26953125 9.2099609375 336.549804688 c 2 - 31.4501953125 358.790039062 l 2 - 43.740234375 371.0703125 63.650390625 371.0703125 75.9296875 358.790039062 c 2 - 176 258.719726562 l 1 - 276.0703125 358.790039062 l 2 - 288.360351562 371.0703125 308.26953125 371.0703125 320.549804688 358.790039062 c 2 - 342.790039062 336.549804688 l 2 - 355.0703125 324.259765625 355.0703125 304.349609375 342.790039062 292.0703125 c 2 - 242.719726562 192 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" t i m e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" T i m e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" T I M E S -EndChar - -StartChar: search-plus -Encoding: 61454 61454 78 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -304 256 m 2 - 304 224 l 2 - 304 217.400390625 298.599609375 212 292 212 c 2 - 236 212 l 1 - 236 156 l 2 - 236 149.400390625 230.599609375 144 224 144 c 2 - 192 144 l 2 - 185.400390625 144 180 149.400390625 180 156 c 2 - 180 212 l 1 - 124 212 l 2 - 117.400390625 212 112 217.400390625 112 224 c 2 - 112 256 l 2 - 112 262.599609375 117.400390625 268 124 268 c 2 - 180 268 l 1 - 180 324 l 2 - 180 330.599609375 185.400390625 336 192 336 c 2 - 224 336 l 2 - 230.599609375 336 236 330.599609375 236 324 c 2 - 236 268 l 1 - 292 268 l 2 - 298.599609375 268 304 262.599609375 304 256 c 2 -505 -28.7001953125 m 2 - 476.700195312 -57 l 2 - 467.299804688 -66.400390625 452.099609375 -66.400390625 442.799804688 -57 c 2 - 343 42.7001953125 l 2 - 338.5 47.2001953125 336 53.2998046875 336 59.7001953125 c 2 - 336 76 l 1 - 300.700195312 48.400390625 256.299804688 32 208 32 c 0 - 93.099609375 32 0 125.099609375 0 240 c 0 - 0 354.900390625 93.099609375 448 208 448 c 0 - 322.900390625 448 416 354.900390625 416 240 c 0 - 416 191.700195312 399.599609375 147.299804688 372 112 c 1 - 388.299804688 112 l 2 - 394.700195312 112 400.799804688 109.5 405.299804688 105 c 2 - 505 5.2998046875 l 2 - 514.299804688 -4.099609375 514.299804688 -19.2998046875 505 -28.7001953125 c 2 -344 240 m 0 - 344 315.200195312 283.200195312 376 208 376 c 0 - 132.799804688 376 72 315.200195312 72 240 c 0 - 72 164.799804688 132.799804688 104 208 104 c 0 - 283.200195312 104 344 164.799804688 344 240 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" s e a r c h hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S e a r c h hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S E A R C H hyphen P L U S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S e a r c h hyphen P l u s -EndChar - -StartChar: search-minus -Encoding: 61456 61456 79 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -304 256 m 2 - 304 224 l 2 - 304 217.400390625 298.599609375 212 292 212 c 2 - 124 212 l 2 - 117.400390625 212 112 217.400390625 112 224 c 2 - 112 256 l 2 - 112 262.599609375 117.400390625 268 124 268 c 2 - 292 268 l 2 - 298.599609375 268 304 262.599609375 304 256 c 2 -505 -28.7001953125 m 2 - 476.700195312 -57 l 2 - 467.299804688 -66.400390625 452.099609375 -66.400390625 442.799804688 -57 c 2 - 343 42.7001953125 l 2 - 338.5 47.2001953125 336 53.2998046875 336 59.7001953125 c 2 - 336 76 l 1 - 300.700195312 48.400390625 256.299804688 32 208 32 c 0 - 93.099609375 32 0 125.099609375 0 240 c 0 - 0 354.900390625 93.099609375 448 208 448 c 0 - 322.900390625 448 416 354.900390625 416 240 c 0 - 416 191.700195312 399.599609375 147.299804688 372 112 c 1 - 388.299804688 112 l 2 - 394.700195312 112 400.799804688 109.5 405.299804688 105 c 2 - 505 5.2998046875 l 2 - 514.299804688 -4.099609375 514.299804688 -19.2998046875 505 -28.7001953125 c 2 -344 240 m 0 - 344 315.200195312 283.200195312 376 208 376 c 0 - 132.799804688 376 72 315.200195312 72 240 c 0 - 72 164.799804688 132.799804688 104 208 104 c 0 - 283.200195312 104 344 164.799804688 344 240 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" s e a r c h hyphen m i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" S e a r c h hyphen M i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" S e a r c h hyphen m i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" S E A R C H hyphen M I N U S -EndChar - -StartChar: power-off -Encoding: 61457 61457 80 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 393.900390625 m 0 - 463 348.900390625 504 275.299804688 504 192 c 0 - 504 55.2001953125 393.200195312 -55.7001953125 256.5 -56 c 0 - 120 -56.2998046875 8.2001953125 55 8 191.599609375 c 0 - 7.900390625 274.900390625 48.900390625 348.700195312 111.799804688 393.799804688 c 0 - 123.5 402.099609375 139.799804688 398.599609375 146.799804688 386.099609375 c 2 - 162.599609375 358 l 2 - 168.5 347.5 165.700195312 334.200195312 156 327 c 0 - 114.5 296.200195312 88 247.400390625 88 192.099609375 c 0 - 87.900390625 99.7998046875 162.5 24 256 24 c 0 - 347.599609375 24 424.599609375 98.2001953125 424 193.099609375 c 0 - 423.700195312 244.900390625 399.299804688 294.900390625 355.900390625 327.099609375 c 0 - 346.200195312 334.299804688 343.5 347.599609375 349.400390625 358 c 2 - 365.200195312 386.099609375 l 2 - 372.200195312 398.5 388.400390625 402.200195312 400 393.900390625 c 0 -296 184 m 2 - 296 170.700195312 285.299804688 160 272 160 c 2 - 240 160 l 2 - 226.700195312 160 216 170.700195312 216 184 c 2 - 216 424 l 2 - 216 437.299804688 226.700195312 448 240 448 c 2 - 272 448 l 2 - 285.299804688 448 296 437.299804688 296 424 c 2 - 296 184 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" p o w e r hyphen o f f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" P o w e r hyphen O f f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" P o w e r hyphen o f f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" P O W E R hyphen O F F -EndChar - -StartChar: signal -Encoding: 61458 61458 81 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -216 160 m 2 - 224.83984375 160 232 152.83984375 232 144 c 2 - 232 -48 l 2 - 232 -56.83984375 224.83984375 -64 216 -64 c 2 - 168 -64 l 2 - 159.16015625 -64 152 -56.83984375 152 -48 c 2 - 152 144 l 2 - 152 152.83984375 159.16015625 160 168 160 c 2 - 216 160 l 2 -88 64 m 2 - 96.83984375 64 104 56.83984375 104 48 c 2 - 104 -48 l 2 - 104 -56.83984375 96.83984375 -64 88 -64 c 2 - 40 -64 l 2 - 31.16015625 -64 24 -56.83984375 24 -48 c 2 - 24 48 l 2 - 24 56.83984375 31.16015625 64 40 64 c 2 - 88 64 l 2 -344 256 m 2 - 352.83984375 256 360 248.83984375 360 240 c 2 - 360 -48 l 2 - 360 -56.83984375 352.83984375 -64 344 -64 c 2 - 296 -64 l 2 - 287.16015625 -64 280 -56.83984375 280 -48 c 2 - 280 240 l 2 - 280 248.83984375 287.16015625 256 296 256 c 2 - 344 256 l 2 -472 352 m 2 - 480.83984375 352 488 344.83984375 488 336 c 2 - 488 -48 l 2 - 488 -56.83984375 480.83984375 -64 472 -64 c 2 - 424 -64 l 2 - 415.16015625 -64 408 -56.83984375 408 -48 c 2 - 408 336 l 2 - 408 344.83984375 415.16015625 352 424 352 c 2 - 472 352 l 2 -600 448 m 2 - 608.83984375 448 616 440.83984375 616 432 c 2 - 616 -48 l 2 - 616 -56.83984375 608.83984375 -64 600 -64 c 2 - 552 -64 l 2 - 543.16015625 -64 536 -56.83984375 536 -48 c 2 - 536 432 l 2 - 536 440.83984375 543.16015625 448 552 448 c 2 - 600 448 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" s i g n a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" S i g n a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" S I G N A L -EndChar - -StartChar: cog -Encoding: 61459 61459 82 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -487.400390625 132.299804688 m 2 - 492.299804688 129.5 494.5 123.700195312 493 118.200195312 c 0 - 481.900390625 82.5 463 50.2998046875 438.299804688 23.599609375 c 0 - 434.5 19.400390625 428.400390625 18.5 423.5 21.2998046875 c 2 - 380.900390625 45.900390625 l 1 - 362.900390625 30.599609375 342.299804688 18.7001953125 320.099609375 10.7998046875 c 1 - 320.099609375 -38.400390625 l 2 - 320.099609375 -44 316.200195312 -48.900390625 310.700195312 -50.099609375 c 0 - 275.799804688 -57.900390625 238.200195312 -58.2998046875 201.5 -50.099609375 c 0 - 196 -48.900390625 192.099609375 -44 192.099609375 -38.400390625 c 2 - 192.099609375 10.7998046875 l 1 - 169.799804688 18.599609375 149.200195312 30.5 131.299804688 45.900390625 c 1 - 88.7001953125 21.2998046875 l 2 - 83.900390625 18.5 77.7001953125 19.5 73.900390625 23.599609375 c 0 - 49.2001953125 50.400390625 30.2998046875 82.599609375 19.2001953125 118.200195312 c 0 - 17.599609375 123.599609375 19.7998046875 129.400390625 24.7001953125 132.200195312 c 2 - 67.2998046875 156.799804688 l 1 - 63 180 63 203.799804688 67.2998046875 227 c 1 - 24.7001953125 251.599609375 l 2 - 19.7998046875 254.400390625 17.5 260.200195312 19.2001953125 265.599609375 c 0 - 30.2998046875 301.299804688 49.2001953125 333.5 73.900390625 360.200195312 c 0 - 77.7001953125 364.400390625 83.7998046875 365.299804688 88.7001953125 362.5 c 2 - 131.200195312 337.900390625 l 1 - 149.200195312 353.200195312 169.799804688 365.099609375 192 373 c 1 - 192 422.200195312 l 2 - 192 427.799804688 195.900390625 432.700195312 201.400390625 433.900390625 c 0 - 236.299804688 441.700195312 273.900390625 442.099609375 310.599609375 433.900390625 c 0 - 316.099609375 432.700195312 320 427.799804688 320 422.200195312 c 2 - 320 373.099609375 l 1 - 342.299804688 365.299804688 362.900390625 353.400390625 380.799804688 338 c 1 - 423.400390625 362.599609375 l 2 - 428.200195312 365.400390625 434.400390625 364.400390625 438.200195312 360.299804688 c 0 - 462.900390625 333.5 481.799804688 301.299804688 492.900390625 265.700195312 c 0 - 494.5 260.299804688 492.299804688 254.5 487.400390625 251.700195312 c 2 - 444.799804688 227.099609375 l 1 - 449.099609375 203.900390625 449.099609375 180.099609375 444.799804688 156.900390625 c 1 - 487.400390625 132.299804688 l 2 -256 112 m 0 - 300.099609375 112 336 147.900390625 336 192 c 0 - 336 236.099609375 300.099609375 272 256 272 c 0 - 211.900390625 272 176 236.099609375 176 192 c 0 - 176 147.900390625 211.900390625 112 256 112 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" c o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" C o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" C O G -EndChar - -StartChar: home -Encoding: 61461 61461 83 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -280.370117188 299.740234375 m 2 - 282.21875 301.23046875 285.645507812 302.439453125 288.01953125 302.439453125 c 0 - 290.39453125 302.439453125 293.821289062 301.23046875 295.669921875 299.740234375 c 2 - 480 148 l 1 - 480 -16 l 2 - 480 -24.83203125 472.83203125 -32 464 -32 c 2 - 351.98046875 -31.6904296875 l 1 - 351.979492188 -31.6904296875 l 2 - 343.147460938 -31.6904296875 335.979492188 -24.5224609375 335.979492188 -15.6904296875 c 0 - 335.979492188 -15.67578125 335.979492188 -15.6533203125 335.98046875 -15.6396484375 c 2 - 335.98046875 80 l 2 - 335.98046875 88.83203125 328.811523438 96 319.98046875 96 c 2 - 255.98046875 96 l 2 - 247.1484375 96 239.98046875 88.83203125 239.98046875 80 c 2 - 239.98046875 -15.7099609375 l 1 - 239.98046875 -15.7099609375 l 1 - 239.98046875 -24.498046875 232.84765625 -31.666015625 224.059570312 -31.7099609375 c 2 - 112 -32 l 2 - 103.16796875 -32 96 -24.83203125 96 -16 c 2 - 96 147.889648438 l 1 - 280.370117188 299.740234375 l 2 -571.599609375 196.530273438 m 2 - 574.044921875 194.541992188 576.029296875 190.37109375 576.029296875 187.219726562 c 0 - 576.029296875 184.846679688 574.806640625 181.43359375 573.299804688 179.599609375 c 2 - 547.799804688 148.599609375 l 2 - 545.813476562 146.196289062 541.668945312 144.245117188 538.55078125 144.245117188 c 0 - 536.165039062 144.245117188 532.737304688 145.479492188 530.900390625 147 c 2 - 295.669921875 340.740234375 l 2 - 293.821289062 342.23046875 290.39453125 343.439453125 288.01953125 343.439453125 c 0 - 285.645507812 343.439453125 282.21875 342.23046875 280.370117188 340.740234375 c 2 - 45.150390625 147 l 2 - 43.3134765625 145.483398438 39.8896484375 144.251953125 37.5078125 144.251953125 c 0 - 34.3798828125 144.251953125 30.2275390625 146.213867188 28.240234375 148.629882812 c 2 - 2.740234375 179.629882812 l 2 - 1.2197265625 181.467773438 -0.0146484375 184.895507812 -0.0146484375 187.280273438 c 0 - -0.0146484375 190.399414062 1.9365234375 194.54296875 4.33984375 196.530273438 c 2 - 257.469726562 405 l 2 - 264.805664062 411.036132812 278.469726562 415.935546875 287.969726562 415.935546875 c 0 - 297.470703125 415.935546875 311.133789062 411.036132812 318.469726562 405 c 2 - 408 331.33984375 l 1 - 408 403.950195312 l 2 - 408 410.57421875 413.375976562 415.950195312 420 415.950195312 c 2 - 476 415.950195312 l 2 - 482.624023438 415.950195312 488 410.57421875 488 403.950195312 c 2 - 488 265.440429688 l 1 - 571.599609375 196.530273438 l 2 -EndSplineSet -Validated: 524293 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" h o m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" H o m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" H O M E -EndChar - -StartChar: clock -Encoding: 61463 61463 84 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -313.099609375 89.900390625 m 2 - 318.5 86 326 87.2001953125 329.900390625 92.5 c 2 - 358.099609375 131.299804688 l 2 - 362 136.700195312 360.900390625 144.200195312 355.5 148.099609375 c 2 - 292 194.299804688 l 1 - 292 332 l 2 - 292 338.599609375 286.599609375 344 280 344 c 2 - 232 344 l 2 - 225.400390625 344 220 338.599609375 220 332 c 2 - 220 163.700195312 l 2 - 220 159.900390625 221.799804688 156.299804688 224.900390625 154 c 2 - 313.099609375 89.900390625 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" c l o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" C l o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" C L O C K -EndChar - -StartChar: road -Encoding: 61464 61464 85 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -573.190429688 45.330078125 m 2 - 582.450195312 24.1396484375 567.690429688 0 545.459960938 0 c 2 - 348.620117188 0 l 1 - 338.309570312 97.6796875 l 2 - 337.450195312 105.8203125 330.58984375 112 322.400390625 112 c 2 - 253.599609375 112 l 2 - 245.41015625 112 238.549804688 105.8203125 237.690429688 97.6796875 c 2 - 227.379882812 0 l 1 - 30.5400390625 0 l 2 - 8.3095703125 0 -6.4501953125 24.1396484375 2.7998046875 45.330078125 c 2 - 142.58984375 365.330078125 l 2 - 147.559570312 376.709960938 158.389648438 384 170.3203125 384 c 2 - 267.91015625 384 l 1 - 265.459960938 360.83984375 l 2 - 264.959960938 356.120117188 268.669921875 352 273.419921875 352 c 2 - 302.580078125 352 l 2 - 307.330078125 352 311.040039062 356.120117188 310.540039062 360.83984375 c 2 - 308.08984375 384 l 1 - 405.6796875 384 l 2 - 417.599609375 384 428.4296875 376.709960938 433.400390625 365.330078125 c 2 - 573.190429688 45.330078125 l 2 -260.400390625 312.83984375 m 2 - 255.809570312 269.259765625 l 2 - 255.059570312 262.169921875 260.610351562 256 267.740234375 256 c 2 - 308.280273438 256 l 2 - 315.400390625 256 320.959960938 262.169921875 320.209960938 269.259765625 c 2 - 315.610351562 312.83984375 l 2 - 315.1796875 316.91015625 311.740234375 320 307.650390625 320 c 2 - 268.360351562 320 l 1 - 268.35546875 320 l 2 - 264.381835938 320 260.817382812 316.791992188 260.400390625 312.83984375 c 2 -315.639648438 144 m 2 - 325.139648438 144 332.549804688 152.23046875 331.549804688 161.6796875 c 2 - 326.48046875 209.6796875 l 2 - 325.620117188 217.8203125 318.759765625 224 310.5703125 224 c 2 - 265.419921875 224 l 2 - 257.23046875 224 250.370117188 217.8203125 249.509765625 209.6796875 c 2 - 244.440429688 161.6796875 l 2 - 243.440429688 152.23046875 250.849609375 144 260.349609375 144 c 2 - 315.639648438 144 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" r o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" R o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" R O A D -EndChar - -StartChar: download -Encoding: 61465 61465 86 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -216 448 m 2 - 296 448 l 2 - 309.299804688 448 320 437.299804688 320 424 c 2 - 320 256 l 1 - 407.700195312 256 l 2 - 425.5 256 434.400390625 234.5 421.799804688 221.900390625 c 2 - 269.700195312 69.7001953125 l 2 - 262.200195312 62.2001953125 249.900390625 62.2001953125 242.400390625 69.7001953125 c 2 - 90.099609375 221.900390625 l 2 - 77.5 234.5 86.400390625 256 104.200195312 256 c 2 - 192 256 l 1 - 192 424 l 2 - 192 437.299804688 202.700195312 448 216 448 c 2 -512 72 m 2 - 512 -40 l 2 - 512 -53.2998046875 501.299804688 -64 488 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 72 l 2 - 0 85.2998046875 10.7001953125 96 24 96 c 2 - 170.700195312 96 l 1 - 219.700195312 47 l 2 - 239.799804688 26.900390625 272.200195312 26.900390625 292.299804688 47 c 2 - 341.299804688 96 l 1 - 488 96 l 2 - 501.299804688 96 512 85.2998046875 512 72 c 2 -388 -16 m 0 - 388 -5 379 4 368 4 c 0 - 357 4 348 -5 348 -16 c 0 - 348 -27 357 -36 368 -36 c 0 - 379 -36 388 -27 388 -16 c 0 -452 -16 m 0 - 452 -5 443 4 432 4 c 0 - 421 4 412 -5 412 -16 c 0 - 412 -27 421 -36 432 -36 c 0 - 443 -36 452 -27 452 -16 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" d o w n l o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" D o w n l o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" D O W N L O A D -EndChar - -StartChar: inbox -Encoding: 61468 61468 87 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -567.938476562 204.091796875 m 2 - 572.388671875 197.416992188 576 185.489257812 576 177.467773438 c 2 - 576 177.466796875 l 1 - 576 48 l 2 - 576 21.490234375 554.509765625 0 528 0 c 2 - 48 0 l 2 - 21.490234375 0 0 21.490234375 0 48 c 2 - 0 177.466796875 l 1 - 0 177.467773438 l 2 - 0 185.489257812 3.611328125 197.416992188 8.0615234375 204.091796875 c 2 - 113.750976562 362.625976562 l 2 - 121.6171875 374.424804688 139.508789062 384 153.689453125 384 c 2 - 422.310546875 384 l 2 - 436.491210938 384 454.383789062 374.423828125 462.25 362.625976562 c 2 - 567.938476562 204.091796875 l 2 -162.251953125 320 m 1 - 76.91796875 192 l 1 - 200 192 l 1 - 232 128 l 1 - 344 128 l 1 - 376 192 l 1 - 499.08203125 192 l 1 - 413.749023438 320 l 1 - 162.251953125 320 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" i n b o x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" I n b o x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" I N B O X -EndChar - -StartChar: redo -Encoding: 61470 61470 88 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -500.330078125 448 m 2 - 506.954101562 448 512.330078125 442.624023438 512.330078125 436 c 2 - 512.330078125 235.66015625 l 2 - 512.330078125 229.036132812 506.954101562 223.66015625 500.330078125 223.66015625 c 2 - 300 223.66015625 l 2 - 293.375976562 223.66015625 288 229.036132812 288 235.66015625 c 2 - 288 283.0703125 l 1 - 288 283.083984375 l 2 - 288 289.708007812 293.375976562 295.083984375 300 295.083984375 c 0 - 300.157226562 295.083984375 300.413085938 295.077148438 300.5703125 295.0703125 c 2 - 402.099609375 290.200195312 l 1 - 373.227539062 333.161132812 307.78515625 368.028320312 256.0234375 368.028320312 c 0 - 158.872070312 368.028320312 80.0234375 289.1796875 80.0234375 192.028320312 c 0 - 80.0234375 94.8759765625 158.872070312 16.0283203125 256.0234375 16.0283203125 c 0 - 292.677734375 16.0283203125 344.760742188 35.6787109375 372.280273438 59.8896484375 c 0 - 374.15234375 61.5263671875 377.689453125 62.853515625 380.17578125 62.853515625 c 0 - 382.918945312 62.853515625 386.719726562 61.279296875 388.66015625 59.33984375 c 2 - 422.66015625 25.33984375 l 2 - 424.6015625 23.3994140625 426.177734375 19.5966796875 426.177734375 16.8515625 c 0 - 426.177734375 13.890625 424.38671875 9.884765625 422.1796875 7.91015625 c 0 - 383.208984375 -27.3681640625 308.916015625 -56 256.348632812 -56 c 2 - 256 -56 l 2 - 119.099609375 -56 8.099609375 54.9296875 8 191.809570312 c 0 - 7.900390625 328.469726562 119.33984375 440 256 440 c 2 - 256.272460938 440 l 2 - 319.497070312 440 404.01171875 400.875976562 444.919921875 352.669921875 c 1 - 440.919921875 435.4296875 l 2 - 440.912109375 435.586914062 440.90625 435.842773438 440.90625 436 c 0 - 440.90625 442.624023438 446.282226562 448 452.90625 448 c 2 - 452.919921875 448 l 1 - 500.330078125 448 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" r e d o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" R E D O -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" R e d o -EndChar - -StartChar: sync -Encoding: 61473 61473 89 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -440.650390625 435.4296875 m 2 - 440.642578125 435.586914062 440.63671875 435.842773438 440.63671875 436 c 0 - 440.63671875 442.620117188 446.009765625 447.99609375 452.629882812 448 c 2 - 500 448 l 2 - 506.624023438 448 512 442.624023438 512 436 c 2 - 512 235.650390625 l 2 - 512 229.026367188 506.624023438 223.650390625 500 223.650390625 c 2 - 299.780273438 223.650390625 l 2 - 293.15625 223.650390625 287.780273438 229.026367188 287.780273438 235.650390625 c 2 - 287.780273438 283.059570312 l 1 - 287.780273438 283.073242188 l 2 - 287.780273438 289.697265625 293.15625 295.073242188 299.780273438 295.073242188 c 0 - 299.9375 295.073242188 300.192382812 295.067382812 300.349609375 295.059570312 c 2 - 401.809570312 290.200195312 l 1 - 372.951171875 333.125 307.549804688 367.962890625 255.825195312 367.962890625 c 0 - 179.341796875 367.962890625 102.7265625 307.616210938 84.8095703125 233.259765625 c 0 - 83.6123046875 228.154296875 78.384765625 224.005859375 73.1396484375 224 c 2 - 24.08984375 224 l 2 - 17.4658203125 224 12.08984375 229.375976562 12.08984375 236 c 0 - 12.08984375 236.606445312 12.1796875 237.583007812 12.2900390625 238.1796875 c 0 - 33.91015625 353.080078125 134.73046875 440 255.830078125 440 c 2 - 256.114257812 440 l 2 - 319.317382812 440 403.78125 400.872070312 444.650390625 352.66015625 c 1 - 440.650390625 435.4296875 l 2 -255.830078125 16 m 2 - 332.327148438 16 408.973632812 76.36328125 426.860351562 150.740234375 c 0 - 428.057617188 155.845703125 433.28515625 159.994140625 438.530273438 160 c 2 - 487.580078125 160 l 2 - 494.204101562 160 499.580078125 154.624023438 499.580078125 148 c 0 - 499.580078125 147.393554688 499.490234375 146.416992188 499.379882812 145.8203125 c 0 - 477.759765625 30.919921875 376.940429688 -56 255.830078125 -56 c 2 - 255.595703125 -56 l 2 - 192.466796875 -56 108.065429688 -16.9482421875 67.2001953125 31.169921875 c 1 - 71.349609375 -51.400390625 l 2 - 71.3583984375 -51.5654296875 71.365234375 -51.833984375 71.365234375 -52 c 0 - 71.365234375 -58.6240234375 65.9892578125 -64 59.365234375 -64 c 2 - 59.349609375 -64 l 1 - 12 -64 l 2 - 5.3759765625 -64 0 -58.6240234375 0 -52 c 2 - 0 148.330078125 l 2 - 0 154.954101562 5.3759765625 160.330078125 12 160.330078125 c 2 - 212.200195312 160.330078125 l 2 - 218.82421875 160.330078125 224.200195312 154.954101562 224.200195312 148.330078125 c 2 - 224.200195312 100.9296875 l 1 - 224.200195312 100.916015625 l 2 - 224.200195312 94.2919921875 218.82421875 88.916015625 212.200195312 88.916015625 c 0 - 212.04296875 88.916015625 211.787109375 88.9228515625 211.629882812 88.9296875 c 2 - 109.830078125 93.7998046875 l 1 - 138.629882812 50.8544921875 203.970703125 16 255.6796875 16 c 2 - 255.830078125 16 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" s y n c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" S y n c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" S Y N C -EndChar - -StartChar: list-alt -Encoding: 61474 61474 90 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 -32 m 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 464 416 l 2 - 490.509765625 416 512 394.509765625 512 368 c 2 - 512 16 l 2 - 512 -10.509765625 490.509765625 -32 464 -32 c 2 -128 328 m 0 - 105.909179688 328 88 310.090820312 88 288 c 0 - 88 265.909179688 105.909179688 248 128 248 c 0 - 150.090820312 248 168 265.909179688 168 288 c 0 - 168 310.090820312 150.090820312 328 128 328 c 0 -128 232 m 0 - 105.909179688 232 88 214.090820312 88 192 c 0 - 88 169.909179688 105.909179688 152 128 152 c 0 - 150.090820312 152 168 169.909179688 168 192 c 0 - 168 214.090820312 150.090820312 232 128 232 c 0 -128 136 m 0 - 105.909179688 136 88 118.090820312 88 96 c 0 - 88 73.9091796875 105.909179688 56 128 56 c 0 - 150.090820312 56 168 73.9091796875 168 96 c 0 - 168 118.090820312 150.090820312 136 128 136 c 0 -416 272 m 2 - 416 304 l 2 - 416 310.626953125 410.626953125 316 404 316 c 2 - 204 316 l 2 - 197.373046875 316 192 310.626953125 192 304 c 2 - 192 272 l 2 - 192 265.373046875 197.373046875 260 204 260 c 2 - 404 260 l 2 - 410.626953125 260 416 265.373046875 416 272 c 2 -416 176 m 2 - 416 208 l 2 - 416 214.626953125 410.626953125 220 404 220 c 2 - 204 220 l 2 - 197.373046875 220 192 214.626953125 192 208 c 2 - 192 176 l 2 - 192 169.373046875 197.373046875 164 204 164 c 2 - 404 164 l 2 - 410.626953125 164 416 169.373046875 416 176 c 2 -416 80 m 2 - 416 112 l 2 - 416 118.626953125 410.626953125 124 404 124 c 2 - 204 124 l 2 - 197.373046875 124 192 118.626953125 192 112 c 2 - 192 80 l 2 - 192 73.373046875 197.373046875 68 204 68 c 2 - 404 68 l 2 - 410.626953125 68 416 73.373046875 416 80 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" l i s t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" L i s t hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" L i s t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" L I S T hyphen A L T -EndChar - -StartChar: lock -Encoding: 61475 61475 91 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 224 m 2 - 426.5 224 448 202.5 448 176 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 176 l 2 - 0 202.5 21.5 224 48 224 c 2 - 72 224 l 1 - 72 296 l 2 - 72 379.799804688 140.200195312 448 224 448 c 0 - 307.799804688 448 376 379.799804688 376 296 c 2 - 376 224 l 1 - 400 224 l 2 -296 224 m 1 - 296 296 l 2 - 296 335.700195312 263.700195312 368 224 368 c 0 - 184.299804688 368 152 335.700195312 152 296 c 2 - 152 224 l 1 - 296 224 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" l o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" L o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" L O C K -EndChar - -StartChar: flag -Encoding: 61476 61476 92 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -349.565429688 349.216796875 m 0 - 390.060546875 349.216796875 432.176757812 365.123046875 466.514648438 381.071289062 c 0 - 487.731445312 390.924804688 512 375.448242188 512 352.0546875 c 2 - 512 108.955078125 l 2 - 512 98.4287109375 506.83984375 88.5478515625 498.157226562 82.5966796875 c 0 - 462.319335938 58.033203125 423.821289062 41.7392578125 375.65234375 41.7392578125 c 0 - 308.279296875 41.7392578125 264.0234375 76.5224609375 210.434570312 76.5224609375 c 0 - 159.58203125 76.5224609375 124.310546875 66.4638671875 96 54.400390625 c 1 - 96 -40 l 2 - 96 -53.2548828125 85.2548828125 -64 72 -64 c 2 - 56 -64 l 2 - 42.7451171875 -64 32 -53.2548828125 32 -40 c 2 - 32 346.0546875 l 1 - 17.4970703125 356.174804688 8 372.973632812 8 392 c 0 - 8 423.704101562 34.3447265625 449.25390625 66.337890625 447.952148438 c 0 - 94.8056640625 446.793945312 118.1171875 423.985351562 119.888671875 395.548828125 c 0 - 119.951171875 394.568359375 120.001953125 392.975585938 120.001953125 391.993164062 c 0 - 120.001953125 386.282226562 118.344726562 377.319335938 116.302734375 371.987304688 c 1 - 137.0390625 379.616210938 159.392578125 384 184.34765625 384 c 0 - 251.720703125 384 295.977539062 349.216796875 349.565429688 349.216796875 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" f l a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" F l a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" F L A G -EndChar - -StartChar: headphones -Encoding: 61477 61477 93 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 416 m 0 - 397.50390625 416 512 301.478515625 512 160 c 2 - 512 112 l 2 - 512 101.083007812 504.075195312 88.259765625 494.309570312 83.3779296875 c 2 - 479.927734375 76.1865234375 l 1 - 477.916992188 16.09765625 428.579101562 -32 368 -32 c 2 - 344 -32 l 2 - 330.745117188 -32 320 -21.2548828125 320 -8 c 2 - 320 168 l 2 - 320 181.254882812 330.745117188 192 344 192 c 2 - 368 192 l 2 - 399.341796875 192 427.670898438 179.12109375 448 158.373046875 c 1 - 448 160 l 2 - 448 265.869140625 361.869140625 352 256 352 c 0 - 150.130859375 352 64 265.869140625 64 160 c 2 - 64 158.373046875 l 1 - 84.3291015625 179.12109375 112.658203125 192 144 192 c 2 - 168 192 l 2 - 181.254882812 192 192 181.254882812 192 168 c 2 - 192 -8 l 2 - 192 -21.2548828125 181.254882812 -32 168 -32 c 2 - 144 -32 l 2 - 83.4208984375 -32 34.0830078125 16.0966796875 32.072265625 76.1865234375 c 1 - 17.689453125 83.3779296875 l 2 - 7.9248046875 88.259765625 0 101.083007812 0 112 c 1 - 0 112 l 1 - 0 160 l 2 - 0 301.50390625 114.51953125 416 256 416 c 0 -EndSplineSet -Validated: 524293 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" h e a d p h o n e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H e a d p h o n e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H E A D P H O N E S -EndChar - -StartChar: volume-off -Encoding: 61478 61478 94 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -215 377 m 2 - 230 392 256 381.469726562 256 360 c 2 - 256 24 l 2 - 256 2.5302734375 230 -8 215 7 c 2 - 126.059570312 96 l 1 - 24 96 l 2 - 10.751953125 96 0 106.751953125 0 120 c 2 - 0 264 l 2 - 0 277.248046875 10.751953125 288 24 288 c 2 - 126 288 l 1 - 215 377 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" v o l u m e hyphen o f f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" V o l u m e hyphen O f f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" V o l u m e hyphen o f f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" V O L U M E hyphen O F F -EndChar - -StartChar: volume-down -Encoding: 61479 61479 95 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -215.030273438 375.959960938 m 2 - 230.040039062 390.959960938 256 380.450195312 256 358.98046875 c 2 - 256 23.01953125 l 2 - 256 1.580078125 230.059570312 -8.98046875 215.030273438 6.0498046875 c 2 - 126.059570312 95 l 1 - 24 95 l 2 - 10.740234375 95 0 105.75 0 119 c 2 - 0 263 l 2 - 0 276.259765625 10.740234375 287 24 287 c 2 - 126.059570312 287 l 1 - 215.030273438 375.959960938 l 2 -338.23046875 267.879882812 m 0 - 366.469726562 252.330078125 384.009765625 222.889648438 384.009765625 191.009765625 c 0 - 384.009765625 159.129882812 366.469726562 129.6796875 338.240234375 114.129882812 c 0 - 326.6796875 107.780273438 312.059570312 111.919921875 305.629882812 123.580078125 c 0 - 299.240234375 135.190429688 303.469726562 149.780273438 315.080078125 156.190429688 c 0 - 327.98046875 163.280273438 336 176.620117188 336 191 c 0 - 336 205.379882812 327.98046875 218.719726562 315.0703125 225.8203125 c 0 - 303.459960938 232.23046875 299.23046875 246.8203125 305.620117188 258.4296875 c 0 - 312.040039062 270.040039062 326.650390625 274.209960938 338.23046875 267.879882812 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" v o l u m e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" V o l u m e hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" V o l u m e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" V O L U M E hyphen D O W N -EndChar - -StartChar: volume-up -Encoding: 61480 61480 96 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -215.030273438 376.950195312 m 2 - 230.040039062 391.959960938 256 381.440429688 256 359.98046875 c 2 - 256 24.01953125 l 2 - 256 2.580078125 230.059570312 -7.98046875 215.030273438 7.0498046875 c 2 - 126.059570312 96 l 1 - 24 96 l 2 - 10.740234375 96 0 106.75 0 120 c 2 - 0 264 l 2 - 0 277.259765625 10.740234375 288 24 288 c 2 - 126.059570312 288 l 1 - 215.030273438 376.950195312 l 2 -448.349609375 428.030273438 m 0 - 528.26953125 375.5703125 576 287.330078125 576 192 c 0 - 576 96.669921875 528.26953125 8.419921875 448.349609375 -44.0400390625 c 0 - 436.76953125 -51.650390625 421.879882812 -47.7998046875 414.83984375 -37.08984375 c 0 - 407.5 -25.9296875 410.620117188 -10.91015625 421.790039062 -3.58984375 c 0 - 488.059570312 39.900390625 527.610351562 113.009765625 527.610351562 191.990234375 c 0 - 527.610351562 270.969726562 488.059570312 344.080078125 421.790039062 387.5703125 c 0 - 410.620117188 394.900390625 407.5 409.91015625 414.83984375 421.080078125 c 0 - 422.169921875 432.26953125 437.1796875 435.360351562 448.349609375 428.030273438 c 0 -480 192 m 0 - 480 128.459960938 447.940429688 70.0595703125 394.23046875 35.759765625 c 0 - 382.23046875 28.080078125 367.620117188 32.8603515625 361.110351562 43.2197265625 c 0 - 354.01953125 54.509765625 357.330078125 69.4404296875 368.51953125 76.580078125 c 0 - 408.26953125 101.969726562 432 145.110351562 432 192 c 0 - 432 238.889648438 408.26953125 282.030273438 368.51953125 307.419921875 c 0 - 357.330078125 314.5703125 354.01953125 329.5 361.110351562 340.780273438 c 0 - 368.200195312 352.059570312 383.040039062 355.379882812 394.23046875 348.240234375 c 0 - 447.940429688 313.940429688 480 255.530273438 480 192 c 0 -338.23046875 268.870117188 m 0 - 366.469726562 253.330078125 384.009765625 223.889648438 384.009765625 192.009765625 c 0 - 384.009765625 160.129882812 366.469726562 130.6796875 338.240234375 115.129882812 c 0 - 326.6796875 108.780273438 312.059570312 112.919921875 305.629882812 124.580078125 c 0 - 299.240234375 136.190429688 303.469726562 150.780273438 315.080078125 157.190429688 c 0 - 327.98046875 164.280273438 336 177.620117188 336 192 c 0 - 336 206.370117188 327.98046875 219.719726562 315.0703125 226.809570312 c 0 - 303.459960938 233.219726562 299.23046875 247.809570312 305.620117188 259.419921875 c 0 - 312.040039062 271.030273438 326.650390625 275.200195312 338.23046875 268.870117188 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" v o l u m e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" V O L U M E hyphen U P -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" V o l u m e hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" V o l u m e hyphen u p -EndChar - -StartChar: qrcode -Encoding: 61481 61481 97 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 224 m 1 - 0 416 l 1 - 192 416 l 1 - 192 224 l 1 - 0 224 l 1 -64 352 m 1 - 64 288 l 1 - 128 288 l 1 - 128 352 l 1 - 64 352 l 1 -256 416 m 1 - 448 416 l 1 - 448 224 l 1 - 256 224 l 1 - 256 416 l 1 -384 288 m 1 - 384 352 l 1 - 320 352 l 1 - 320 288 l 1 - 384 288 l 1 -0 -32 m 1 - 0 160 l 1 - 192 160 l 1 - 192 -32 l 1 - 0 -32 l 1 -64 96 m 1 - 64 32 l 1 - 128 32 l 1 - 128 96 l 1 - 64 96 l 1 -416 160 m 1 - 448 160 l 1 - 448 32 l 1 - 352 32 l 1 - 352 64 l 1 - 320 64 l 1 - 320 -32 l 1 - 256 -32 l 1 - 256 160 l 1 - 352 160 l 1 - 352 128 l 1 - 416 128 l 1 - 416 160 l 1 -416 0 m 1 - 448 0 l 1 - 448 -32 l 1 - 416 -32 l 1 - 416 0 l 1 -352 0 m 1 - 384 0 l 1 - 384 -32 l 1 - 352 -32 l 1 - 352 0 l 1 -EndSplineSet -Validated: 1 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" q r c o d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" Q R C O D E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" Q r c o d e -EndChar - -StartChar: barcode -Encoding: 61482 61482 98 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 0 m 1 - 0 384 l 1 - 18 384 l 1 - 18 0 l 1 - 0 0 l 1 -26.857421875 0.2734375 m 1 - 26.857421875 384 l 1 - 36 384 l 1 - 36 0.2734375 l 1 - 26.857421875 0.2734375 l 1 -54 0.2734375 m 1 - 54 384 l 1 - 62.857421875 384 l 1 - 62.857421875 0.2734375 l 1 - 54 0.2734375 l 1 -98.857421875 0.2734375 m 1 - 98.857421875 384 l 1 - 107.713867188 384 l 1 - 107.713867188 0.2734375 l 1 - 98.857421875 0.2734375 l 1 -134.857421875 0.2734375 m 1 - 134.857421875 384 l 1 - 152.571289062 384 l 1 - 152.571289062 0.2734375 l 1 - 134.857421875 0.2734375 l 1 -179.713867188 0.2734375 m 1 - 179.713867188 384 l 1 - 188.571289062 384 l 1 - 188.571289062 0.2734375 l 1 - 179.713867188 0.2734375 l 1 -197.713867188 0.2734375 m 1 - 197.713867188 384 l 1 - 206.571289062 384 l 1 - 206.571289062 0.2734375 l 1 - 197.713867188 0.2734375 l 1 -215.713867188 0.2734375 m 1 - 215.713867188 384 l 1 - 224.571289062 384 l 1 - 224.571289062 0.2734375 l 1 - 215.713867188 0.2734375 l 1 -251.428710938 0.2734375 m 1 - 251.428710938 384 l 1 - 269.428710938 384 l 1 - 269.428710938 0.2734375 l 1 - 251.428710938 0.2734375 l 1 -296.286132812 0.2734375 m 1 - 296.286132812 384 l 1 - 314.286132812 384 l 1 - 314.286132812 0.2734375 l 1 - 296.286132812 0.2734375 l 1 -332.28515625 0.2734375 m 1 - 332.28515625 384 l 1 - 350.286132812 384 l 1 - 350.286132812 0.2734375 l 1 - 332.28515625 0.2734375 l 1 -368.286132812 0.2734375 m 1 - 368.286132812 384 l 1 - 386.287109375 384 l 1 - 386.287109375 0.2734375 l 1 - 368.286132812 0.2734375 l 1 -395.142578125 0.2734375 m 1 - 395.142578125 384 l 1 - 413.142578125 384 l 1 - 413.142578125 0.2734375 l 1 - 395.142578125 0.2734375 l 1 -440.286132812 0.2734375 m 1 - 440.286132812 384 l 1 - 467.142578125 384 l 1 - 467.142578125 0.2734375 l 1 - 440.286132812 0.2734375 l 1 -476 0.2734375 m 1 - 476 384 l 1 - 485.142578125 384 l 1 - 485.142578125 0.2734375 l 1 - 476 0.2734375 l 1 -494 0 m 1 - 494 384 l 1 - 512 384 l 1 - 512 0 l 1 - 494 0 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" b a r c o d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" B A R C O D E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" B a r c o d e -EndChar - -StartChar: tag -Encoding: 61483 61483 99 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 195.881835938 m 2 - 0 400 l 2 - 0 426.509765625 21.490234375 448 48 448 c 2 - 252.118164062 448 l 2 - 263.092773438 448 278.298828125 441.701171875 286.05859375 433.94140625 c 2 - 497.94140625 222.05859375 l 2 - 516.685546875 203.314453125 516.685546875 172.921875 497.94140625 154.176757812 c 2 - 293.823242188 -49.94140625 l 2 - 275.078125 -68.685546875 244.685546875 -68.685546875 225.94140625 -49.94140625 c 2 - 14.05859375 161.94140625 l 2 - 6.298828125 169.701171875 0 184.907226562 0 195.881835938 c 2 -112 384 m 0 - 85.490234375 384 64 362.509765625 64 336 c 0 - 64 309.490234375 85.490234375 288 112 288 c 0 - 138.509765625 288 160 309.490234375 160 336 c 0 - 160 362.509765625 138.509765625 384 112 384 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" t a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" T A G -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" T a g -EndChar - -StartChar: tags -Encoding: 61484 61484 100 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -497.94140625 222.05859375 m 2 - 516.685546875 203.314453125 516.685546875 172.921875 497.94140625 154.176757812 c 2 - 293.823242188 -49.94140625 l 2 - 275.077148438 -68.6865234375 244.684570312 -68.685546875 225.94140625 -49.94140625 c 2 - 14.05859375 161.94140625 l 2 - 6.298828125 169.701171875 0 184.907226562 0 195.881835938 c 2 - 0 400 l 2 - 0 426.509765625 21.490234375 448 48 448 c 2 - 252.118164062 448 l 2 - 263.092773438 448 278.298828125 441.701171875 286.05859375 433.94140625 c 2 - 497.94140625 222.05859375 l 2 -112 288 m 0 - 138.509765625 288 160 309.490234375 160 336 c 0 - 160 362.509765625 138.509765625 384 112 384 c 0 - 85.490234375 384 64 362.509765625 64 336 c 0 - 64 309.490234375 85.490234375 288 112 288 c 0 -625.94140625 154.176757812 m 2 - 421.823242188 -49.94140625 l 2 - 403.078125 -68.685546875 372.685546875 -68.685546875 353.94140625 -49.94140625 c 2 - 353.581054688 -49.5810546875 l 1 - 527.639648438 124.477539062 l 2 - 544.638671875 141.4765625 554 164.078125 554 188.118164062 c 0 - 554 212.158203125 544.637695312 234.758789062 527.639648438 251.7578125 c 2 - 331.397460938 448 l 1 - 380.118164062 448 l 2 - 391.092773438 448 406.298828125 441.701171875 414.05859375 433.94140625 c 2 - 625.94140625 222.05859375 l 2 - 644.685546875 203.314453125 644.685546875 172.921875 625.94140625 154.176757812 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" t a g s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" T A G S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" T a g s -EndChar - -StartChar: book -Encoding: 61485 61485 101 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 88 m 2 - 448 80.5 444.5 73.7001953125 439.099609375 69.400390625 c 1 - 434.900390625 54 434.900390625 10.099609375 439.099609375 -5.2998046875 c 1 - 444.5 -9.7001953125 448 -16.5 448 -24 c 2 - 448 -40 l 2 - 448 -53.2998046875 437.299804688 -64 424 -64 c 2 - 96 -64 l 2 - 43 -64 0 -21 0 32 c 2 - 0 352 l 2 - 0 405 43 448 96 448 c 2 - 424 448 l 2 - 437.299804688 448 448 437.299804688 448 424 c 2 - 448 88 l 2 -128 314 m 2 - 128 294 l 2 - 128 290.700195312 130.700195312 288 134 288 c 2 - 346 288 l 2 - 349.299804688 288 352 290.700195312 352 294 c 2 - 352 314 l 2 - 352 317.299804688 349.299804688 320 346 320 c 2 - 134 320 l 2 - 130.700195312 320 128 317.299804688 128 314 c 2 -128 250 m 2 - 128 230 l 2 - 128 226.700195312 130.700195312 224 134 224 c 2 - 346 224 l 2 - 349.299804688 224 352 226.700195312 352 230 c 2 - 352 250 l 2 - 352 253.299804688 349.299804688 256 346 256 c 2 - 134 256 l 2 - 130.700195312 256 128 253.299804688 128 250 c 2 -381.400390625 0 m 1 - 379.5 17.099609375 379.5 46.900390625 381.400390625 64 c 1 - 96 64 l 2 - 78.400390625 64 64 49.599609375 64 32 c 0 - 64 14.2998046875 78.2998046875 0 96 0 c 2 - 381.400390625 0 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" b o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" B o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" B O O K -EndChar - -StartChar: bookmark -Encoding: 61486 61486 102 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 -64 m 1 - 0 400 l 2 - 0 426.509765625 21.490234375 448 48 448 c 2 - 336 448 l 2 - 362.509765625 448 384 426.509765625 384 400 c 2 - 384 -64 l 1 - 192 48 l 1 - 0 -64 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" b o o k m a r k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B o o k m a r k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B O O K M A R K -EndChar - -StartChar: print -Encoding: 61487 61487 103 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 256 m 1 - 483.349609375 256 512 227.349609375 512 192 c 2 - 512 80 l 2 - 512 71.16015625 504.83984375 64 496 64 c 2 - 448 64 l 1 - 448 -32 l 2 - 448 -49.669921875 433.669921875 -64 416 -64 c 2 - 96 -64 l 2 - 78.330078125 -64 64 -49.669921875 64 -32 c 2 - 64 64 l 1 - 16 64 l 2 - 7.16015625 64 0 71.16015625 0 80 c 2 - 0 192 l 2 - 0 227.349609375 28.650390625 256 64 256 c 1 - 64 416 l 2 - 64 433.669921875 78.330078125 448 96 448 c 2 - 370.740234375 448 l 2 - 379.23046875 448 387.370117188 444.629882812 393.370117188 438.629882812 c 2 - 438.629882812 393.379882812 l 2 - 444.629882812 387.370117188 448 379.240234375 448 370.75 c 2 - 448 256 l 1 -384 0 m 1 - 384 96 l 1 - 128 96 l 1 - 128 0 l 1 - 384 0 l 1 -384 224 m 1 - 384 320 l 1 - 336 320 l 2 - 327.16015625 320 320 327.16015625 320 336 c 2 - 320 384 l 1 - 128 384 l 1 - 128 224 l 1 - 384 224 l 1 -432 152 m 0 - 445.25 152 456 162.75 456 176 c 0 - 456 189.259765625 445.25 200 432 200 c 0 - 418.75 200 408 189.259765625 408 176 c 0 - 408 162.75 418.75 152 432 152 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" p r i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" P r i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" P R I N T -EndChar - -StartChar: camera -Encoding: 61488 61488 104 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 304 m 2 - 512 16 l 2 - 512 -10.5 490.5 -32 464 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 304 l 2 - 0 330.5 21.5 352 48 352 c 2 - 136 352 l 1 - 148.299804688 384.900390625 l 2 - 155.299804688 403.599609375 173.200195312 416 193.200195312 416 c 2 - 318.700195312 416 l 2 - 338.700195312 416 356.599609375 403.599609375 363.599609375 384.900390625 c 2 - 376 352 l 1 - 464 352 l 2 - 490.5 352 512 330.5 512 304 c 2 -376 160 m 0 - 376 226.200195312 322.200195312 280 256 280 c 0 - 189.799804688 280 136 226.200195312 136 160 c 0 - 136 93.7998046875 189.799804688 40 256 40 c 0 - 322.200195312 40 376 93.7998046875 376 160 c 0 -344 160 m 0 - 344 111.5 304.5 72 256 72 c 0 - 207.5 72 168 111.5 168 160 c 0 - 168 208.5 207.5 248 256 248 c 0 - 304.5 248 344 208.5 344 160 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" c a m e r a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C a m e r a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C A M E R A -EndChar - -StartChar: font -Encoding: 61489 61489 105 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -432 32 m 2 - 440.83203125 32 448 24.83203125 448 16 c 2 - 448 -16 l 2 - 448 -24.83203125 440.83203125 -32 432 -32 c 2 - 304 -32 l 2 - 295.16796875 -32 288 -24.83203125 288 -16 c 2 - 288 16 l 2 - 288 24.83203125 295.16796875 32 304 32 c 2 - 323.580078125 32 l 1 - 300.280273438 96 l 1 - 147.719726562 96 l 1 - 124.419921875 32 l 1 - 144 32 l 2 - 152.83203125 32 160 24.83203125 160 16 c 2 - 160 -16 l 2 - 160 -24.83203125 152.83203125 -32 144 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 39.41015625 32 l 1 - 170.120117188 394.309570312 l 2 - 174.194335938 406.283203125 187.766601562 416 200.4140625 416 c 2 - 200.419921875 416 l 1 - 247.580078125 416 l 1 - 247.5859375 416 l 2 - 260.233398438 416 273.805664062 406.283203125 277.879882812 394.309570312 c 2 - 408.58984375 32 l 1 - 432 32 l 2 -176.849609375 176 m 1 - 271.150390625 176 l 1 - 224 305.490234375 l 1 - 176.849609375 176 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" f o n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" F o n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" F O N T -EndChar - -StartChar: bold -Encoding: 61490 61490 106 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -333.490234375 210 m 1 - 367.9296875 182.459960938 389.059570312 138.849609375 384.3203125 90.400390625 c 0 - 377.459960938 19.75 314.120117188 -32 243.3203125 -32 c 2 - 34 -32 l 2 - 25.16796875 -32 18 -24.83203125 18 -16 c 2 - 18 32 l 2 - 18 40.83203125 25.16796875 48 34 48 c 2 - 65.8701171875 48 l 1 - 65.8701171875 336 l 1 - 34 336 l 2 - 25.16796875 336 18 343.16796875 18 352 c 2 - 18 400 l 2 - 18 408.83203125 25.16796875 416 34 416 c 2 - 233.419921875 416 l 2 - 308 416 367.870117188 351.509765625 360.490234375 275.209960938 c 0 - 358.4765625 254.959960938 346.380859375 225.74609375 333.490234375 210 c 1 -145.66015625 336 m 1 - 145.66015625 240 l 1 - 233.419921875 240 l 2 - 259.916015625 240 281.419921875 261.50390625 281.419921875 288 c 0 - 281.419921875 314.49609375 259.916015625 336 233.419921875 336 c 2 - 145.66015625 336 l 1 -233.419921875 48 m 2 - 264.33203125 48 289.419921875 73.087890625 289.419921875 104 c 0 - 289.419921875 134.912109375 264.33203125 160 233.419921875 160 c 2 - 145.66015625 160 l 1 - 145.66015625 48 l 1 - 233.419921875 48 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" b o l d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B o l d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B O L D -EndChar - -StartChar: italic -Encoding: 61491 61491 107 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320 400 m 2 - 320 368 l 2 - 320 359.16796875 312.83203125 352 304 352 c 2 - 241.240234375 352 l 1 - 161.240234375 32 l 1 - 208 32 l 2 - 216.83203125 32 224 24.83203125 224 16 c 2 - 224 -16 l 2 - 224 -24.83203125 216.83203125 -32 208 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 78.759765625 32 l 1 - 158.759765625 352 l 1 - 112 352 l 2 - 103.16796875 352 96 359.16796875 96 368 c 2 - 96 400 l 2 - 96 408.83203125 103.16796875 416 112 416 c 2 - 304 416 l 2 - 312.83203125 416 320 408.83203125 320 400 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" i t a l i c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" I t a l i c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" I T A L I C -EndChar - -StartChar: text-height -Encoding: 61492 61492 108 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -304 416 m 2 - 312.83203125 416 320 408.83203125 320 400 c 2 - 320 304 l 2 - 320 295.16796875 312.83203125 288 304 288 c 2 - 272 288 l 2 - 263.16796875 288 256 295.16796875 256 304 c 2 - 256 336 l 1 - 200 336 l 1 - 200 32 l 1 - 240 32 l 2 - 248.83203125 32 256 24.83203125 256 16 c 2 - 256 -16 l 2 - 256 -24.83203125 248.83203125 -32 240 -32 c 2 - 80 -32 l 2 - 71.16796875 -32 64 -24.83203125 64 -16 c 2 - 64 16 l 2 - 64 24.83203125 71.16796875 32 80 32 c 2 - 120 32 l 1 - 120 336 l 1 - 64 336 l 1 - 64 304 l 2 - 64 295.16796875 56.83203125 288 48 288 c 2 - 16 288 l 2 - 7.16796875 288 0 295.16796875 0 304 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 304 416 l 2 -560 80 m 2 - 575.639648438 80 580.639648438 62 571.309570312 52.6904296875 c 2 - 491.309570312 -27.3095703125 l 2 - 488.723632812 -29.89453125 483.65625 -31.9921875 480 -31.9921875 c 0 - 476.34375 -31.9921875 471.276367188 -29.89453125 468.690429688 -27.3095703125 c 2 - 388.690429688 52.6904296875 l 2 - 378.6796875 62.6904296875 385.690429688 80 400 80 c 2 - 448 80 l 1 - 448 304 l 1 - 400 304 l 2 - 384.360351562 304 379.360351562 322 388.690429688 331.309570312 c 2 - 468.690429688 411.309570312 l 2 - 471.276367188 413.89453125 476.34375 415.9921875 480 415.9921875 c 0 - 483.65625 415.9921875 488.723632812 413.89453125 491.309570312 411.309570312 c 2 - 571.309570312 331.309570312 l 2 - 581.330078125 321.309570312 574.309570312 304 560 304 c 2 - 512 304 l 1 - 512 80 l 1 - 560 80 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" t e x t hyphen h e i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" T e x t hyphen h e i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" T E X T hyphen H E I G H T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" T e x t hyphen H e i g h t -EndChar - -StartChar: text-width -Encoding: 61493 61493 109 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 320 l 2 - 448 311.16796875 440.83203125 304 432 304 c 2 - 400 304 l 2 - 391.16796875 304 384 311.16796875 384 320 c 2 - 384 336 l 1 - 264 336 l 1 - 264 224 l 1 - 288 224 l 2 - 296.83203125 224 304 216.83203125 304 208 c 2 - 304 176 l 2 - 304 167.16796875 296.83203125 160 288 160 c 2 - 160 160 l 2 - 151.16796875 160 144 167.16796875 144 176 c 2 - 144 208 l 2 - 144 216.83203125 151.16796875 224 160 224 c 2 - 184 224 l 1 - 184 336 l 1 - 64 336 l 1 - 64 320 l 2 - 64 311.16796875 56.83203125 304 48 304 c 2 - 16 304 l 2 - 7.16796875 304 0 311.16796875 0 320 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 432 416 l 2 -363.309570312 155.309570312 m 2 - 443.309570312 75.3095703125 l 2 - 445.89453125 72.7236328125 447.9921875 67.65625 447.9921875 64 c 0 - 447.9921875 60.34375 445.89453125 55.2763671875 443.309570312 52.6904296875 c 2 - 363.309570312 -27.3095703125 l 2 - 353.309570312 -37.330078125 336 -30.3095703125 336 -16 c 2 - 336 32 l 1 - 112 32 l 1 - 112 -16 l 2 - 112 -31.6396484375 94 -36.6396484375 84.6904296875 -27.3095703125 c 2 - 4.6904296875 52.6904296875 l 2 - 2.10546875 55.2763671875 0.0078125 60.34375 0.0078125 64 c 0 - 0.0078125 67.65625 2.10546875 72.7236328125 4.6904296875 75.3095703125 c 2 - 84.6904296875 155.309570312 l 2 - 94.6904296875 165.3203125 112 158.309570312 112 144 c 2 - 112 96 l 1 - 336 96 l 1 - 336 144 l 2 - 336 159.639648438 354 164.639648438 363.309570312 155.309570312 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" t e x t hyphen w i d t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T e x t hyphen W i d t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T e x t hyphen w i d t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T E X T hyphen W I D T H -EndChar - -StartChar: align-left -Encoding: 61494 61494 110 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -12.830078125 96 m 2 - 5.7529296875 96 0 101.743164062 0 108.8203125 c 2 - 0 108.830078125 l 1 - 0 147.169921875 l 1 - 0 147.1796875 l 2 - 0 154.256835938 5.7431640625 160 12.8203125 160 c 2 - 12.830078125 160 l 1 - 275.169921875 160 l 1 - 275.1796875 160 l 2 - 282.256835938 160 288 154.256835938 288 147.1796875 c 2 - 288 147.169921875 l 1 - 288 108.830078125 l 1 - 288 108.8203125 l 2 - 288 101.743164062 282.256835938 96 275.1796875 96 c 2 - 275.169921875 96 l 1 - 12.830078125 96 l 2 -12.830078125 352 m 2 - 5.7529296875 352 0 357.743164062 0 364.8203125 c 2 - 0 364.830078125 l 1 - 0 403.169921875 l 1 - 0 403.1796875 l 2 - 0 410.256835938 5.7431640625 416 12.8203125 416 c 2 - 12.830078125 416 l 1 - 275.169921875 416 l 1 - 275.1796875 416 l 2 - 282.256835938 416 288 410.256835938 288 403.1796875 c 2 - 288 403.169921875 l 1 - 288 364.830078125 l 1 - 288 364.8203125 l 2 - 288 357.743164062 282.256835938 352 275.1796875 352 c 2 - 275.169921875 352 l 1 - 12.830078125 352 l 2 -432 288 m 2 - 440.83203125 288 448 280.83203125 448 272 c 2 - 448 240 l 2 - 448 231.16796875 440.83203125 224 432 224 c 2 - 16 224 l 2 - 7.16796875 224 0 231.16796875 0 240 c 2 - 0 272 l 2 - 0 280.83203125 7.16796875 288 16 288 c 2 - 432 288 l 2 -432 32 m 2 - 440.83203125 32 448 24.83203125 448 16 c 2 - 448 -16 l 2 - 448 -24.83203125 440.83203125 -32 432 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 432 32 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" a l i g n hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A l i g n hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A l i g n hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A L I G N hyphen L E F T -EndChar - -StartChar: align-center -Encoding: 61495 61495 111 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -432 288 m 2 - 440.83203125 288 448 280.83203125 448 272 c 2 - 448 240 l 2 - 448 231.16796875 440.83203125 224 432 224 c 2 - 16 224 l 2 - 7.16796875 224 0 231.16796875 0 240 c 2 - 0 272 l 2 - 0 280.83203125 7.16796875 288 16 288 c 2 - 432 288 l 2 -432 32 m 2 - 440.83203125 32 448 24.83203125 448 16 c 2 - 448 -16 l 2 - 448 -24.83203125 440.83203125 -32 432 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 432 32 l 2 -108.099609375 352 m 2 - 101.420898438 352 96 357.420898438 96 364.099609375 c 2 - 96 403.91015625 l 2 - 96 410.583984375 101.416015625 416 108.08984375 416 c 2 - 108.099609375 416 l 1 - 339.91015625 416 l 2 - 346.583984375 416 352 410.583984375 352 403.91015625 c 2 - 352 364.099609375 l 1 - 352 364.08984375 l 2 - 352 357.416015625 346.583984375 352 339.91015625 352 c 1 - 339.91015625 352 l 1 - 108.099609375 352 l 2 -339.91015625 96 m 1 - 108.099609375 96 l 2 - 101.420898438 96 96 101.420898438 96 108.099609375 c 2 - 96 147.91015625 l 2 - 96 154.583984375 101.416015625 160 108.08984375 160 c 2 - 108.099609375 160 l 1 - 339.91015625 160 l 2 - 346.583984375 160 352 154.583984375 352 147.91015625 c 2 - 352 108.099609375 l 1 - 352 108.08984375 l 2 - 352 101.416015625 346.583984375 96 339.91015625 96 c 1 - 339.91015625 96 l 1 -EndSplineSet -Validated: 524805 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" a l i g n hyphen c e n t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A l i g n hyphen C e n t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A l i g n hyphen c e n t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A L I G N hyphen C E N T E R -EndChar - -StartChar: align-right -Encoding: 61496 61496 112 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -16 224 m 2 - 7.16796875 224 0 231.16796875 0 240 c 2 - 0 272 l 2 - 0 280.83203125 7.16796875 288 16 288 c 2 - 432 288 l 2 - 440.83203125 288 448 280.83203125 448 272 c 2 - 448 240 l 2 - 448 231.16796875 440.83203125 224 432 224 c 2 - 16 224 l 2 -432 32 m 2 - 440.83203125 32 448 24.83203125 448 16 c 2 - 448 -16 l 2 - 448 -24.83203125 440.83203125 -32 432 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 432 32 l 2 -435.169921875 416 m 2 - 442.247070312 416 448 410.256835938 448 403.1796875 c 2 - 448 403.169921875 l 1 - 448 364.830078125 l 1 - 448 364.8203125 l 2 - 448 357.743164062 442.256835938 352 435.1796875 352 c 2 - 435.169921875 352 l 1 - 172.830078125 352 l 1 - 172.8203125 352 l 2 - 165.743164062 352 160 357.743164062 160 364.8203125 c 2 - 160 364.830078125 l 1 - 160 403.169921875 l 1 - 160 403.1796875 l 2 - 160 410.256835938 165.743164062 416 172.8203125 416 c 2 - 172.830078125 416 l 1 - 435.169921875 416 l 2 -435.169921875 160 m 2 - 442.247070312 160 448 154.256835938 448 147.1796875 c 2 - 448 147.169921875 l 1 - 448 108.830078125 l 1 - 448 108.8203125 l 2 - 448 101.743164062 442.256835938 96 435.1796875 96 c 2 - 435.169921875 96 l 1 - 172.830078125 96 l 1 - 172.8203125 96 l 2 - 165.743164062 96 160 101.743164062 160 108.8203125 c 2 - 160 108.830078125 l 1 - 160 147.169921875 l 1 - 160 147.1796875 l 2 - 160 154.256835938 165.743164062 160 172.8203125 160 c 2 - 172.830078125 160 l 1 - 435.169921875 160 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" a l i g n hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" A l i g n hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" A l i g n hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" A L I G N hyphen R I G H T -EndChar - -StartChar: align-justify -Encoding: 61497 61497 113 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -432 32 m 2 - 440.83203125 32 448 24.83203125 448 16 c 2 - 448 -16 l 2 - 448 -24.83203125 440.83203125 -32 432 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 432 32 l 2 -432 160 m 2 - 440.83203125 160 448 152.83203125 448 144 c 2 - 448 112 l 2 - 448 103.16796875 440.83203125 96 432 96 c 2 - 16 96 l 2 - 7.16796875 96 0 103.16796875 0 112 c 2 - 0 144 l 2 - 0 152.83203125 7.16796875 160 16 160 c 2 - 432 160 l 2 -432 288 m 2 - 440.83203125 288 448 280.83203125 448 272 c 2 - 448 240 l 2 - 448 231.16796875 440.83203125 224 432 224 c 2 - 16 224 l 2 - 7.16796875 224 0 231.16796875 0 240 c 2 - 0 272 l 2 - 0 280.83203125 7.16796875 288 16 288 c 2 - 432 288 l 2 -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 16 352 l 2 - 7.16796875 352 0 359.16796875 0 368 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 432 416 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" a l i g n hyphen j u s t i f y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" A l i g n hyphen J u s t i f y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" A l i g n hyphen j u s t i f y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" A L I G N hyphen J U S T I F Y -EndChar - -StartChar: list -Encoding: 61498 61498 114 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -80 80 m 2 - 88.83203125 80 96 72.83203125 96 64 c 2 - 96 0 l 2 - 96 -8.83203125 88.83203125 -16 80 -16 c 2 - 16 -16 l 2 - 7.16796875 -16 0 -8.83203125 0 0 c 2 - 0 64 l 2 - 0 72.83203125 7.16796875 80 16 80 c 2 - 80 80 l 2 -80 400 m 2 - 88.83203125 400 96 392.83203125 96 384 c 2 - 96 320 l 2 - 96 311.16796875 88.83203125 304 80 304 c 2 - 16 304 l 2 - 7.16796875 304 0 311.16796875 0 320 c 2 - 0 384 l 2 - 0 392.83203125 7.16796875 400 16 400 c 2 - 80 400 l 2 -80 240 m 2 - 88.83203125 240 96 232.83203125 96 224 c 2 - 96 160 l 2 - 96 151.16796875 88.83203125 144 80 144 c 2 - 16 144 l 2 - 7.16796875 144 0 151.16796875 0 160 c 2 - 0 224 l 2 - 0 232.83203125 7.16796875 240 16 240 c 2 - 80 240 l 2 -496 64 m 2 - 504.83203125 64 512 56.83203125 512 48 c 2 - 512 16 l 2 - 512 7.16796875 504.83203125 0 496 0 c 2 - 176 0 l 2 - 167.16796875 0 160 7.16796875 160 16 c 2 - 160 48 l 2 - 160 56.83203125 167.16796875 64 176 64 c 2 - 496 64 l 2 -496 384 m 2 - 504.83203125 384 512 376.83203125 512 368 c 2 - 512 336 l 2 - 512 327.16796875 504.83203125 320 496 320 c 2 - 176 320 l 2 - 167.16796875 320 160 327.16796875 160 336 c 2 - 160 368 l 2 - 160 376.83203125 167.16796875 384 176 384 c 2 - 496 384 l 2 -496 224 m 2 - 504.83203125 224 512 216.83203125 512 208 c 2 - 512 176 l 2 - 512 167.16796875 504.83203125 160 496 160 c 2 - 176 160 l 2 - 167.16796875 160 160 167.16796875 160 176 c 2 - 160 208 l 2 - 160 216.83203125 167.16796875 224 176 224 c 2 - 496 224 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" l i s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" L I S T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" L i s t -EndChar - -StartChar: outdent -Encoding: 61499 61499 115 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -100.690429688 84.7099609375 m 2 - 4.6904296875 180.690429688 l 2 - 2.10546875 183.276367188 0.0078125 188.34375 0.0078125 192 c 0 - 0.0078125 195.65625 2.10546875 200.723632812 4.6904296875 203.309570312 c 2 - 100.690429688 299.309570312 l 2 - 110.669921875 309.309570312 128 302.3203125 128 288 c 2 - 128 96.01953125 l 2 - 128 81.7802734375 110.690429688 74.7099609375 100.690429688 84.7099609375 c 2 -432 32 m 2 - 440.83203125 32 448 24.83203125 448 16 c 2 - 448 -16 l 2 - 448 -24.83203125 440.83203125 -32 432 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 432 32 l 2 -435.169921875 160 m 2 - 442.247070312 160 448 154.256835938 448 147.1796875 c 2 - 448 147.169921875 l 1 - 448 108.830078125 l 1 - 448 108.8203125 l 2 - 448 101.743164062 442.256835938 96 435.1796875 96 c 2 - 435.169921875 96 l 1 - 204.830078125 96 l 1 - 204.8203125 96 l 2 - 197.743164062 96 192 101.743164062 192 108.8203125 c 2 - 192 108.830078125 l 1 - 192 147.169921875 l 1 - 192 147.1796875 l 2 - 192 154.256835938 197.743164062 160 204.8203125 160 c 2 - 204.830078125 160 l 1 - 435.169921875 160 l 2 -435.169921875 288 m 2 - 442.247070312 288 448 282.256835938 448 275.1796875 c 2 - 448 275.169921875 l 1 - 448 236.830078125 l 1 - 448 236.8203125 l 2 - 448 229.743164062 442.256835938 224 435.1796875 224 c 2 - 435.169921875 224 l 1 - 204.830078125 224 l 1 - 204.8203125 224 l 2 - 197.743164062 224 192 229.743164062 192 236.8203125 c 2 - 192 236.830078125 l 1 - 192 275.169921875 l 1 - 192 275.1796875 l 2 - 192 282.256835938 197.743164062 288 204.8203125 288 c 2 - 204.830078125 288 l 1 - 435.169921875 288 l 2 -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 16 352 l 2 - 7.16796875 352 0 359.16796875 0 368 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 432 416 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" o u t d e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" O u t d e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" O U T D E N T -EndChar - -StartChar: indent -Encoding: 61500 61500 116 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -27.3095703125 84.7001953125 m 2 - 17.330078125 74.7001953125 0 81.6904296875 0 96 c 2 - 0 288 l 2 - 0 302.219726562 17.26953125 309.33984375 27.3095703125 299.3203125 c 2 - 123.309570312 203.3203125 l 2 - 125.89453125 200.733398438 127.9921875 195.666992188 127.9921875 192.009765625 c 0 - 127.9921875 188.353515625 125.89453125 183.286132812 123.309570312 180.700195312 c 2 - 27.3095703125 84.7001953125 l 2 -432 32 m 2 - 440.83203125 32 448 24.83203125 448 16 c 2 - 448 -16 l 2 - 448 -24.83203125 440.83203125 -32 432 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 432 32 l 2 -435.169921875 160 m 2 - 442.247070312 160 448 154.256835938 448 147.1796875 c 2 - 448 147.169921875 l 1 - 448 108.830078125 l 1 - 448 108.8203125 l 2 - 448 101.743164062 442.256835938 96 435.1796875 96 c 2 - 435.169921875 96 l 1 - 204.830078125 96 l 1 - 204.8203125 96 l 2 - 197.743164062 96 192 101.743164062 192 108.8203125 c 2 - 192 108.830078125 l 1 - 192 147.169921875 l 1 - 192 147.1796875 l 2 - 192 154.256835938 197.743164062 160 204.8203125 160 c 2 - 204.830078125 160 l 1 - 435.169921875 160 l 2 -435.169921875 288 m 2 - 442.247070312 288 448 282.256835938 448 275.1796875 c 2 - 448 275.169921875 l 1 - 448 236.830078125 l 1 - 448 236.8203125 l 2 - 448 229.743164062 442.256835938 224 435.1796875 224 c 2 - 435.169921875 224 l 1 - 204.830078125 224 l 1 - 204.8203125 224 l 2 - 197.743164062 224 192 229.743164062 192 236.8203125 c 2 - 192 236.830078125 l 1 - 192 275.169921875 l 1 - 192 275.1796875 l 2 - 192 282.256835938 197.743164062 288 204.8203125 288 c 2 - 204.830078125 288 l 1 - 435.169921875 288 l 2 -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 16 352 l 2 - 7.16796875 352 0 359.16796875 0 368 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 432 416 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" i n d e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" I N D E N T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" I n d e n t -EndChar - -StartChar: video -Encoding: 61501 61501 117 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336.200195312 384 m 2 - 362.599609375 384 384 362.599609375 384 336.200195312 c 2 - 384 47.7998046875 l 2 - 384 21.400390625 362.599609375 0 336.200195312 0 c 2 - 47.7998046875 0 l 2 - 21.400390625 0 0 21.400390625 0 47.7998046875 c 2 - 0 336.200195312 l 2 - 0 362.599609375 21.400390625 384 47.7998046875 384 c 2 - 336.200195312 384 l 2 -525.599609375 346.299804688 m 2 - 546.900390625 360.900390625 576 345.900390625 576 320.5 c 2 - 576 63.599609375 l 2 - 576 38.099609375 546.799804688 23.2001953125 525.599609375 37.7998046875 c 2 - 416 113.299804688 l 1 - 416 270.700195312 l 1 - 525.599609375 346.299804688 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" v i d e o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" V i d e o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" V I D E O -EndChar - -StartChar: image -Encoding: 61502 61502 118 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 0 m 2 - 48 0 l 2 - 21.490234375 0 0 21.490234375 0 48 c 2 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 464 384 l 2 - 490.509765625 384 512 362.509765625 512 336 c 2 - 512 48 l 2 - 512 21.490234375 490.509765625 0 464 0 c 2 -112 328 m 0 - 81.072265625 328 56 302.927734375 56 272 c 0 - 56 241.072265625 81.072265625 216 112 216 c 0 - 142.927734375 216 168 241.072265625 168 272 c 0 - 168 302.927734375 142.927734375 328 112 328 c 0 -64 64 m 1 - 448 64 l 1 - 448 176 l 1 - 360.485351562 263.514648438 l 2 - 355.798828125 268.201171875 348.201171875 268.201171875 343.513671875 263.514648438 c 2 - 208 128 l 1 - 152.485351562 183.514648438 l 2 - 147.798828125 188.201171875 140.201171875 188.201171875 135.513671875 183.514648438 c 2 - 64 112 l 1 - 64 64 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" i m a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" I M A G E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" I m a g e -EndChar - -StartChar: map-marker -Encoding: 61505 61505 119 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -172.267578125 -53.669921875 m 0 - 26.9697265625 156.96875 0 178.586914062 0 256 c 0 - 0 362.0390625 85.9609375 448 192 448 c 0 - 298.0390625 448 384 362.0390625 384 256 c 0 - 384 178.586914062 357.030273438 156.96875 211.732421875 -53.669921875 c 0 - 202.197265625 -67.4443359375 181.801757812 -67.443359375 172.267578125 -53.669921875 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" m a p hyphen m a r k e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" M a p hyphen M a r k e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" M a p hyphen m a r k e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" M A P hyphen M A R K E R -EndChar - -StartChar: adjust -Encoding: 61506 61506 120 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -8 192 m 0 - 8 328.966796875 119.034179688 440 256 440 c 0 - 392.965820312 440 504 328.965820312 504 192 c 0 - 504 55.0341796875 392.966796875 -56 256 -56 c 0 - 119.033203125 -56 8 55.0341796875 8 192 c 0 -256 8 m 1 - 357.689453125 8 440 90.294921875 440 192 c 0 - 440 293.689453125 357.705078125 376 256 376 c 1 - 256 8 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" a d j u s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" A d j u s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" A D J U S T -EndChar - -StartChar: tint -Encoding: 61507 61507 121 -Width: 352 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -205.219726562 425.91015625 m 0 - 252.209960938 267.4296875 352 225.83984375 352 114.08984375 c 0 - 352 15.650390625 273.280273438 -64 176 -64 c 0 - 78.7197265625 -64 0 15.650390625 0 114.08984375 c 0 - 0 225.280273438 100.009765625 268.150390625 146.780273438 425.91015625 c 0 - 155.780273438 456.030273438 197.280273438 454.690429688 205.219726562 425.91015625 c 0 -176 0 m 0 - 184.83984375 0 192 7.16015625 192 16 c 0 - 192 24.83984375 184.83984375 32 176 32 c 0 - 131.889648438 32 96 67.8896484375 96 112 c 0 - 96 120.83984375 88.83984375 128 80 128 c 0 - 71.16015625 128 64 120.83984375 64 112 c 0 - 64 50.25 114.25 0 176 0 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" t i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" T i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" T I N T -EndChar - -StartChar: edit -Encoding: 61508 61508 122 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -402.599609375 364.799804688 m 2 - 492.799804688 274.599609375 l 2 - 496.599609375 270.799804688 496.599609375 264.599609375 492.799804688 260.799804688 c 2 - 274.400390625 42.400390625 l 1 - 181.599609375 32.099609375 l 2 - 169.200195312 30.7001953125 158.700195312 41.2001953125 160.099609375 53.599609375 c 2 - 170.400390625 146.400390625 l 1 - 388.799804688 364.799804688 l 2 - 392.599609375 368.599609375 398.799804688 368.599609375 402.599609375 364.799804688 c 2 -564.599609375 387.700195312 m 2 - 579.799804688 372.5 579.799804688 347.799804688 564.599609375 332.5 c 2 - 529.200195312 297.099609375 l 2 - 525.400390625 293.299804688 519.200195312 293.299804688 515.400390625 297.099609375 c 2 - 425.200195312 387.299804688 l 2 - 421.400390625 391.099609375 421.400390625 397.299804688 425.200195312 401.099609375 c 2 - 460.599609375 436.5 l 2 - 475.900390625 451.700195312 500.599609375 451.700195312 515.799804688 436.5 c 2 - 564.599609375 387.700195312 l 2 -384 101.799804688 m 2 - 384 105 385.299804688 108 387.5 110.299804688 c 2 - 427.5 150.299804688 l 2 - 435.099609375 157.799804688 448 152.5 448 141.799804688 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 333.799804688 384 l 2 - 344.5 384 349.900390625 371.099609375 342.299804688 363.5 c 2 - 302.299804688 323.5 l 2 - 300 321.299804688 297 320 293.799804688 320 c 2 - 64 320 l 1 - 64 0 l 1 - 384 0 l 1 - 384 101.799804688 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" e d i t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" E d i t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" E D I T -EndChar - -StartChar: step-backward -Encoding: 61512 61512 123 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -64 -20 m 2 - 64 404 l 2 - 64 410.599609375 69.400390625 416 76 416 c 2 - 124 416 l 2 - 130.599609375 416 136 410.599609375 136 404 c 2 - 136 227.599609375 l 1 - 331.5 408.599609375 l 2 - 352.099609375 425.700195312 384 411.400390625 384 384 c 2 - 384 0 l 2 - 384 -27.400390625 352.099609375 -41.7001953125 331.5 -24.599609375 c 2 - 136 155.299804688 l 1 - 136 -20 l 2 - 136 -26.599609375 130.599609375 -32 124 -32 c 2 - 76 -32 l 2 - 69.400390625 -32 64 -26.599609375 64 -20 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" s t e p hyphen b a c k w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S t e p hyphen B a c k w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S t e p hyphen b a c k w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S T E P hyphen B A C K W A R D -EndChar - -StartChar: fast-backward -Encoding: 61513 61513 124 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 12 m 2 - 0 372 l 2 - 0 378.599609375 5.400390625 384 12 384 c 2 - 52 384 l 2 - 58.599609375 384 64 378.599609375 64 372 c 2 - 64 220.099609375 l 1 - 235.5 376.599609375 l 2 - 256.099609375 393.700195312 288 379.400390625 288 352 c 2 - 288 220.099609375 l 1 - 459.5 376.599609375 l 2 - 480.099609375 393.700195312 512 379.400390625 512 352 c 2 - 512 32 l 2 - 512 4.599609375 480.099609375 -9.7001953125 459.5 7.400390625 c 2 - 288 162.700195312 l 1 - 288 32 l 2 - 288 4.599609375 256.099609375 -9.7001953125 235.5 7.400390625 c 2 - 64 162.700195312 l 1 - 64 12 l 2 - 64 5.400390625 58.599609375 0 52 0 c 2 - 12 0 l 2 - 5.400390625 0 0 5.400390625 0 12 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" f a s t hyphen b a c k w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" F a s t hyphen B a c k w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" F a s t hyphen b a c k w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" F A S T hyphen B A C K W A R D -EndChar - -StartChar: backward -Encoding: 61514 61514 125 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -11.5 167.400390625 m 2 - -3.7998046875 180.200195312 -3.7998046875 203.799804688 11.5 216.599609375 c 2 - 203.5 376.599609375 l 2 - 224.099609375 393.799804688 256 379.400390625 256 352 c 2 - 256 32 l 2 - 256 4.599609375 224.099609375 -9.7998046875 203.5 7.400390625 c 2 - 11.5 167.400390625 l 2 -267.5 167.400390625 m 2 - 252.200195312 180.200195312 252.200195312 203.799804688 267.5 216.599609375 c 2 - 459.5 376.599609375 l 2 - 480.099609375 393.799804688 512 379.400390625 512 352 c 2 - 512 32 l 2 - 512 4.599609375 480.099609375 -9.7998046875 459.5 7.400390625 c 2 - 267.5 167.400390625 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" b a c k w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" B a c k w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" B A C K W A R D -EndChar - -StartChar: play -Encoding: 61515 61515 126 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -424.400390625 233.299804688 m 2 - 455.900390625 214.799804688 455.799804688 169.200195312 424.400390625 150.700195312 c 2 - 72.400390625 -57.2998046875 l 2 - 40.7001953125 -76.099609375 0 -53.5 0 -16 c 2 - 0 400.099609375 l 2 - 0 441.900390625 43.7998046875 458.299804688 72.400390625 441.400390625 c 2 - 424.400390625 233.299804688 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" p l a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" P l a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" P L A Y -EndChar - -StartChar: pause -Encoding: 61516 61516 127 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -144 -31 m 2 - 48 -31 l 2 - 21.5 -31 0 -9.5 0 17 c 2 - 0 369 l 2 - 0 395.5 21.5 417 48 417 c 2 - 144 417 l 2 - 170.5 417 192 395.5 192 369 c 2 - 192 17 l 2 - 192 -9.5 170.5 -31 144 -31 c 2 -448 17 m 2 - 448 -9.5 426.5 -31 400 -31 c 2 - 304 -31 l 2 - 277.5 -31 256 -9.5 256 17 c 2 - 256 369 l 2 - 256 395.5 277.5 417 304 417 c 2 - 400 417 l 2 - 426.5 417 448 395.5 448 369 c 2 - 448 17 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" p a u s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" P A U S E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" P a u s e -EndChar - -StartChar: stop -Encoding: 61517 61517 128 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.5 416 448 394.5 448 368 c 2 - 448 16 l 2 - 448 -10.5 426.5 -32 400 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 400 416 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" s t o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S t o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S T O P -EndChar - -StartChar: forward -Encoding: 61518 61518 129 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -500.5 216.599609375 m 2 - 515.799804688 203.799804688 515.799804688 180.200195312 500.5 167.400390625 c 2 - 308.5 7.400390625 l 2 - 287.900390625 -9.7998046875 256 4.599609375 256 32 c 2 - 256 352 l 2 - 256 379.400390625 287.900390625 393.700195312 308.5 376.599609375 c 2 - 500.5 216.599609375 l 2 -244.5 216.599609375 m 2 - 259.799804688 203.799804688 259.799804688 180.200195312 244.5 167.400390625 c 2 - 52.5 7.400390625 l 2 - 31.900390625 -9.7998046875 0 4.599609375 0 32 c 2 - 0 352 l 2 - 0 379.400390625 31.900390625 393.700195312 52.5 376.599609375 c 2 - 244.5 216.599609375 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" f o r w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" F o r w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" F O R W A R D -EndChar - -StartChar: fast-forward -Encoding: 61520 61520 130 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 372 m 2 - 512 12 l 2 - 512 5.400390625 506.599609375 0 500 0 c 2 - 460 0 l 2 - 453.400390625 0 448 5.400390625 448 12 c 2 - 448 163.900390625 l 1 - 276.5 7.400390625 l 2 - 255.900390625 -9.7998046875 224 4.599609375 224 32 c 2 - 224 163.900390625 l 1 - 52.5 7.400390625 l 2 - 31.900390625 -9.7998046875 0 4.599609375 0 32 c 2 - 0 352 l 2 - 0 379.400390625 31.900390625 393.700195312 52.5 376.599609375 c 2 - 224 221.200195312 l 1 - 224 352 l 2 - 224 379.400390625 255.900390625 393.700195312 276.5 376.599609375 c 2 - 448 221.200195312 l 1 - 448 372 l 2 - 448 378.599609375 453.400390625 384 460 384 c 2 - 500 384 l 2 - 506.599609375 384 512 378.599609375 512 372 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" f a s t hyphen f o r w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" F a s t hyphen F o r w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" F a s t hyphen f o r w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" F A S T hyphen F O R W A R D -EndChar - -StartChar: step-forward -Encoding: 61521 61521 131 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 404 m 2 - 384 -20 l 2 - 384 -26.599609375 378.599609375 -32 372 -32 c 2 - 324 -32 l 2 - 317.400390625 -32 312 -26.599609375 312 -20 c 2 - 312 156.400390625 l 1 - 116.5 -24.599609375 l 2 - 95.900390625 -41.7001953125 64 -27.400390625 64 0 c 2 - 64 384 l 2 - 64 411.400390625 95.900390625 425.700195312 116.5 408.599609375 c 2 - 312 228.700195312 l 1 - 312 404 l 2 - 312 410.599609375 317.400390625 416 324 416 c 2 - 372 416 l 2 - 378.599609375 416 384 410.599609375 384 404 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" s t e p hyphen f o r w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" S t e p hyphen F o r w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" S t e p hyphen f o r w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" S T E P hyphen F O R W A R D -EndChar - -StartChar: eject -Encoding: 61522 61522 132 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 64 m 2 - 448 0 l 2 - 448 -17.6728515625 433.672851562 -32 416 -32 c 2 - 32 -32 l 2 - 14.3271484375 -32 0 -17.6728515625 0 0 c 2 - 0 64 l 2 - 0 81.6728515625 14.3271484375 96 32 96 c 2 - 416 96 l 2 - 433.672851562 96 448 81.6728515625 448 64 c 2 -48.052734375 128 m 2 - 6.32421875 128 -15.474609375 177.732421875 12.669921875 208.434570312 c 2 - 188.616210938 400.442382812 l 2 - 207.631835938 421.185546875 240.369140625 421.184570312 259.3828125 400.442382812 c 2 - 435.322265625 208.434570312 l 2 - 463.51953125 177.673828125 441.58984375 128 399.939453125 128 c 2 - 48.052734375 128 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" e j e c t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" E j e c t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" E J E C T -EndChar - -StartChar: chevron-left -Encoding: 61523 61523 133 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -34.51953125 208.969726562 m 2 - 228.870117188 403.309570312 l 2 - 238.240234375 412.6796875 253.440429688 412.6796875 262.809570312 403.309570312 c 2 - 285.48046875 380.639648438 l 2 - 294.83984375 371.280273438 294.849609375 356.120117188 285.51953125 346.740234375 c 2 - 131.490234375 192 l 1 - 285.509765625 37.25 l 2 - 294.849609375 27.8701171875 294.830078125 12.7099609375 285.469726562 3.349609375 c 2 - 262.799804688 -19.3203125 l 2 - 253.4296875 -28.6904296875 238.23046875 -28.6904296875 228.860351562 -19.3203125 c 2 - 34.51953125 175.030273438 l 2 - 25.150390625 184.400390625 25.150390625 199.599609375 34.51953125 208.969726562 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" c h e v r o n hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" C h e v r o n hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" C h e v r o n hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" C H E V R O N hyphen L E F T -EndChar - -StartChar: chevron-right -Encoding: 61524 61524 134 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -285.475585938 175.029296875 m 2 - 91.1318359375 -19.314453125 l 2 - 81.7587890625 -28.6865234375 66.5634765625 -28.6865234375 57.19140625 -19.314453125 c 2 - 34.5244140625 3.3525390625 l 2 - 25.1669921875 12.7099609375 25.1494140625 27.875 34.484375 37.25390625 c 2 - 188.504882812 192 l 1 - 34.484375 346.745117188 l 2 - 25.1494140625 356.124023438 25.1669921875 371.2890625 34.5244140625 380.646484375 c 2 - 57.19140625 403.313476562 l 2 - 66.564453125 412.685546875 81.759765625 412.685546875 91.1318359375 403.313476562 c 2 - 285.474609375 208.969726562 l 2 - 294.84765625 199.59765625 294.84765625 184.40234375 285.475585938 175.029296875 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" c h e v r o n hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" C h e v r o n hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" C h e v r o n hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" C H E V R O N hyphen R I G H T -EndChar - -StartChar: plus-circle -Encoding: 61525 61525 135 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -400 164 m 2 - 400 220 l 2 - 400 226.599609375 394.599609375 232 388 232 c 2 - 296 232 l 1 - 296 324 l 2 - 296 330.599609375 290.599609375 336 284 336 c 2 - 228 336 l 2 - 221.400390625 336 216 330.599609375 216 324 c 2 - 216 232 l 1 - 124 232 l 2 - 117.400390625 232 112 226.599609375 112 220 c 2 - 112 164 l 2 - 112 157.400390625 117.400390625 152 124 152 c 2 - 216 152 l 1 - 216 60 l 2 - 216 53.400390625 221.400390625 48 228 48 c 2 - 284 48 l 2 - 290.599609375 48 296 53.400390625 296 60 c 2 - 296 152 l 1 - 388 152 l 2 - 394.599609375 152 400 157.400390625 400 164 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" p l u s hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P l u s hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P l u s hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P L U S hyphen C I R C L E -EndChar - -StartChar: minus-circle -Encoding: 61526 61526 136 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -124 152 m 2 - 388 152 l 2 - 394.599609375 152 400 157.400390625 400 164 c 2 - 400 220 l 2 - 400 226.599609375 394.599609375 232 388 232 c 2 - 124 232 l 2 - 117.400390625 232 112 226.599609375 112 220 c 2 - 112 164 l 2 - 112 157.400390625 117.400390625 152 124 152 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" m i n u s hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" M i n u s hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" M i n u s hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" M I N U S hyphen C I R C L E -EndChar - -StartChar: times-circle -Encoding: 61527 61527 137 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -377.599609375 126.900390625 m 2 - 312 192 l 1 - 377.700195312 257 l 2 - 382.400390625 261.700195312 382.400390625 269.299804688 377.700195312 274 c 2 - 338.099609375 313.599609375 l 2 - 333.400390625 318.299804688 325.799804688 318.299804688 321.099609375 313.599609375 c 2 - 256 248 l 1 - 191 313.700195312 l 2 - 186.299804688 318.400390625 178.700195312 318.400390625 174 313.700195312 c 2 - 134.400390625 274.099609375 l 2 - 129.700195312 269.400390625 129.700195312 261.799804688 134.400390625 257.099609375 c 2 - 200 192 l 1 - 134.400390625 127 l 2 - 129.700195312 122.299804688 129.700195312 114.700195312 134.400390625 110 c 2 - 173.900390625 70.400390625 l 2 - 178.599609375 65.7001953125 186.200195312 65.7001953125 190.900390625 70.400390625 c 2 - 256 136 l 1 - 321 70.400390625 l 2 - 325.700195312 65.7001953125 333.299804688 65.7001953125 338 70.400390625 c 2 - 377.599609375 109.900390625 l 2 - 382.299804688 114.599609375 382.299804688 122.200195312 377.599609375 126.900390625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" t i m e s hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" T i m e s hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" T i m e s hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" T I M E S hyphen C I R C L E -EndChar - -StartChar: check-circle -Encoding: 61528 61528 138 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504 192 m 0 - 504 55.033203125 392.966796875 -56 256 -56 c 0 - 119.033203125 -56 8 55.033203125 8 192 c 0 - 8 328.966796875 119.033203125 440 256 440 c 0 - 392.966796875 440 504 328.966796875 504 192 c 0 -227.314453125 60.685546875 m 2 - 411.314453125 244.685546875 l 2 - 417.561523438 250.93359375 417.561523438 261.065429688 411.314453125 267.313476562 c 2 - 388.686523438 289.940429688 l 2 - 382.439453125 296.189453125 372.307617188 296.189453125 366.05859375 289.940429688 c 2 - 216 139.881835938 l 1 - 145.94140625 209.94140625 l 2 - 139.693359375 216.189453125 129.561523438 216.189453125 123.313476562 209.94140625 c 2 - 100.685546875 187.314453125 l 2 - 94.4384765625 181.06640625 94.4384765625 170.934570312 100.685546875 164.686523438 c 2 - 204.685546875 60.6865234375 l 2 - 210.934570312 54.4384765625 221.065429688 54.4384765625 227.314453125 60.685546875 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" c h e c k hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C h e c k hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C h e c k hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C H E C K hyphen C I R C L E -EndChar - -StartChar: question-circle -Encoding: 61529 61529 139 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504 192 m 0 - 504 55.0029296875 392.95703125 -56 256 -56 c 0 - 119.04296875 -56 8 55.0029296875 8 192 c 0 - 8 328.916992188 119.04296875 440 256 440 c 0 - 392.95703125 440 504 328.916992188 504 192 c 0 -262.655273438 358 m 0 - 208.158203125 358 173.400390625 335.04296875 146.106445312 294.2421875 c 0 - 142.5703125 288.956054688 143.752929688 281.827148438 148.821289062 277.984375 c 2 - 183.51953125 251.673828125 l 2 - 188.724609375 247.7265625 196.140625 248.666015625 200.184570312 253.795898438 c 0 - 218.048828125 276.454101562 230.297851562 289.592773438 257.48828125 289.592773438 c 0 - 277.916992188 289.592773438 303.185546875 276.4453125 303.185546875 256.634765625 c 0 - 303.185546875 241.659179688 290.823242188 233.967773438 270.65234375 222.659179688 c 0 - 247.127929688 209.471679688 216 193.05859375 216 152 c 2 - 216 148 l 2 - 216 141.373046875 221.373046875 136 228 136 c 2 - 284 136 l 2 - 290.626953125 136 296 141.373046875 296 148 c 2 - 296 149.333007812 l 2 - 296 177.794921875 379.185546875 178.98046875 379.185546875 256 c 0 - 379.185546875 314.001953125 319.021484375 358 262.655273438 358 c 0 -256 110 m 0 - 230.634765625 110 210 89.365234375 210 64 c 0 - 210 38.6357421875 230.634765625 18 256 18 c 0 - 281.365234375 18 302 38.6357421875 302 64 c 0 - 302 89.365234375 281.365234375 110 256 110 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" q u e s t i o n hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" Q u e s t i o n hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" Q u e s t i o n hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" Q U E S T I O N hyphen C I R C L E -EndChar - -StartChar: info-circle -Encoding: 61530 61530 140 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 392.95703125 440 504 328.916992188 504 192 c 0 - 504 55.0029296875 392.95703125 -56 256 -56 c 0 - 119.04296875 -56 8 55.0029296875 8 192 c 0 - 8 328.916992188 119.04296875 440 256 440 c 0 -256 330 m 0 - 232.803710938 330 214 311.196289062 214 288 c 0 - 214 264.803710938 232.803710938 246 256 246 c 0 - 279.196289062 246 298 264.803710938 298 288 c 0 - 298 311.196289062 279.196289062 330 256 330 c 0 -312 76 m 2 - 312 100 l 2 - 312 106.626953125 306.626953125 112 300 112 c 2 - 288 112 l 1 - 288 212 l 2 - 288 218.626953125 282.626953125 224 276 224 c 2 - 212 224 l 2 - 205.373046875 224 200 218.626953125 200 212 c 2 - 200 188 l 2 - 200 181.373046875 205.373046875 176 212 176 c 2 - 224 176 l 1 - 224 112 l 1 - 212 112 l 2 - 205.373046875 112 200 106.626953125 200 100 c 2 - 200 76 l 2 - 200 69.373046875 205.373046875 64 212 64 c 2 - 300 64 l 2 - 306.626953125 64 312 69.373046875 312 76 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" i n f o hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" I n f o hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" I n f o hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" I N F O hyphen C I R C L E -EndChar - -StartChar: crosshairs -Encoding: 61531 61531 141 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -500 224 m 2 - 506.626953125 224 512 218.626953125 512 212 c 2 - 512 172 l 2 - 512 165.373046875 506.626953125 160 500 160 c 2 - 469.635742188 160 l 1 - 455.723632812 66.3251953125 381.674804688 -7.7236328125 288 -21.6357421875 c 1 - 288 -52 l 2 - 288 -58.626953125 282.626953125 -64 276 -64 c 2 - 236 -64 l 2 - 229.373046875 -64 224 -58.626953125 224 -52 c 2 - 224 -21.6357421875 l 1 - 130.325195312 -7.7236328125 56.2763671875 66.3251953125 42.3642578125 160 c 1 - 12 160 l 2 - 5.373046875 160 0 165.373046875 0 172 c 2 - 0 212 l 2 - 0 218.626953125 5.373046875 224 12 224 c 2 - 42.3642578125 224 l 1 - 56.2763671875 317.674804688 130.325195312 391.723632812 224 405.635742188 c 1 - 224 436 l 2 - 224 442.626953125 229.373046875 448 236 448 c 2 - 276 448 l 2 - 282.626953125 448 288 442.626953125 288 436 c 2 - 288 405.635742188 l 1 - 381.674804688 391.723632812 455.723632812 317.674804688 469.635742188 224 c 1 - 500 224 l 2 -288 43.3662109375 m 1 - 346.243164062 55.783203125 392.232421875 101.826171875 404.633789062 160 c 1 - 364 160 l 2 - 357.373046875 160 352 165.373046875 352 172 c 2 - 352 212 l 2 - 352 218.626953125 357.373046875 224 364 224 c 2 - 404.633789062 224 l 1 - 392.216796875 282.243164062 346.173828125 328.232421875 288 340.633789062 c 1 - 288 300 l 2 - 288 293.373046875 282.626953125 288 276 288 c 2 - 236 288 l 2 - 229.373046875 288 224 293.373046875 224 300 c 2 - 224 340.633789062 l 1 - 165.756835938 328.216796875 119.767578125 282.173828125 107.366210938 224 c 1 - 148 224 l 2 - 154.626953125 224 160 218.626953125 160 212 c 2 - 160 172 l 2 - 160 165.373046875 154.626953125 160 148 160 c 2 - 107.366210938 160 l 1 - 119.783203125 101.756835938 165.826171875 55.767578125 224 43.3662109375 c 1 - 224 84 l 2 - 224 90.626953125 229.373046875 96 236 96 c 2 - 276 96 l 2 - 282.626953125 96 288 90.626953125 288 84 c 2 - 288 43.3662109375 l 1 -288 192 m 0 - 288 174.327148438 273.672851562 160 256 160 c 0 - 238.327148438 160 224 174.327148438 224 192 c 0 - 224 209.672851562 238.327148438 224 256 224 c 0 - 273.672851562 224 288 209.672851562 288 192 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" c r o s s h a i r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C r o s s h a i r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C R O S S H A I R S -EndChar - -StartChar: ban -Encoding: 61534 61534 142 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 392.966796875 440 504 328.965820312 504 192 c 0 - 504 55.0341796875 392.965820312 -56 256 -56 c 0 - 119.034179688 -56 8 55.033203125 8 192 c 0 - 8 328.966796875 119.034179688 440 256 440 c 0 -386.108398438 322.108398438 m 0 - 320.696289062 387.518554688 220.673828125 392.139648438 150.469726562 342.784179688 c 1 - 406.78515625 86.470703125 l 1 - 456.108398438 156.626953125 451.555664062 256.66015625 386.108398438 322.108398438 c 0 -125.891601562 61.8916015625 m 0 - 191.303710938 -3.51953125 291.327148438 -8.1396484375 361.530273438 41.2158203125 c 1 - 105.21484375 297.529296875 l 1 - 55.8916015625 227.373046875 60.4443359375 127.33984375 125.891601562 61.8916015625 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" b a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" B a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" B A N -EndChar - -StartChar: arrow-left -Encoding: 61536 61536 143 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -257.5 2.900390625 m 2 - 235.299804688 -19.2998046875 l 2 - 225.900390625 -28.7001953125 210.700195312 -28.7001953125 201.400390625 -19.2998046875 c 2 - 7 175 l 2 - -2.400390625 184.400390625 -2.400390625 199.599609375 7 208.900390625 c 2 - 201.400390625 403.299804688 l 2 - 210.799804688 412.700195312 226 412.700195312 235.299804688 403.299804688 c 2 - 257.5 381.099609375 l 2 - 267 371.599609375 266.799804688 356.099609375 257.099609375 346.799804688 c 2 - 136.599609375 232 l 1 - 424 232 l 2 - 437.299804688 232 448 221.299804688 448 208 c 2 - 448 176 l 2 - 448 162.700195312 437.299804688 152 424 152 c 2 - 136.599609375 152 l 1 - 257.099609375 37.2001953125 l 2 - 266.900390625 27.900390625 267.099609375 12.400390625 257.5 2.900390625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" a r r o w hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A r r o w hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A r r o w hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A R R O W hyphen L E F T -EndChar - -StartChar: arrow-right -Encoding: 61537 61537 144 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -190.5 381.099609375 m 2 - 212.700195312 403.299804688 l 2 - 222.099609375 412.700195312 237.299804688 412.700195312 246.599609375 403.299804688 c 2 - 441 209 l 2 - 450.400390625 199.599609375 450.400390625 184.400390625 441 175.099609375 c 2 - 246.599609375 -19.2998046875 l 2 - 237.200195312 -28.7001953125 222 -28.7001953125 212.700195312 -19.2998046875 c 2 - 190.5 2.900390625 l 2 - 181 12.400390625 181.200195312 27.900390625 190.900390625 37.2001953125 c 2 - 311.400390625 152 l 1 - 24 152 l 2 - 10.7001953125 152 0 162.700195312 0 176 c 2 - 0 208 l 2 - 0 221.299804688 10.7001953125 232 24 232 c 2 - 311.400390625 232 l 1 - 190.900390625 346.799804688 l 2 - 181.099609375 356.099609375 180.900390625 371.599609375 190.5 381.099609375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" a r r o w hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" A r r o w hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" A r r o w hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" A R R O W hyphen R I G H T -EndChar - -StartChar: arrow-up -Encoding: 61538 61538 145 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -34.900390625 158.5 m 2 - 12.7001953125 180.700195312 l 2 - 3.2998046875 190.099609375 3.2998046875 205.299804688 12.7001953125 214.599609375 c 2 - 207 409 l 2 - 216.400390625 418.400390625 231.599609375 418.400390625 240.900390625 409 c 2 - 435.200195312 214.700195312 l 2 - 444.599609375 205.299804688 444.599609375 190.099609375 435.200195312 180.799804688 c 2 - 413 158.599609375 l 2 - 403.5 149.099609375 388 149.299804688 378.700195312 159 c 2 - 264 279.400390625 l 1 - 264 -8 l 2 - 264 -21.2998046875 253.299804688 -32 240 -32 c 2 - 208 -32 l 2 - 194.700195312 -32 184 -21.2998046875 184 -8 c 2 - 184 279.400390625 l 1 - 69.2001953125 158.900390625 l 2 - 59.900390625 149.099609375 44.400390625 148.900390625 34.900390625 158.5 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" a r r o w hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" A r r o w hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" A r r o w hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" A R R O W hyphen U P -EndChar - -StartChar: arrow-down -Encoding: 61539 61539 146 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -413.099609375 225.5 m 2 - 435.299804688 203.299804688 l 2 - 444.700195312 193.900390625 444.700195312 178.700195312 435.299804688 169.400390625 c 2 - 241 -25 l 2 - 231.599609375 -34.400390625 216.400390625 -34.400390625 207.099609375 -25 c 2 - 12.7001953125 169.400390625 l 2 - 3.2998046875 178.799804688 3.2998046875 194 12.7001953125 203.299804688 c 2 - 34.900390625 225.5 l 2 - 44.400390625 235 59.900390625 234.799804688 69.2001953125 225.099609375 c 2 - 184 104.599609375 l 1 - 184 392 l 2 - 184 405.299804688 194.700195312 416 208 416 c 2 - 240 416 l 2 - 253.299804688 416 264 405.299804688 264 392 c 2 - 264 104.599609375 l 1 - 378.799804688 225.099609375 l 2 - 388.099609375 234.900390625 403.599609375 235.099609375 413.099609375 225.5 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" a r r o w hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" A r r o w hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" A r r o w hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" A R R O W hyphen D O W N -EndChar - -StartChar: share -Encoding: 61540 61540 147 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -503.69140625 258.1640625 m 2 - 514.77734375 248.588867188 514.76171875 231.3984375 503.69140625 221.8359375 c 2 - 327.686523438 69.8359375 l 2 - 312.299804688 56.546875 288 67.2998046875 288 88 c 2 - 288 175.915039062 l 1 - 132.916992188 173.68359375 66.06640625 135.185546875 111.41015625 -9.8271484375 c 0 - 116.444335938 -25.9248046875 96.986328125 -38.388671875 83.3330078125 -28.4580078125 c 0 - 39.5810546875 3.365234375 0 64.2333984375 0 125.673828125 c 0 - 0 277.900390625 127.37109375 310.092773438 288 311.931640625 c 1 - 288 391.985351562 l 2 - 288 412.653320312 312.28125 423.454101562 327.686523438 410.149414062 c 2 - 503.69140625 258.1640625 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" s h a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" S h a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" S H A R E -EndChar - -StartChar: expand -Encoding: 61541 61541 148 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 268 m 2 - 0 392 l 2 - 0 405.299804688 10.7001953125 416 24 416 c 2 - 148 416 l 2 - 154.599609375 416 160 410.599609375 160 404 c 2 - 160 364 l 2 - 160 357.400390625 154.599609375 352 148 352 c 2 - 64 352 l 1 - 64 268 l 2 - 64 261.400390625 58.599609375 256 52 256 c 2 - 12 256 l 2 - 5.400390625 256 0 261.400390625 0 268 c 2 -288 404 m 2 - 288 410.599609375 293.400390625 416 300 416 c 2 - 424 416 l 2 - 437.299804688 416 448 405.299804688 448 392 c 2 - 448 268 l 2 - 448 261.400390625 442.599609375 256 436 256 c 2 - 396 256 l 2 - 389.400390625 256 384 261.400390625 384 268 c 2 - 384 352 l 1 - 300 352 l 2 - 293.400390625 352 288 357.400390625 288 364 c 2 - 288 404 l 2 -436 128 m 2 - 442.599609375 128 448 122.599609375 448 116 c 2 - 448 -8 l 2 - 448 -21.2998046875 437.299804688 -32 424 -32 c 2 - 300 -32 l 2 - 293.400390625 -32 288 -26.599609375 288 -20 c 2 - 288 20 l 2 - 288 26.599609375 293.400390625 32 300 32 c 2 - 384 32 l 1 - 384 116 l 2 - 384 122.599609375 389.400390625 128 396 128 c 2 - 436 128 l 2 -160 -20 m 2 - 160 -26.599609375 154.599609375 -32 148 -32 c 2 - 24 -32 l 2 - 10.7001953125 -32 0 -21.2998046875 0 -8 c 2 - 0 116 l 2 - 0 122.599609375 5.400390625 128 12 128 c 2 - 52 128 l 2 - 58.599609375 128 64 122.599609375 64 116 c 2 - 64 32 l 1 - 148 32 l 2 - 154.599609375 32 160 26.599609375 160 20 c 2 - 160 -20 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" e x p a n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" E x p a n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" E X P A N D -EndChar - -StartChar: compress -Encoding: 61542 61542 149 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -436 256 m 2 - 312 256 l 2 - 298.700195312 256 288 266.700195312 288 280 c 2 - 288 404 l 2 - 288 410.599609375 293.400390625 416 300 416 c 2 - 340 416 l 2 - 346.599609375 416 352 410.599609375 352 404 c 2 - 352 320 l 1 - 436 320 l 2 - 442.599609375 320 448 314.599609375 448 308 c 2 - 448 268 l 2 - 448 261.400390625 442.599609375 256 436 256 c 2 -160 280 m 2 - 160 266.700195312 149.299804688 256 136 256 c 2 - 12 256 l 2 - 5.400390625 256 0 261.400390625 0 268 c 2 - 0 308 l 2 - 0 314.599609375 5.400390625 320 12 320 c 2 - 96 320 l 1 - 96 404 l 2 - 96 410.599609375 101.400390625 416 108 416 c 2 - 148 416 l 2 - 154.599609375 416 160 410.599609375 160 404 c 2 - 160 280 l 2 -160 -20 m 2 - 160 -26.599609375 154.599609375 -32 148 -32 c 2 - 108 -32 l 2 - 101.400390625 -32 96 -26.599609375 96 -20 c 2 - 96 64 l 1 - 12 64 l 2 - 5.400390625 64 0 69.400390625 0 76 c 2 - 0 116 l 2 - 0 122.599609375 5.400390625 128 12 128 c 2 - 136 128 l 2 - 149.299804688 128 160 117.299804688 160 104 c 2 - 160 -20 l 2 -352 -20 m 2 - 352 -26.599609375 346.599609375 -32 340 -32 c 2 - 300 -32 l 2 - 293.400390625 -32 288 -26.599609375 288 -20 c 2 - 288 104 l 2 - 288 117.299804688 298.700195312 128 312 128 c 2 - 436 128 l 2 - 442.599609375 128 448 122.599609375 448 116 c 2 - 448 76 l 2 - 448 69.400390625 442.599609375 64 436 64 c 2 - 352 64 l 1 - 352 -20 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" c o m p r e s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" C o m p r e s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" C O M P R E S S -EndChar - -StartChar: plus -Encoding: 61543 61543 150 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 240 m 2 - 433.669921875 240 448 225.669921875 448 208 c 2 - 448 176 l 2 - 448 158.330078125 433.669921875 144 416 144 c 2 - 272 144 l 1 - 272 0 l 2 - 272 -17.669921875 257.669921875 -32 240 -32 c 2 - 208 -32 l 2 - 190.330078125 -32 176 -17.669921875 176 0 c 2 - 176 144 l 1 - 32 144 l 2 - 14.330078125 144 0 158.330078125 0 176 c 2 - 0 208 l 2 - 0 225.669921875 14.330078125 240 32 240 c 2 - 176 240 l 1 - 176 384 l 2 - 176 401.669921875 190.330078125 416 208 416 c 2 - 240 416 l 2 - 257.669921875 416 272 401.669921875 272 384 c 2 - 272 240 l 1 - 416 240 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" P l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" P L U S -EndChar - -StartChar: minus -Encoding: 61544 61544 151 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 240 m 2 - 433.669921875 240 448 225.669921875 448 208 c 2 - 448 176 l 2 - 448 158.330078125 433.669921875 144 416 144 c 2 - 32 144 l 2 - 14.330078125 144 0 158.330078125 0 176 c 2 - 0 208 l 2 - 0 225.669921875 14.330078125 240 32 240 c 2 - 416 240 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" m i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" M i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" M I N U S -EndChar - -StartChar: asterisk -Encoding: 61545 61545 152 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -478.209960938 113.907226562 m 2 - 490.004882812 107.4296875 494.169921875 92.5244140625 487.442382812 80.87109375 c 2 - 467.961914062 47.1298828125 l 2 - 461.234375 35.4765625 446.241210938 31.630859375 434.735351562 38.607421875 c 2 - 296 122.717773438 l 1 - 299.475585938 -39.486328125 l 2 - 299.763671875 -52.939453125 288.936523438 -64 275.481445312 -64 c 2 - 236.51953125 -64 l 2 - 223.064453125 -64 212.237304688 -52.939453125 212.525390625 -39.486328125 c 2 - 216 122.717773438 l 1 - 77.2646484375 38.6064453125 l 2 - 65.7587890625 31.6298828125 50.765625 35.4755859375 44.0380859375 47.12890625 c 2 - 24.5576171875 80.8701171875 l 2 - 17.8291015625 92.5234375 21.9951171875 107.4296875 33.7900390625 113.907226562 c 2 - 176 192 l 1 - 33.791015625 270.091796875 l 2 - 21.99609375 276.569335938 17.830078125 291.475585938 24.5576171875 303.12890625 c 2 - 44.0380859375 336.870117188 l 2 - 50.765625 348.5234375 65.7587890625 352.369140625 77.2646484375 345.392578125 c 2 - 216 261.282226562 l 1 - 212.526367188 423.486328125 l 2 - 212.237304688 436.939453125 223.064453125 448 236.51953125 448 c 2 - 275.48046875 448 l 2 - 288.936523438 448 299.762695312 436.939453125 299.474609375 423.486328125 c 2 - 296 261.282226562 l 1 - 434.735351562 345.393554688 l 2 - 446.2421875 352.370117188 461.234375 348.524414062 467.961914062 336.87109375 c 2 - 487.442382812 303.129882812 l 2 - 494.170898438 291.4765625 490.004882812 276.5703125 478.209960938 270.092773438 c 2 - 336 192 l 1 - 478.209960938 113.907226562 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" a s t e r i s k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" A s t e r i s k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" A S T E R I S K -EndChar - -StartChar: exclamation-circle -Encoding: 61546 61546 153 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504 192 m 0 - 504 55.0029296875 392.95703125 -56 256 -56 c 0 - 119.04296875 -56 8 55.0029296875 8 192 c 0 - 8 328.916992188 119.04296875 440 256 440 c 0 - 392.95703125 440 504 328.916992188 504 192 c 0 -256 142 m 0 - 230.594726562 142 210 121.405273438 210 96 c 0 - 210 70.5947265625 230.594726562 50 256 50 c 0 - 281.405273438 50 302 70.5947265625 302 96 c 0 - 302 121.405273438 281.405273438 142 256 142 c 0 -212.327148438 307.345703125 m 2 - 219.745117188 171.345703125 l 2 - 220.091796875 164.982421875 225.353515625 160 231.7265625 160 c 2 - 280.2734375 160 l 2 - 286.646484375 160 291.908203125 164.982421875 292.254882812 171.345703125 c 2 - 299.672851562 307.345703125 l 2 - 300.047851562 314.219726562 294.575195312 320 287.69140625 320 c 2 - 224.307617188 320 l 2 - 217.423828125 320 211.952148438 314.219726562 212.327148438 307.345703125 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" e x c l a m a t i o n hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" E x c l a m a t i o n hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" E x c l a m a t i o n hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" E X C L A M A T I O N hyphen C I R C L E -EndChar - -StartChar: gift -Encoding: 61547 61547 154 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 0 m 2 - 32 128 l 1 - 224 128 l 1 - 224 -32 l 1 - 64 -32 l 2 - 46.2998046875 -32 32 -17.7001953125 32 0 c 2 -288 -32 m 1 - 288 128 l 1 - 480 128 l 1 - 480 0 l 2 - 480 -17.7001953125 465.700195312 -32 448 -32 c 2 - 288 -32 l 1 -480 288 m 2 - 497.700195312 288 512 273.700195312 512 256 c 2 - 512 176 l 2 - 512 167.200195312 504.799804688 160 496 160 c 2 - 16 160 l 2 - 7.2001953125 160 0 167.200195312 0 176 c 2 - 0 256 l 2 - 0 273.700195312 14.2998046875 288 32 288 c 2 - 76.099609375 288 l 1 - 69.7998046875 300.099609375 66 313.5 66 328 c 0 - 66 376.5 105.5 416 154 416 c 0 - 195.599609375 416 222.5 394.700195312 257 347.700195312 c 1 - 291.5 394.700195312 318.400390625 416 360 416 c 0 - 408.5 416 448 376.5 448 328 c 0 - 448 313.5 444.099609375 300.099609375 437.900390625 288 c 1 - 480 288 l 2 -153.900390625 288 m 2 - 240 288 l 1 - 188.5 364.700195312 173.799804688 368 153.900390625 368 c 0 - 131.799804688 368 113.900390625 350.099609375 113.900390625 328 c 0 - 113.900390625 305.900390625 131.799804688 288 153.900390625 288 c 2 -360 288 m 2 - 382.099609375 288 400 305.900390625 400 328 c 0 - 400 350.099609375 382.099609375 368 360 368 c 0 - 339.599609375 368 325.299804688 364.5 273.900390625 288 c 1 - 360 288 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" g i f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" G i f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" G I F T -EndChar - -StartChar: leaf -Encoding: 61548 61548 155 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -546.200195312 438.299804688 m 0 - 565.200195312 395.900390625 576 343.900390625 576 293.700195312 c 0 - 576 121.299804688 465.5 -19.5 308.5 -30.900390625 c 0 - 227.599609375 -39.5 166 2.400390625 133.599609375 46.2998046875 c 1 - 82.599609375 3.599609375 63.2001953125 -40.7001953125 61.7001953125 -44.2998046875 c 0 - 54.900390625 -60.5 36.2998046875 -68.400390625 19.900390625 -61.599609375 c 0 - 3.599609375 -54.900390625 -4.2001953125 -36.2998046875 2.400390625 -20 c 0 - 26 37.900390625 132.599609375 192 384 192 c 0 - 392.799804688 192 400 199.200195312 400 208 c 0 - 400 216.799804688 392.799804688 224 384 224 c 0 - 253.400390625 224 161.299804688 185.200195312 97.5 139.5 c 1 - 96.7998046875 146.299804688 96 153 96 160 c 0 - 96 266 182 352 288 352 c 2 - 368 352 l 2 - 431.400390625 352 486.900390625 385.599609375 517.900390625 439.5 c 0 - 524.599609375 451.299804688 540.599609375 450.799804688 546.200195312 438.299804688 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" l e a f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" L E A F -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" L e a f -EndChar - -StartChar: fire -Encoding: 61549 61549 156 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -216 424.139648438 m 0 - 216 321 384 298.290039062 384 128 c 0 - 384 22.1298828125 297.870117188 -64 192 -64 c 0 - 86.1298828125 -64 0 22.1298828125 0 128 c 0 - 0 186.669921875 27.7998046875 234.83984375 54.5703125 262.959960938 c 0 - 69.5302734375 278.690429688 96 268.16015625 96 246.459960938 c 2 - 96 160.950195312 l 2 - 96 125.780273438 123.98046875 96.4599609375 159.150390625 96.009765625 c 0 - 194.889648438 95.5400390625 224 124.370117188 224 160 c 0 - 224 248 48 256.150390625 171.849609375 437.1796875 c 0 - 185.349609375 456.91015625 216 447.940429688 216 424.139648438 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" f i r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" F i r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" F I R E -EndChar - -StartChar: eye -Encoding: 61550 61550 157 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -572.51953125 206.599609375 m 0 - 574.440429688 202.80078125 575.999023438 196.26171875 575.999023438 192.004882812 c 0 - 575.999023438 187.748046875 574.440429688 181.208984375 572.51953125 177.41015625 c 0 - 518.3203125 71.6396484375 410.9296875 0 288 0 c 0 - 165.0703125 0 57.7099609375 71.58984375 3.48046875 177.400390625 c 0 - 1.5595703125 181.19921875 0.0009765625 187.73828125 0.0009765625 191.995117188 c 0 - 0.0009765625 196.251953125 1.5595703125 202.791015625 3.48046875 206.58984375 c 0 - 57.6796875 312.360351562 165.0703125 384 288 384 c 0 - 410.9296875 384 518.290039062 312.41015625 572.51953125 206.599609375 c 0 -288 48 m 2 - 288.0703125 48 l 2 - 367.51953125 48 432 112.48046875 432 191.9296875 c 2 - 432 192 l 2 - 432 271.48828125 367.48828125 336 288 336 c 0 - 208.51171875 336 144 271.48828125 144 192 c 0 - 144 112.51171875 208.51171875 48 288 48 c 2 -288 288 m 2 - 288.225585938 288 l 2 - 341.095703125 288 384.005859375 245.090820312 384.005859375 192.220703125 c 0 - 384.005859375 139.349609375 341.095703125 96.4404296875 288.225585938 96.4404296875 c 0 - 235.354492188 96.4404296875 192.4453125 139.349609375 192.4453125 192.220703125 c 0 - 192.4453125 199.268554688 193.943359375 210.5078125 195.790039062 217.309570312 c 1 - 202.7734375 212.170898438 215.479492188 208 224.150390625 208 c 0 - 250.563476562 208 272 229.436523438 272 255.849609375 c 0 - 272 264.520507812 267.829101562 277.2265625 262.690429688 284.209960938 c 1 - 269.534179688 286.202148438 280.873046875 287.900390625 288 288 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" e y e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" E y e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" E Y E -EndChar - -StartChar: eye-slash -Encoding: 61552 61552 158 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320 48 m 0 - 327.241210938 48.0673828125 338.889648438 49.236328125 346 50.6103515625 c 1 - 397.889648438 10.4599609375 l 1 - 372.870117188 4 346.91015625 0 320 0 c 0 - 197.0703125 0 89.7099609375 71.58984375 35.48046875 177.400390625 c 0 - 33.5595703125 181.19921875 32.0009765625 187.73828125 32.0009765625 191.995117188 c 0 - 32.0009765625 196.251953125 33.5595703125 202.791015625 35.48046875 206.58984375 c 0 - 45.7197265625 226.58984375 58.41015625 244.879882812 72.2001953125 262.1796875 c 1 - 177.099609375 181.110351562 l 1 - 182.75 106.709960938 244.150390625 48 320 48 c 0 -633.8203125 -10.099609375 m 2 - 637.233398438 -12.751953125 640.00390625 -18.412109375 640.00390625 -22.7353515625 c 0 - 640.00390625 -25.7626953125 638.497070312 -30.1591796875 636.639648438 -32.5498046875 c 2 - 617 -57.8203125 l 2 - 614.34765625 -61.232421875 608.688476562 -64.0029296875 604.366210938 -64.0029296875 c 0 - 601.334960938 -64.0029296875 596.932617188 -62.4912109375 594.540039062 -60.6298828125 c 2 - 6.1796875 394.099609375 l 2 - 2.76953125 396.751953125 0.001953125 402.41015625 0.001953125 406.73046875 c 0 - 0.001953125 409.759765625 1.5107421875 414.158203125 3.3701171875 416.549804688 c 2 - 23 441.8203125 l 2 - 25.65234375 445.232421875 31.3115234375 448.002929688 35.6337890625 448.002929688 c 0 - 38.6650390625 448.002929688 43.0673828125 446.491210938 45.4599609375 444.629882812 c 2 - 172.6796875 346.299804688 l 1 - 210.69140625 367.057617188 276.690429688 383.947265625 320 384 c 0 - 442.9296875 384 550.290039062 312.41015625 604.51953125 206.599609375 c 0 - 606.440429688 202.80078125 607.999023438 196.26171875 607.999023438 192.004882812 c 0 - 607.999023438 187.748046875 606.440429688 181.208984375 604.51953125 177.41015625 c 0 - 587.752929688 144.734375 551.353515625 99.0068359375 523.26953125 75.33984375 c 1 - 633.8203125 -10.099609375 l 2 -450.099609375 131.900390625 m 1 - 458.709960938 150.220703125 464 170.370117188 464 192 c 2 - 464 192.080078125 l 2 - 464 271.5234375 399.5234375 336 320.080078125 336 c 2 - 320 336 l 2 - 291.530273438 335.978515625 250.6953125 321.145507812 228.849609375 302.889648438 c 1 - 302.459960938 246 l 2 - 303.186523438 248.713867188 303.875976562 253.193359375 304 256 c 0 - 303.984375 264.62890625 299.813476562 277.266601562 294.690429688 284.209960938 c 1 - 301.870117188 286.306640625 313.768554688 288.0078125 321.248046875 288.0078125 c 0 - 373.555664062 288.0078125 416.0078125 245.555664062 416.0078125 193.248046875 c 0 - 416.0078125 192.903320312 416.004882812 192.344726562 416 192 c 0 - 415.887695312 183.565429688 413.557617188 170.250976562 410.799804688 162.280273438 c 1 - 450.099609375 131.900390625 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" e y e hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" E y e hyphen S l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" E y e hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" E Y E hyphen S L A S H -EndChar - -StartChar: exclamation-triangle -Encoding: 61553 61553 159 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -569.516601562 7.9873046875 m 2 - 587.974609375 -24.0068359375 564.805664062 -64 527.940429688 -64 c 2 - 48.0537109375 -64 l 2 - 11.1171875 -64 -11.9453125 -23.9453125 6.4765625 7.9873046875 c 2 - 246.422851562 424.014648438 l 2 - 264.889648438 456.024414062 311.142578125 455.965820312 329.577148438 424.014648438 c 2 - 569.516601562 7.9873046875 l 2 -288 94 m 0 - 262.594726562 94 242 73.4052734375 242 48 c 0 - 242 22.5947265625 262.594726562 2 288 2 c 0 - 313.405273438 2 334 22.5947265625 334 48 c 0 - 334 73.4052734375 313.405273438 94 288 94 c 0 -244.327148438 259.345703125 m 2 - 251.745117188 123.345703125 l 2 - 252.091796875 116.982421875 257.353515625 112 263.7265625 112 c 2 - 312.2734375 112 l 2 - 318.646484375 112 323.908203125 116.982421875 324.254882812 123.345703125 c 2 - 331.672851562 259.345703125 l 2 - 332.047851562 266.219726562 326.575195312 272 319.69140625 272 c 2 - 256.307617188 272 l 2 - 249.423828125 272 243.952148438 266.219726562 244.327148438 259.345703125 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" e x c l a m a t i o n hyphen t r i a n g l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" E x c l a m a t i o n hyphen T r i a n g l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" E x c l a m a t i o n hyphen t r i a n g l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" E X C L A M A T I O N hyphen T R I A N G L E -EndChar - -StartChar: plane -Encoding: 61554 61554 160 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480 256 m 2 - 515.349609375 256 576 227.349609375 576 192 c 0 - 576 156.650390625 515.349609375 128 480 128 c 2 - 365.709960938 128 l 1 - 260.599609375 -55.9404296875 l 2 - 257.75 -60.919921875 252.450195312 -64 246.709960938 -64 c 2 - 181.209960938 -64 l 2 - 170.580078125 -64 162.91015625 -53.8203125 165.830078125 -43.599609375 c 2 - 214.860351562 128 l 1 - 112 128 l 1 - 68.7998046875 70.400390625 l 2 - 65.7802734375 66.3701171875 61.0400390625 64 56 64 c 2 - 16.009765625 64 l 2 - 5.599609375 64 -2.0400390625 73.7802734375 0.490234375 83.8798828125 c 2 - 32 192 l 1 - 0.490234375 300.120117188 l 2 - -2.0400390625 310.219726562 5.599609375 320 16.009765625 320 c 2 - 56 320 l 2 - 61.0302734375 320 65.7802734375 317.629882812 68.7998046875 313.599609375 c 2 - 112 256 l 1 - 214.860351562 256 l 1 - 165.830078125 427.610351562 l 2 - 162.91015625 437.830078125 170.580078125 448 181.209960938 448 c 2 - 246.709960938 448 l 1 - 246.7109375 448 l 2 - 251.836914062 448 258.063476562 444.388671875 260.610351562 439.940429688 c 2 - 365.709960938 256 l 1 - 480 256 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" p l a n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" P l a n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" P L A N E -EndChar - -StartChar: calendar-alt -Encoding: 61555 61555 161 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 -16 m 2 - 0 256 l 1 - 448 256 l 1 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 -320 180 m 2 - 320 140 l 2 - 320 133.400390625 325.400390625 128 332 128 c 2 - 372 128 l 2 - 378.599609375 128 384 133.400390625 384 140 c 2 - 384 180 l 2 - 384 186.599609375 378.599609375 192 372 192 c 2 - 332 192 l 2 - 325.400390625 192 320 186.599609375 320 180 c 2 -320 52 m 2 - 320 12 l 2 - 320 5.400390625 325.400390625 0 332 0 c 2 - 372 0 l 2 - 378.599609375 0 384 5.400390625 384 12 c 2 - 384 52 l 2 - 384 58.599609375 378.599609375 64 372 64 c 2 - 332 64 l 2 - 325.400390625 64 320 58.599609375 320 52 c 2 -192 180 m 2 - 192 140 l 2 - 192 133.400390625 197.400390625 128 204 128 c 2 - 244 128 l 2 - 250.599609375 128 256 133.400390625 256 140 c 2 - 256 180 l 2 - 256 186.599609375 250.599609375 192 244 192 c 2 - 204 192 l 2 - 197.400390625 192 192 186.599609375 192 180 c 2 -192 52 m 2 - 192 12 l 2 - 192 5.400390625 197.400390625 0 204 0 c 2 - 244 0 l 2 - 250.599609375 0 256 5.400390625 256 12 c 2 - 256 52 l 2 - 256 58.599609375 250.599609375 64 244 64 c 2 - 204 64 l 2 - 197.400390625 64 192 58.599609375 192 52 c 2 -64 180 m 2 - 64 140 l 2 - 64 133.400390625 69.400390625 128 76 128 c 2 - 116 128 l 2 - 122.599609375 128 128 133.400390625 128 140 c 2 - 128 180 l 2 - 128 186.599609375 122.599609375 192 116 192 c 2 - 76 192 l 2 - 69.400390625 192 64 186.599609375 64 180 c 2 -64 52 m 2 - 64 12 l 2 - 64 5.400390625 69.400390625 0 76 0 c 2 - 116 0 l 2 - 122.599609375 0 128 5.400390625 128 12 c 2 - 128 52 l 2 - 128 58.599609375 122.599609375 64 116 64 c 2 - 76 64 l 2 - 69.400390625 64 64 58.599609375 64 52 c 2 -400 384 m 2 - 426.5 384 448 362.5 448 336 c 2 - 448 288 l 1 - 0 288 l 1 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 96 384 l 1 - 96 432 l 2 - 96 440.799804688 103.200195312 448 112 448 c 2 - 144 448 l 2 - 152.799804688 448 160 440.799804688 160 432 c 2 - 160 384 l 1 - 288 384 l 1 - 288 432 l 2 - 288 440.799804688 295.200195312 448 304 448 c 2 - 336 448 l 2 - 344.799804688 448 352 440.799804688 352 432 c 2 - 352 384 l 1 - 400 384 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" c a l e n d a r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C a l e n d a r hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C a l e n d a r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C A L E N D A R hyphen A L T -EndChar - -StartChar: random -Encoding: 61556 61556 162 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504.970703125 88.970703125 m 2 - 514.34375 79.59765625 514.34375 64.40234375 504.970703125 55.0302734375 c 2 - 424.970703125 -24.9541015625 l 2 - 409.9609375 -39.9638671875 384 -29.4443359375 384 -7.9833984375 c 2 - 384 32 l 1 - 325.21484375 32 l 2 - 322.336914062 32 318.40625 33.7080078125 316.442382812 35.8115234375 c 2 - 245.885742188 111.408203125 l 1 - 299.21875 168.55078125 l 1 - 352 112 l 1 - 384 112 l 1 - 384 151.981445312 l 2 - 384 173.418945312 409.943359375 183.978515625 424.970703125 168.952148438 c 2 - 504.970703125 88.970703125 l 2 -12 272 m 2 - 5.373046875 272 0 277.373046875 0 284 c 2 - 0 340 l 2 - 0 346.626953125 5.373046875 352 12 352 c 2 - 122.78515625 352 l 1 - 122.786132812 352 l 2 - 125.6640625 352 129.59375 350.291992188 131.557617188 348.188476562 c 2 - 202.114257812 272.591796875 l 1 - 148.78125 215.44921875 l 1 - 96 272 l 1 - 12 272 l 2 -384 272 m 1 - 352 272 l 1 - 131.557617188 35.8115234375 l 2 - 129.288085938 33.380859375 126.111328125 32 122.78515625 32 c 2 - 12 32 l 2 - 5.373046875 32 0 37.373046875 0 44 c 2 - 0 100 l 2 - 0 106.626953125 5.373046875 112 12 112 c 2 - 96 112 l 1 - 316.442382812 348.188476562 l 2 - 318.40625 350.291992188 322.336914062 352 325.21484375 352 c 2 - 384 352 l 1 - 384 391.981445312 l 2 - 384 413.41796875 409.943359375 423.978515625 424.970703125 408.951171875 c 2 - 504.970703125 328.969726562 l 2 - 514.34375 319.59765625 514.34375 304.40234375 504.970703125 295.029296875 c 2 - 424.970703125 215.044921875 l 2 - 409.9609375 200.036132812 384 210.555664062 384 232.015625 c 2 - 384 272 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" r a n d o m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" R a n d o m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" R A N D O M -EndChar - -StartChar: comment -Encoding: 61557 61557 163 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 416 m 0 - 397.400390625 416 512 322.900390625 512 208 c 0 - 512 93.099609375 397.400390625 0 256 0 c 0 - 217.599609375 0 181.299804688 7.099609375 148.599609375 19.400390625 c 1 - 124 -0.2001953125 74.2998046875 -32 8 -32 c 0 - 4.7998046875 -32 2 -30.2001953125 0.7001953125 -27.2001953125 c 0 - -0.599609375 -24.2001953125 0 -20.7998046875 2.2001953125 -18.5 c 0 - 2.7001953125 -18 44.5 26.900390625 57 77.2998046875 c 1 - 21.400390625 113 0 158.400390625 0 208 c 0 - 0 322.900390625 114.599609375 416 256 416 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" c o m m e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" C o m m e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" C O M M E N T -EndChar - -StartChar: magnet -Encoding: 61558 61558 164 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -164.0703125 299.900390625 m 1 - 12 299.900390625 l 2 - 5.3759765625 299.900390625 0 305.276367188 0 311.900390625 c 2 - 0 391.900390625 l 2 - 0 411.772460938 16.1279296875 427.900390625 36 427.900390625 c 2 - 140 427.900390625 l 2 - 159.872070312 427.900390625 176 411.772460938 176 391.900390625 c 2 - 176 311.900390625 l 2 - 176 311.869140625 176.000976562 311.8203125 176.000976562 311.790039062 c 0 - 176.000976562 305.2265625 170.673828125 299.900390625 164.110351562 299.900390625 c 2 - 164.0703125 299.900390625 l 1 -512 311.900390625 m 2 - 512 305.336914062 506.672851562 299.999023438 500.110351562 299.999023438 c 0 - 500.080078125 299.999023438 500.030273438 300 500 300 c 2 - 348 300 l 2 - 341.375976562 300 336 305.375976562 336 312 c 2 - 336 392 l 2 - 336 411.872070312 352.127929688 428 372 428 c 2 - 476 428 l 2 - 495.872070312 428 512 411.872070312 512 392 c 2 - 512 311.900390625 l 2 -348 267.900390625 m 2 - 499.849609375 267.900390625 l 1 - 499.850585938 267.900390625 l 2 - 506.474609375 267.900390625 511.850585938 262.524414062 511.850585938 255.900390625 c 0 - 511.850585938 255.872070312 511.850585938 255.827148438 511.849609375 255.799804688 c 0 - 511.650390625 235.599609375 511.25 215.400390625 511.849609375 202.599609375 c 0 - 511.849609375 51.900390625 377.4296875 -44.099609375 256.849609375 -44.099609375 c 0 - 136.26953125 -44.099609375 0.099609375 51.900390625 0.099609375 202.5 c 0 - 0.7001953125 215.5 0.2001953125 234.400390625 0.099609375 255.799804688 c 2 - 0.099609375 255.900390625 l 2 - 0.099609375 262.524414062 5.4755859375 267.900390625 12.099609375 267.900390625 c 1 - 12.099609375 267.900390625 l 1 - 164 267.900390625 l 2 - 170.624023438 267.900390625 176 262.524414062 176 255.900390625 c 2 - 176 203.900390625 l 2 - 176 76 336 75.7998046875 336 203.900390625 c 2 - 336 255.900390625 l 2 - 336 262.524414062 341.375976562 267.900390625 348 267.900390625 c 2 -EndSplineSet -Validated: 524325 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" m a g n e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" M A G N E T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" M a g n e t -EndChar - -StartChar: chevron-up -Encoding: 61559 61559 165 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -240.970703125 317.475585938 m 2 - 435.314453125 123.1328125 l 2 - 444.686523438 113.759765625 444.686523438 98.564453125 435.314453125 89.1923828125 c 2 - 412.647460938 66.525390625 l 2 - 403.290039062 57.16796875 388.125 57.150390625 378.74609375 66.4853515625 c 2 - 224 220.504882812 l 1 - 69.2548828125 66.484375 l 2 - 59.8759765625 57.1494140625 44.7109375 57.1669921875 35.353515625 66.5244140625 c 2 - 12.6865234375 89.19140625 l 2 - 3.314453125 98.564453125 3.314453125 113.759765625 12.6865234375 123.131835938 c 2 - 207.030273438 317.474609375 l 2 - 216.40234375 326.84765625 231.59765625 326.84765625 240.970703125 317.475585938 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" c h e v r o n hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" C h e v r o n hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" C h e v r o n hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" C H E V R O N hyphen U P -EndChar - -StartChar: chevron-down -Encoding: 61560 61560 166 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -207.029296875 66.5244140625 m 2 - 12.685546875 260.868164062 l 2 - 3.3134765625 270.241210938 3.3134765625 285.436523438 12.685546875 294.80859375 c 2 - 35.3525390625 317.475585938 l 2 - 44.7099609375 326.833007812 59.875 326.850585938 69.25390625 317.515625 c 2 - 224 163.495117188 l 1 - 378.745117188 317.515625 l 2 - 388.124023438 326.850585938 403.2890625 326.833007812 412.646484375 317.475585938 c 2 - 435.313476562 294.80859375 l 2 - 444.685546875 285.435546875 444.685546875 270.240234375 435.313476562 260.868164062 c 2 - 240.970703125 66.5244140625 l 2 - 231.59765625 57.15234375 216.40234375 57.15234375 207.029296875 66.5244140625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" c h e v r o n hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C h e v r o n hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C h e v r o n hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C H E V R O N hyphen D O W N -EndChar - -StartChar: retweet -Encoding: 61561 61561 167 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -629.657226562 104.40234375 m 2 - 528.970703125 3.7158203125 l 2 - 519.59765625 -5.65625 504.403320312 -5.65625 495.030273438 3.7158203125 c 2 - 394.342773438 104.40234375 l 2 - 384.969726562 113.775390625 384.969726562 128.970703125 394.342773438 138.342773438 c 2 - 405.166015625 149.166015625 l 2 - 414.727539062 158.727539062 430.298828125 158.505859375 439.584960938 148.673828125 c 2 - 480 105.881835938 l 1 - 480 288 l 1 - 292.451171875 288 l 2 - 286.963867188 288 279.360351562 291.149414062 275.48046875 295.029296875 c 2 - 259.48046875 311.029296875 l 2 - 244.361328125 326.149414062 255.069335938 352 276.451171875 352 c 2 - 520 352 l 2 - 533.254882812 352 544 341.254882812 544 328 c 2 - 544 105.881835938 l 1 - 584.416015625 148.673828125 l 2 - 593.701171875 158.504882812 609.272460938 158.727539062 618.834960938 149.166015625 c 2 - 629.658203125 138.342773438 l 2 - 639.030273438 128.970703125 639.030273438 113.774414062 629.657226562 104.40234375 c 2 -364.518554688 88.970703125 m 2 - 380.51953125 72.970703125 l 2 - 395.638671875 57.8505859375 384.930664062 32 363.548828125 32 c 2 - 120 32 l 2 - 106.745117188 32 96 42.7451171875 96 56 c 2 - 96 278.119140625 l 1 - 55.583984375 235.326171875 l 2 - 46.2978515625 225.495117188 30.7265625 225.2734375 21.1650390625 234.834960938 c 2 - 10.3427734375 245.657226562 l 2 - 0.9697265625 255.029296875 0.9697265625 270.224609375 10.3427734375 279.59765625 c 2 - 111.030273438 380.284179688 l 2 - 120.40234375 389.657226562 135.59765625 389.657226562 144.970703125 380.284179688 c 2 - 245.657226562 279.598632812 l 2 - 255.030273438 270.2265625 255.030273438 255.03125 245.657226562 245.658203125 c 2 - 234.834960938 234.8359375 l 2 - 225.272460938 225.2734375 209.702148438 225.49609375 200.416015625 235.327148438 c 2 - 160 278.119140625 l 1 - 160 96 l 1 - 347.547851562 96 l 1 - 347.548828125 96 l 2 - 353.036132812 96 360.638671875 92.8505859375 364.518554688 88.970703125 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" r e t w e e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" R e t w e e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" R E T W E E T -EndChar - -StartChar: shopping-cart -Encoding: 61562 61562 168 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528.120117188 146.680664062 m 2 - 525.63671875 135.75390625 515.922851562 128 504.716796875 128 c 2 - 211.572265625 128 l 1 - 218.1171875 96 l 1 - 486.53515625 96 l 2 - 501.935546875 96 513.350585938 81.69921875 509.938476562 66.6806640625 c 2 - 504.420898438 42.4052734375 l 1 - 523.112304688 33.33203125 536 14.171875 536 -8 c 0 - 536 -38.927734375 510.927734375 -64 480 -64 c 0 - 449.072265625 -64 424 -38.927734375 424 -8 c 0 - 424 7.673828125 430.447265625 21.8349609375 440.823242188 32 c 1 - 231.17578125 32 l 1 - 241.552734375 21.8349609375 248 7.673828125 248 -8 c 0 - 248 -38.927734375 222.927734375 -64 192 -64 c 0 - 161.072265625 -64 136 -38.927734375 136 -8 c 0 - 136 12.7783203125 147.325195312 30.900390625 164.130859375 40.5654296875 c 1 - 93.8828125 384 l 1 - 24 384 l 2 - 10.7451171875 384 0 394.745117188 0 408 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 126.529296875 448 l 2 - 137.9296875 448 147.7578125 439.978515625 150.041992188 428.809570312 c 2 - 159.208007812 384 l 1 - 551.990234375 384 l 2 - 567.390625 384 578.805664062 369.69921875 575.392578125 354.680664062 c 2 - 528.120117188 146.680664062 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" s h o p p i n g hyphen c a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" S h o p p i n g hyphen C a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" S h o p p i n g hyphen c a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" S H O P P I N G hyphen C A R T -EndChar - -StartChar: folder -Encoding: 61563 61563 169 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 320 m 2 - 490.509765625 320 512 298.509765625 512 272 c 2 - 512 48 l 2 - 512 21.490234375 490.509765625 0 464 0 c 2 - 48 0 l 2 - 21.490234375 0 0 21.490234375 0 48 c 2 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 208 384 l 1 - 272 320 l 1 - 464 320 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" f o l d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" F o l d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" F O L D E R -EndChar - -StartChar: folder-open -Encoding: 61564 61564 170 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -572.694335938 155.907226562 m 2 - 500.26953125 31.751953125 l 2 - 490.045898438 14.224609375 465.28125 0 444.990234375 0 c 2 - 444.989257812 0 l 1 - 45.025390625 0 l 2 - 26.501953125 0 14.9609375 20.0927734375 24.2939453125 36.0927734375 c 2 - 96.7177734375 160.248046875 l 2 - 106.942382812 177.775390625 131.708007812 192 152 192 c 1 - 152 192 l 1 - 551.963867188 192 l 2 - 570.487304688 192 582.028320312 171.907226562 572.694335938 155.907226562 c 2 -152 224 m 2 - 117.989257812 224 86.2138671875 205.75 69.0771484375 176.372070312 c 2 - 0 57.9541015625 l 1 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 208 384 l 1 - 272 320 l 1 - 432 320 l 2 - 458.509765625 320 480 298.509765625 480 272 c 2 - 480 224 l 1 - 152 224 l 2 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" f o l d e r hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F o l d e r hyphen O p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F o l d e r hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F O L D E R hyphen O P E N -EndChar - -StartChar: chart-bar -Encoding: 61568 61568 171 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -332.799804688 128 m 2 - 326.400390625 128 320 134.400390625 320 140.799804688 c 2 - 320 275.200195312 l 2 - 320 281.599609375 326.400390625 288 332.799804688 288 c 2 - 371.200195312 288 l 2 - 377.599609375 288 384 281.599609375 384 275.200195312 c 2 - 384 140.799804688 l 2 - 384 134.400390625 377.599609375 128 371.200195312 128 c 2 - 332.799804688 128 l 2 -428.799804688 128 m 2 - 422.400390625 128 416 134.400390625 416 140.799804688 c 2 - 416 371.200195312 l 2 - 416 377.599609375 422.400390625 384 428.799804688 384 c 2 - 467.200195312 384 l 2 - 473.599609375 384 480 377.599609375 480 371.200195312 c 2 - 480 140.799804688 l 2 - 480 134.400390625 473.599609375 128 467.200195312 128 c 2 - 428.799804688 128 l 2 -140.799804688 128 m 2 - 134.400390625 128 128 134.400390625 128 140.799804688 c 2 - 128 211.200195312 l 2 - 128 217.599609375 134.400390625 224 140.799804688 224 c 2 - 179.200195312 224 l 2 - 185.599609375 224 192 217.599609375 192 211.200195312 c 2 - 192 140.799804688 l 2 - 192 134.400390625 185.599609375 128 179.200195312 128 c 2 - 140.799804688 128 l 2 -236.799804688 128 m 2 - 230.400390625 128 224 134.400390625 224 140.799804688 c 2 - 224 339.200195312 l 2 - 224 345.599609375 230.400390625 352 236.799804688 352 c 2 - 275.200195312 352 l 2 - 281.599609375 352 288 345.599609375 288 339.200195312 c 2 - 288 140.799804688 l 2 - 288 134.400390625 281.599609375 128 275.200195312 128 c 2 - 236.799804688 128 l 2 -496 64 m 2 - 504.83984375 64 512 56.83984375 512 48 c 2 - 512 16 l 2 - 512 7.16015625 504.83984375 0 496 0 c 2 - 32 0 l 2 - 14.330078125 0 0 14.330078125 0 32 c 2 - 0 368 l 2 - 0 376.83984375 7.16015625 384 16 384 c 2 - 48 384 l 2 - 56.83984375 384 64 376.83984375 64 368 c 2 - 64 64 l 1 - 496 64 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" c h a r t hyphen b a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" C h a r t hyphen B a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" C h a r t hyphen b a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" C H A R T hyphen B A R -EndChar - -StartChar: camera-retro -Encoding: 61571 61571 172 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -48 416 m 2 - 464 416 l 2 - 490.5 416 512 394.5 512 368 c 2 - 512 16 l 2 - 512 -10.5 490.5 -32 464 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 -48 384 m 2 - 39.2001953125 384 32 376.799804688 32 368 c 2 - 32 358 l 2 - 32 354.700195312 34.7001953125 352 38 352 c 2 - 154 352 l 2 - 157.299804688 352 160 354.700195312 160 358 c 2 - 160 378 l 2 - 160 381.299804688 157.299804688 384 154 384 c 2 - 48 384 l 2 -474 288 m 2 - 477.299804688 288 480 290.700195312 480 294 c 2 - 480 368 l 2 - 480 376.799804688 472.799804688 384 464 384 c 2 - 211.200195312 384 l 2 - 209.200195312 384 207.299804688 383 206.200195312 381.299804688 c 2 - 176 336 l 1 - 38 336 l 2 - 34.7001953125 336 32 333.299804688 32 330 c 2 - 32 294 l 2 - 32 290.700195312 34.7001953125 288 38 288 c 2 - 474 288 l 2 -256 24 m 0 - 322.200195312 24 376 77.7998046875 376 144 c 0 - 376 210.200195312 322.200195312 264 256 264 c 0 - 189.799804688 264 136 210.200195312 136 144 c 0 - 136 77.7998046875 189.799804688 24 256 24 c 0 -256 232 m 0 - 304.5 232 344 192.5 344 144 c 0 - 344 95.5 304.5 56 256 56 c 0 - 207.5 56 168 95.5 168 144 c 0 - 168 192.5 207.5 232 256 232 c 0 -208 128 m 0 - 216.799804688 128 224 135.200195312 224 144 c 0 - 224 161.599609375 238.400390625 176 256 176 c 0 - 264.799804688 176 272 183.200195312 272 192 c 0 - 272 200.799804688 264.799804688 208 256 208 c 0 - 220.700195312 208 192 179.299804688 192 144 c 0 - 192 135.200195312 199.200195312 128 208 128 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" c a m e r a hyphen r e t r o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C a m e r a hyphen R e t r o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C a m e r a hyphen r e t r o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C A M E R A hyphen R E T R O -EndChar - -StartChar: key -Encoding: 61572 61572 173 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 271.999023438 m 0 - 512 174.796875 433.202148438 96 336 96 c 0 - 324.780273438 96 313.809570312 97.0615234375 303.172851562 99.0693359375 c 1 - 279.161132812 72.0546875 l 2 - 275.208984375 67.6083984375 267.172851562 64 261.223632812 64 c 2 - 261.22265625 64 l 1 - 224 64 l 1 - 224 24 l 2 - 224 10.7451171875 213.254882812 0 200 0 c 2 - 160 0 l 1 - 160 -40 l 2 - 160 -53.2548828125 149.254882812 -64 136 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 38.05859375 l 2 - 0 44.423828125 2.529296875 50.529296875 7.029296875 55.0302734375 c 2 - 168.831054688 216.83203125 l 1 - 163.108398438 234.185546875 160 252.728515625 160 272 c 0 - 160 369.202148438 238.796875 447.999023438 335.999023438 448 c 0 - 433.48828125 448.000976562 512 369.489257812 512 271.999023438 c 0 -336 320 m 0 - 336 293.490234375 357.490234375 272 384 272 c 0 - 410.509765625 272 432 293.490234375 432 320 c 0 - 432 346.509765625 410.509765625 368 384 368 c 0 - 357.490234375 368 336 346.509765625 336 320 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" k e y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" K E Y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" K e y -EndChar - -StartChar: cogs -Encoding: 61573 61573 174 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512.099609375 257 m 1 - 503.900390625 242.700195312 l 2 - 500.900390625 237.400390625 494.5 235.200195312 488.799804688 237.299804688 c 0 - 477 241.700195312 466.200195312 248 456.700195312 255.900390625 c 0 - 452.099609375 259.700195312 450.900390625 266.400390625 453.900390625 271.599609375 c 2 - 462.099609375 285.900390625 l 1 - 455.200195312 293.900390625 449.799804688 303.200195312 446.200195312 313.299804688 c 1 - 429.700195312 313.299804688 l 2 - 423.700195312 313.299804688 418.5 317.599609375 417.5 323.599609375 c 0 - 415.5 335.599609375 415.400390625 348.200195312 417.5 360.700195312 c 0 - 418.5 366.700195312 423.700195312 371.099609375 429.700195312 371.099609375 c 2 - 446.200195312 371.099609375 l 1 - 449.799804688 381.200195312 455.200195312 390.5 462.099609375 398.5 c 1 - 453.900390625 412.799804688 l 2 - 450.900390625 418 452 424.700195312 456.700195312 428.5 c 0 - 466.200195312 436.400390625 477.099609375 442.700195312 488.799804688 447.099609375 c 0 - 494.5 449.200195312 500.900390625 447 503.900390625 441.700195312 c 2 - 512.099609375 427.400390625 l 1 - 522.599609375 429.299804688 533.299804688 429.299804688 543.799804688 427.400390625 c 1 - 552 441.700195312 l 2 - 555 447 561.400390625 449.200195312 567.099609375 447.099609375 c 0 - 578.900390625 442.700195312 589.700195312 436.400390625 599.200195312 428.5 c 0 - 603.799804688 424.700195312 605 418 602 412.799804688 c 2 - 593.799804688 398.5 l 1 - 600.700195312 390.5 606.099609375 381.200195312 609.700195312 371.099609375 c 1 - 626.200195312 371.099609375 l 2 - 632.200195312 371.099609375 637.400390625 366.799804688 638.400390625 360.799804688 c 0 - 640.400390625 348.799804688 640.5 336.200195312 638.400390625 323.700195312 c 0 - 637.400390625 317.700195312 632.200195312 313.299804688 626.200195312 313.299804688 c 2 - 609.700195312 313.299804688 l 1 - 606.099609375 303.200195312 600.700195312 293.900390625 593.799804688 285.900390625 c 1 - 602 271.599609375 l 2 - 605 266.400390625 603.900390625 259.700195312 599.200195312 255.900390625 c 0 - 589.700195312 248 578.799804688 241.700195312 567.099609375 237.299804688 c 0 - 561.400390625 235.200195312 555 237.400390625 552 242.700195312 c 2 - 543.799804688 257 l 1 - 533.400390625 255.099609375 522.599609375 255.099609375 512.099609375 257 c 1 -501.599609375 315.799804688 m 1 - 540.099609375 286.200195312 584 330.099609375 554.400390625 368.599609375 c 1 - 515.900390625 398.299804688 472 354.299804688 501.599609375 315.799804688 c 1 -386.299804688 161.900390625 m 1 - 420 145.099609375 l 2 - 430.099609375 139.299804688 434.5 127 430.5 116 c 0 - 421.599609375 91.7998046875 404.099609375 69.599609375 387.900390625 50.2001953125 c 0 - 380.5 41.2998046875 367.700195312 39.099609375 357.599609375 44.900390625 c 2 - 328.5 61.7001953125 l 1 - 312.5 48 293.900390625 37.099609375 273.599609375 30 c 1 - 273.599609375 -3.599609375 l 2 - 273.599609375 -15.2001953125 265.299804688 -25.2001953125 253.900390625 -27.2001953125 c 0 - 229.299804688 -31.400390625 203.5 -31.599609375 178 -27.2001953125 c 0 - 166.5 -25.2001953125 158 -15.2998046875 158 -3.599609375 c 2 - 158 30 l 1 - 137.700195312 37.2001953125 119.099609375 48 103.099609375 61.7001953125 c 1 - 74 45 l 2 - 64 39.2001953125 51.099609375 41.400390625 43.7001953125 50.2998046875 c 0 - 27.5 69.7001953125 10.400390625 91.900390625 1.5 116 c 0 - -2.5 126.900390625 1.900390625 139.200195312 12 145.099609375 c 2 - 45.2998046875 161.900390625 l 1 - 41.400390625 182.799804688 41.400390625 204.299804688 45.2998046875 225.299804688 c 1 - 12 242.200195312 l 2 - 1.900390625 248 -2.599609375 260.299804688 1.5 271.200195312 c 0 - 10.400390625 295.400390625 27.5 317.599609375 43.7001953125 337 c 0 - 51.099609375 345.900390625 63.900390625 348.099609375 74 342.299804688 c 2 - 103.099609375 325.5 l 1 - 119.099609375 339.200195312 137.700195312 350.099609375 158 357.200195312 c 1 - 158 390.900390625 l 2 - 158 402.400390625 166.200195312 412.400390625 177.599609375 414.400390625 c 0 - 202.200195312 418.599609375 228.099609375 418.799804688 253.599609375 414.5 c 0 - 265.099609375 412.5 273.599609375 402.599609375 273.599609375 390.900390625 c 2 - 273.599609375 357.299804688 l 1 - 293.900390625 350.099609375 312.5 339.299804688 328.5 325.599609375 c 1 - 357.599609375 342.400390625 l 2 - 367.599609375 348.200195312 380.5 346 387.900390625 337.099609375 c 0 - 404.099609375 317.700195312 421.099609375 295.5 430 271.299804688 c 0 - 434 260.400390625 430.099609375 248.099609375 420 242.200195312 c 2 - 386.299804688 225.400390625 l 1 - 390.200195312 204.400390625 390.200195312 182.900390625 386.299804688 161.900390625 c 1 -268.700195312 140.799804688 m 1 - 327.900390625 217.799804688 240 305.700195312 163 246.5 c 1 - 103.799804688 169.5 191.700195312 81.599609375 268.700195312 140.799804688 c 1 -512.099609375 -41.900390625 m 1 - 503.900390625 -56.2001953125 l 2 - 500.900390625 -61.5 494.5 -63.7001953125 488.799804688 -61.599609375 c 0 - 477 -57.2001953125 466.200195312 -50.900390625 456.700195312 -43 c 0 - 452.099609375 -39.2001953125 450.900390625 -32.5 453.900390625 -27.2998046875 c 2 - 462.099609375 -13 l 1 - 455.200195312 -5 449.799804688 4.2998046875 446.200195312 14.400390625 c 1 - 429.700195312 14.400390625 l 2 - 423.700195312 14.400390625 418.5 18.7001953125 417.5 24.7001953125 c 0 - 415.5 36.7001953125 415.400390625 49.2998046875 417.5 61.7998046875 c 0 - 418.5 67.7998046875 423.700195312 72.2001953125 429.700195312 72.2001953125 c 2 - 446.200195312 72.2001953125 l 1 - 449.799804688 82.2998046875 455.200195312 91.599609375 462.099609375 99.599609375 c 1 - 453.900390625 113.900390625 l 2 - 450.900390625 119.099609375 452 125.799804688 456.700195312 129.599609375 c 0 - 466.200195312 137.5 477.099609375 143.799804688 488.799804688 148.200195312 c 0 - 494.5 150.299804688 500.900390625 148.099609375 503.900390625 142.799804688 c 2 - 512.099609375 128.5 l 1 - 522.599609375 130.400390625 533.299804688 130.400390625 543.799804688 128.5 c 1 - 552 142.799804688 l 2 - 555 148.099609375 561.400390625 150.299804688 567.099609375 148.200195312 c 0 - 578.900390625 143.799804688 589.700195312 137.5 599.200195312 129.599609375 c 0 - 603.799804688 125.799804688 605 119.099609375 602 113.900390625 c 2 - 593.799804688 99.599609375 l 1 - 600.700195312 91.599609375 606.099609375 82.2998046875 609.700195312 72.2001953125 c 1 - 626.200195312 72.2001953125 l 2 - 632.200195312 72.2001953125 637.400390625 67.900390625 638.400390625 61.900390625 c 0 - 640.400390625 49.900390625 640.5 37.2998046875 638.400390625 24.7998046875 c 0 - 637.400390625 18.7998046875 632.200195312 14.400390625 626.200195312 14.400390625 c 2 - 609.700195312 14.400390625 l 1 - 606.099609375 4.2998046875 600.700195312 -5 593.799804688 -13 c 1 - 602 -27.2998046875 l 2 - 605 -32.5 603.900390625 -39.2001953125 599.200195312 -43 c 0 - 589.700195312 -50.900390625 578.799804688 -57.2001953125 567.099609375 -61.599609375 c 0 - 561.400390625 -63.7001953125 555 -61.5 552 -56.2001953125 c 2 - 543.799804688 -41.900390625 l 1 - 533.400390625 -43.7998046875 522.599609375 -43.7998046875 512.099609375 -41.900390625 c 1 -501.599609375 17 m 1 - 540.099609375 -12.599609375 584 31.2998046875 554.400390625 69.7998046875 c 1 - 515.900390625 99.400390625 472 55.5 501.599609375 17 c 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" c o g s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" C o g s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" C O G S -EndChar - -StartChar: comments -Encoding: 61574 61574 175 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 256 m 0 - 416 167.599609375 322.900390625 96 208 96 c 0 - 167 96 128.900390625 105.299804688 96.7001953125 121 c 1 - 74.900390625 108.299804688 44.599609375 96 8 96 c 0 - 4.7998046875 96 2 97.7998046875 0.7001953125 100.799804688 c 0 - -0.599609375 103.799804688 0 107.200195312 2.2001953125 109.5 c 0 - 2.5 109.799804688 24.599609375 133.799804688 38 164 c 1 - 14.099609375 190.099609375 0 221.700195312 0 256 c 0 - 0 344.400390625 93.099609375 416 208 416 c 0 - 322.900390625 416 416 344.400390625 416 256 c 0 -538 36 m 1 - 551.400390625 5.7001953125 573.5 -18.2001953125 573.799804688 -18.5 c 0 - 576 -20.900390625 576.599609375 -24.2998046875 575.299804688 -27.2001953125 c 0 - 574.099609375 -30.099609375 571.200195312 -32 568 -32 c 0 - 531.400390625 -32 501.099609375 -19.7001953125 479.299804688 -7 c 1 - 447.099609375 -22.7998046875 409 -32 368 -32 c 0 - 281.799804688 -32 207.799804688 8.400390625 176.299804688 65.900390625 c 1 - 186.700195312 64.7998046875 197.200195312 64 208 64 c 0 - 340.299804688 64 448 150.099609375 448 256 c 0 - 448 262.799804688 447.599609375 269.5 446.700195312 276.099609375 c 1 - 522.5 252.200195312 576 194.900390625 576 128 c 0 - 576 93.7001953125 561.900390625 62 538 36 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" c o m m e n t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" C o m m e n t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" C O M M E N T S -EndChar - -StartChar: star-half -Encoding: 61577 61577 176 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 448 m 1 - 288 8.400390625 l 1 - 157.299804688 -60.2001953125 l 2 - 133.900390625 -72.5 106.400390625 -52.599609375 110.900390625 -26.5 c 2 - 135.900390625 119 l 1 - 30.2001953125 222 l 2 - 11.2001953125 240.5 21.7001953125 272.799804688 47.900390625 276.599609375 c 2 - 194 297.799804688 l 1 - 259.299804688 430.200195312 l 2 - 265.200195312 442.099609375 276.599609375 448 288 448 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" s t a r hyphen h a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S T A R hyphen H A L F -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S t a r hyphen H a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S t a r hyphen h a l f -EndChar - -StartChar: thumbtack -Encoding: 61581 61581 177 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -298.028320312 233.733398438 m 1 - 346.017578125 211.419921875 384 171.182617188 384.000976562 120 c 0 - 384.000976562 106.745117188 373.255859375 96 360.000976562 96 c 2 - 224.000976562 96 l 1 - 224.000976562 -8.0068359375 l 2 - 224.000976562 -9.0498046875 223.622070312 -10.65234375 223.15625 -11.5849609375 c 2 - 199.15625 -59.5849609375 l 2 - 196.208984375 -65.4775390625 187.786132812 -65.466796875 184.844726562 -59.5849609375 c 2 - 160.844726562 -11.5849609375 l 2 - 160.2890625 -10.4736328125 160 -9.2490234375 160 -8.0068359375 c 2 - 160 96 l 1 - 24 96 l 2 - 10.7451171875 96 0 106.745117188 0 120 c 0 - 0 170.739257812 37.46484375 211.1796875 85.9716796875 233.733398438 c 1 - 98.20703125 352 l 1 - 56 352 l 2 - 42.7451171875 352 32 362.745117188 32 376 c 2 - 32 424 l 2 - 32 437.254882812 42.7451171875 448 56 448 c 2 - 328 448 l 2 - 341.254882812 448 352 437.254882812 352 424 c 2 - 352 376 l 2 - 352 362.745117188 341.254882812 352 328 352 c 2 - 285.79296875 352 l 1 - 298.028320312 233.733398438 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" t h u m b t a c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" T h u m b t a c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" T H U M B T A C K -EndChar - -StartChar: trophy -Encoding: 61585 61585 178 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -552 384 m 2 - 565.299804688 384 576 373.299804688 576 360 c 2 - 576 304 l 2 - 576 268.299804688 553.400390625 231.599609375 514.099609375 203.299804688 c 0 - 482.700195312 180.599609375 444.400390625 166.200195312 404.099609375 161.599609375 c 1 - 372.700195312 109.5 336 88 336 88 c 1 - 336 16 l 1 - 384 16 l 2 - 419.299804688 16 448 -4.7001953125 448 -40 c 2 - 448 -52 l 2 - 448 -58.599609375 442.599609375 -64 436 -64 c 2 - 140 -64 l 2 - 133.400390625 -64 128 -58.599609375 128 -52 c 2 - 128 -40 l 2 - 128 -4.7001953125 156.700195312 16 192 16 c 2 - 240 16 l 1 - 240 88 l 1 - 240 88 203.299804688 109.5 171.900390625 161.599609375 c 1 - 131.700195312 166.200195312 93.400390625 180.599609375 61.900390625 203.299804688 c 0 - 22.5 231.599609375 0 268.299804688 0 304 c 2 - 0 360 l 2 - 0 373.299804688 10.7001953125 384 24 384 c 2 - 128 384 l 1 - 128 424 l 2 - 128 437.299804688 138.700195312 448 152 448 c 2 - 424 448 l 2 - 437.299804688 448 448 437.299804688 448 424 c 2 - 448 384 l 1 - 552 384 l 2 -99.2998046875 255.200195312 m 0 - 111.799804688 246.200195312 125.900390625 239 141 233.799804688 c 1 - 134 258.799804688 129.200195312 287.400390625 128.200195312 320 c 1 - 64 320 l 1 - 64 304 l 2 - 64 292.400390625 74.900390625 272.799804688 99.2998046875 255.200195312 c 0 -512 304 m 2 - 512 320 l 1 - 447.700195312 320 l 1 - 446.700195312 287.400390625 441.900390625 258.799804688 434.900390625 233.799804688 c 1 - 450 239 464.200195312 246.200195312 476.700195312 255.200195312 c 0 - 494.299804688 267.900390625 512 287.900390625 512 304 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" t r o p h y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" T r o p h y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" T R O P H Y -EndChar - -StartChar: upload -Encoding: 61587 61587 179 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -296 64 m 2 - 216 64 l 2 - 202.700195312 64 192 74.7001953125 192 88 c 2 - 192 256 l 1 - 104.299804688 256 l 2 - 86.5 256 77.599609375 277.5 90.2001953125 290.099609375 c 2 - 242.299804688 442.299804688 l 2 - 249.799804688 449.799804688 262.099609375 449.799804688 269.599609375 442.299804688 c 2 - 421.799804688 290.099609375 l 2 - 434.400390625 277.5 425.5 256 407.700195312 256 c 2 - 320 256 l 1 - 320 88 l 2 - 320 74.7001953125 309.299804688 64 296 64 c 2 -512 72 m 2 - 512 -40 l 2 - 512 -53.2998046875 501.299804688 -64 488 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 72 l 2 - 0 85.2998046875 10.7001953125 96 24 96 c 2 - 160 96 l 1 - 160 88 l 2 - 160 57.099609375 185.099609375 32 216 32 c 2 - 296 32 l 2 - 326.900390625 32 352 57.099609375 352 88 c 2 - 352 96 l 1 - 488 96 l 2 - 501.299804688 96 512 85.2998046875 512 72 c 2 -388 -16 m 0 - 388 -5 379 4 368 4 c 0 - 357 4 348 -5 348 -16 c 0 - 348 -27 357 -36 368 -36 c 0 - 379 -36 388 -27 388 -16 c 0 -452 -16 m 0 - 452 -5 443 4 432 4 c 0 - 421 4 412 -5 412 -16 c 0 - 412 -27 421 -36 432 -36 c 0 - 443 -36 452 -27 452 -16 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" u p l o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" U P L O A D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" U p l o a d -EndChar - -StartChar: lemon -Encoding: 61588 61588 180 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -489.038085938 425.037109375 m 0 - 512.131835938 401.943359375 517.9296875 370.646484375 505.87109375 349.944335938 c 0 - 471.559570312 291.040039062 558.947265625 168.6953125 419.125 28.873046875 c 0 - 279.302734375 -110.94921875 156.958007812 -23.5595703125 98.056640625 -57.8701171875 c 0 - 77.353515625 -69.9287109375 46.056640625 -64.1328125 22.9619140625 -41.0380859375 c 0 - -0.130859375 -17.9443359375 -5.9296875 13.3525390625 6.12890625 34.0546875 c 0 - 40.44140625 92.958984375 -46.94921875 215.301757812 92.8740234375 355.125 c 0 - 232.697265625 494.948242188 355.041015625 407.55859375 413.947265625 441.87109375 c 0 - 434.6484375 453.9296875 465.944335938 448.129882812 489.038085938 425.037109375 c 0 -243.880859375 352.477539062 m 0 - 252.453125 354.62109375 257.6640625 363.306640625 255.522460938 371.879882812 c 0 - 253.379882812 380.453125 244.694335938 385.665039062 236.119140625 383.522460938 c 0 - 166.31640625 366.0703125 81.9013671875 281.573242188 64.4765625 211.879882812 c 0 - 62.3349609375 203.306640625 67.546875 194.62109375 76.119140625 192.4765625 c 0 - 77.421875 192.15234375 78.7275390625 191.99609375 80.01171875 191.99609375 c 0 - 87.1806640625 191.99609375 93.7060546875 196.849609375 95.5234375 204.120117188 c 0 - 110.073242188 262.323242188 185.692382812 337.930664062 243.880859375 352.477539062 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" l e m o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" L e m o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" L E M O N -EndChar - -StartChar: phone -Encoding: 61589 61589 181 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -493.400390625 423.400390625 m 2 - 504.299804688 420.900390625 512 411.200195312 512 400 c 0 - 512 143.5 304.099609375 -64 48 -64 c 0 - 36.7001953125 -64 27.099609375 -56.2001953125 24.599609375 -45.400390625 c 2 - 0.599609375 58.599609375 l 2 - -2 69.900390625 3.900390625 81.5 14.599609375 86.2001953125 c 2 - 126.599609375 134.200195312 l 2 - 136.400390625 138.400390625 147.799804688 135.599609375 154.599609375 127.299804688 c 2 - 204.200195312 66.7001953125 l 1 - 282.5 103.400390625 345.400390625 167.200195312 381.400390625 243.900390625 c 1 - 320.799804688 293.5 l 2 - 312.5 300.200195312 309.700195312 311.700195312 313.900390625 321.5 c 2 - 361.900390625 433.5 l 2 - 366.5 444.099609375 378.099609375 450 389.400390625 447.400390625 c 2 - 493.400390625 423.400390625 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" p h o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" P h o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" P H O N E -EndChar - -StartChar: phone-square -Encoding: 61592 61592 182 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.509765625 416 448 394.509765625 448 368 c 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 400 416 l 2 -94 32 m 0 - 254.0546875 32 384 161.708007812 384 322 c 1 - 384 322 l 1 - 384 328.586914062 378.791015625 335.133789062 372.372070312 336.614257812 c 2 - 307.372070312 351.612304688 l 2 - 306.453125 351.82421875 304.942382812 351.99609375 303.999023438 351.99609375 c 0 - 298.5390625 351.99609375 292.362304688 347.922851562 290.211914062 342.905273438 c 2 - 260.211914062 272.907226562 l 2 - 259.54296875 271.344726562 259 268.698242188 259 266.999023438 c 0 - 259 263.075195312 261.463867188 257.874023438 264.500976562 255.388671875 c 2 - 302.38671875 224.391601562 l 1 - 279.903320312 176.469726562 240.549804688 136.575195312 191.606445312 113.612304688 c 1 - 160.609375 151.497070312 l 2 - 158.124023438 154.534179688 152.922851562 156.999023438 148.999023438 156.999023438 c 0 - 147.299804688 156.999023438 144.653320312 156.455078125 143.090820312 155.786132812 c 2 - 73.0927734375 125.787109375 l 2 - 68.07421875 123.63671875 64.001953125 117.459960938 64.001953125 112 c 0 - 64.001953125 111.056640625 64.173828125 109.545898438 64.3857421875 108.626953125 c 2 - 79.3837890625 43.626953125 l 2 - 80.943359375 36.873046875 86.966796875 32 94 32 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" p h o n e hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" P h o n e hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" P h o n e hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" P H O N E hyphen S Q U A R E -EndChar - -StartChar: unlock -Encoding: 61596 61596 183 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 192 m 2 - 426.5 192 448 170.5 448 144 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 144 l 2 - 0 170.5 21.5 192 48 192 c 2 - 72 192 l 1 - 72 294.5 l 2 - 72 378.5 139.5 447.700195312 223.5 448 c 0 - 307.5 448.299804688 376 380 376 296 c 2 - 376 280 l 2 - 376 266.700195312 365.299804688 256 352 256 c 2 - 320 256 l 2 - 306.700195312 256 296 266.700195312 296 280 c 2 - 296 296 l 2 - 296 335.900390625 263.299804688 368.400390625 223.299804688 368 c 0 - 183.700195312 367.599609375 152 334.700195312 152 295.099609375 c 2 - 152 192 l 1 - 400 192 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" u n l o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" U N L O C K -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" U n l o c k -EndChar - -StartChar: credit-card -Encoding: 61597 61597 184 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 16 m 2 - 0 192 l 1 - 576 192 l 1 - 576 16 l 2 - 576 -10.5 554.5 -32 528 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 -192 84 m 2 - 192 44 l 2 - 192 37.400390625 197.400390625 32 204 32 c 2 - 340 32 l 2 - 346.599609375 32 352 37.400390625 352 44 c 2 - 352 84 l 2 - 352 90.599609375 346.599609375 96 340 96 c 2 - 204 96 l 2 - 197.400390625 96 192 90.599609375 192 84 c 2 -64 84 m 2 - 64 44 l 2 - 64 37.400390625 69.400390625 32 76 32 c 2 - 148 32 l 2 - 154.599609375 32 160 37.400390625 160 44 c 2 - 160 84 l 2 - 160 90.599609375 154.599609375 96 148 96 c 2 - 76 96 l 2 - 69.400390625 96 64 90.599609375 64 84 c 2 -576 368 m 2 - 576 320 l 1 - 0 320 l 1 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 528 416 l 2 - 554.5 416 576 394.5 576 368 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" c r e d i t hyphen c a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" C r e d i t hyphen C a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" C r e d i t hyphen c a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" C R E D I T hyphen C A R D -EndChar - -StartChar: rss -Encoding: 61598 61598 185 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128.081054688 32.041015625 m 0 - 128.081054688 -3.328125 99.4091796875 -32 64.0400390625 -32 c 0 - 28.6708984375 -32 0 -3.328125 0 32.041015625 c 0 - 0 67.41015625 28.671875 96.08203125 64.041015625 96.08203125 c 0 - 99.41015625 96.08203125 128.081054688 67.4091796875 128.081054688 32.041015625 c 0 -303.741210938 -15.208984375 m 0 - 304.235351562 -24.34375 296.89453125 -32 287.74609375 -31.9990234375 c 2 - 239.676757812 -31.9990234375 l 2 - 231.262695312 -31.9990234375 224.206054688 -25.5087890625 223.659179688 -17.1123046875 c 0 - 216.360351562 94.9580078125 126.71875 184.375976562 14.88671875 191.66015625 c 0 - 6.490234375 192.206054688 0 199.262695312 0 207.677734375 c 2 - 0 255.747070312 l 2 - 0 264.89453125 7.65625 272.235351562 16.791015625 271.741210938 c 0 - 171.555664062 263.377929688 295.38671875 139.390625 303.741210938 -15.208984375 c 0 -447.990234375 -15.4970703125 m 0 - 448.314453125 -24.52734375 441.018554688 -32 431.985351562 -32.0009765625 c 2 - 383.916992188 -32.0009765625 l 2 - 375.291015625 -32.0009765625 368.271484375 -25.166015625 367.91796875 -16.5478515625 c 0 - 360.080078125 174.600585938 206.631835938 328.078125 15.453125 335.916992188 c 0 - 6.8349609375 336.271484375 0 343.291015625 0 351.916015625 c 2 - 0 399.984375 l 2 - 0 409.018554688 7.47265625 416.314453125 16.5029296875 415.990234375 c 0 - 251.46484375 407.5546875 439.595703125 218.323242188 447.990234375 -15.4970703125 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" r s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" R s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" R S S -EndChar - -StartChar: hdd -Encoding: 61600 61600 186 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -576 144 m 2 - 576 48 l 2 - 576 21.490234375 554.509765625 0 528 0 c 2 - 48 0 l 2 - 21.490234375 0 0 21.490234375 0 48 c 2 - 0 144 l 2 - 0 170.509765625 21.490234375 192 48 192 c 2 - 528 192 l 2 - 554.509765625 192 576 170.509765625 576 144 c 2 -528 224 m 1 - 48 224 l 1 - 47.9306640625 224 l 2 - 39.11328125 224 25.3564453125 221.23828125 17.22265625 217.834960938 c 1 - 113.750976562 362.625976562 l 2 - 121.6171875 374.424804688 139.508789062 384 153.689453125 384 c 2 - 422.310546875 384 l 2 - 436.491210938 384 454.383789062 374.423828125 462.25 362.625976562 c 2 - 558.77734375 217.834960938 l 1 - 550.643554688 221.23828125 536.88671875 224 528.069335938 224 c 2 - 528 224 l 1 -480 128 m 0 - 462.327148438 128 448 113.672851562 448 96 c 0 - 448 78.3271484375 462.327148438 64 480 64 c 0 - 497.672851562 64 512 78.3271484375 512 96 c 0 - 512 113.672851562 497.672851562 128 480 128 c 0 -384 128 m 0 - 366.327148438 128 352 113.672851562 352 96 c 0 - 352 78.3271484375 366.327148438 64 384 64 c 0 - 401.672851562 64 416 78.3271484375 416 96 c 0 - 416 113.672851562 401.672851562 128 384 128 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" h d d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" H d d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" H D D -EndChar - -StartChar: bullhorn -Encoding: 61601 61601 187 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -576 208 m 0 - 576 184.370117188 563.049804688 163.959960938 543.990234375 152.870117188 c 1 - 543.990234375 0 l 2 - 543.990234375 -9.2197265625 536.91015625 -32 511.990234375 -32 c 0 - 505.796875 -31.994140625 496.845703125 -28.849609375 492.009765625 -24.98046875 c 2 - 406.98046875 43.0498046875 l 2 - 364.280273438 77.1904296875 310.66015625 96 256 96 c 2 - 227.919921875 96 l 1 - 225.129882812 85.7900390625 223.509765625 75.1103515625 223.509765625 64 c 0 - 223.509765625 34.919921875 233.259765625 8.080078125 249.66015625 -13.4404296875 c 0 - 265.450195312 -34.16015625 249.809570312 -64 223.759765625 -64 c 2 - 149.48046875 -64 l 2 - 137.599609375 -64 126.26953125 -57.6298828125 121.080078125 -46.9404296875 c 0 - 104.780273438 -13.349609375 95.51953125 24.23046875 95.51953125 64 c 0 - 95.51953125 74.8603515625 96.3095703125 85.51953125 97.7001953125 96 c 1 - 64 96 l 2 - 28.650390625 96 0 124.650390625 0 160 c 2 - 0 256 l 2 - 0 291.349609375 28.650390625 320 64 320 c 2 - 256 320 l 2 - 310.66015625 320 364.280273438 338.809570312 406.990234375 372.950195312 c 2 - 492.01953125 440.98046875 l 2 - 497.809570312 445.620117188 504.879882812 448 512 448 c 0 - 537.01953125 448 544 424.740234375 544 415.990234375 c 2 - 544 263.120117188 l 1 - 563.049804688 252.040039062 576 231.629882812 576 208 c 0 -480 66.580078125 m 1 - 480 349.419921875 l 1 - 446.950195312 322.98046875 l 2 - 392.950195312 279.780273438 325.120117188 256 256 256 c 1 - 256 160 l 1 - 325.120117188 160 392.950195312 136.219726562 446.950195312 93.01953125 c 2 - 480 66.580078125 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" b u l l h o r n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B u l l h o r n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B U L L H O R N -EndChar - -StartChar: certificate -Encoding: 61603 61603 188 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -458.622070312 192.080078125 m 1 - 504.606445312 147.076171875 l 2 - 518.307617188 134.103515625 511.928710938 111.0390625 493.942382812 106.737304688 c 2 - 431.291992188 90.7470703125 l 1 - 448.953125 28.732421875 l 2 - 453.943359375 10.8984375 437.127929688 -5.9326171875 419.291992188 -0.939453125 c 2 - 357.297851562 16.7275390625 l 1 - 341.314453125 -45.943359375 l 2 - 336.975585938 -64.0966796875 313.489257812 -70.0986328125 300.989257812 -56.611328125 c 2 - 256 -10.6103515625 l 1 - 211.008789062 -56.611328125 l 2 - 198.379882812 -69.9609375 175.123046875 -64.517578125 170.68359375 -45.943359375 c 2 - 154.700195312 16.7275390625 l 1 - 92.7060546875 -0.939453125 l 2 - 74.8740234375 -5.9306640625 58.0537109375 10.8935546875 63.044921875 28.732421875 c 2 - 80.7060546875 90.7470703125 l 1 - 18.0556640625 106.737304688 l 2 - 0.076171875 111.037109375 -6.31640625 134.098632812 7.3916015625 147.076171875 c 2 - 53.376953125 192.080078125 l 1 - 7.3916015625 237.084960938 l 2 - -6.3095703125 250.055664062 0.0693359375 273.122070312 18.056640625 277.422851562 c 2 - 80.70703125 293.413085938 l 1 - 63.0458984375 355.427734375 l 2 - 58.0556640625 373.26171875 74.8701171875 390.092773438 92.70703125 385.098632812 c 2 - 154.702148438 367.431640625 l 1 - 170.685546875 430.102539062 l 2 - 174.963867188 448.004882812 198.380859375 454.122070312 211.010742188 440.771484375 c 2 - 256 394.4296875 l 1 - 300.990234375 440.772460938 l 2 - 313.764648438 454.276367188 337.084960938 447.802734375 341.315429688 430.103515625 c 2 - 357.298828125 367.432617188 l 1 - 419.29296875 385.099609375 l 2 - 437.125 390.091796875 453.9453125 373.266601562 448.954101562 355.428710938 c 2 - 431.29296875 293.4140625 l 1 - 493.943359375 277.423828125 l 2 - 511.922851562 273.124023438 518.315429688 250.061523438 504.607421875 237.084960938 c 2 - 458.622070312 192.080078125 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" c e r t i f i c a t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C E R T I F I C A T E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C e r t i f i c a t e -EndChar - -StartChar: hand-point-right -Encoding: 61604 61604 189 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 248.34765625 m 0 - 512 224.72265625 491.349609375 204.522460938 467.200195312 204.522460938 c 2 - 367.348632812 204.522460938 l 1 - 383.689453125 187.473632812 385.6953125 154.755859375 361.049804688 133.578125 c 1 - 375.337890625 110.749023438 363.197265625 80.560546875 344.599609375 71.2626953125 c 1 - 353.57421875 22.1220703125 322.654296875 0 272 0 c 0 - 269.25390625 0 258.723632812 0.203125 256 0.1953125 c 0 - 194.029296875 0.02734375 179.106445312 31.259765625 132.268554688 38.509765625 c 0 - 120.595703125 40.3173828125 112 50.4013671875 112 62.2138671875 c 2 - 112 233.739257812 l 1 - 112.001953125 233.740234375 l 1 - 112.012695312 252.106445312 122.609375 269.62890625 140.465820312 277.584960938 c 0 - 169.3515625 290.579101562 235.87890625 326.623046875 248 354.908203125 c 0 - 255.796875 373.1015625 269.383789062 383.9921875 288 384 c 0 - 322.221679688 384.013671875 345.751953125 348.90234375 332.119140625 317.091796875 c 0 - 328.536132812 308.733398438 323.806640625 300.421875 317.965820312 292.173828125 c 1 - 467.200195312 292.173828125 l 2 - 490.650390625 292.173828125 512 271.630859375 512 248.34765625 c 0 -96 248 m 2 - 96 56 l 2 - 96 42.7451171875 85.2548828125 32 72 32 c 2 - 24 32 l 2 - 10.7451171875 32 0 42.7451171875 0 56 c 2 - 0 248 l 2 - 0 261.254882812 10.7451171875 272 24 272 c 2 - 72 272 l 2 - 85.2548828125 272 96 261.254882812 96 248 c 2 -68 80 m 0 - 68 91.0458984375 59.0458984375 100 48 100 c 0 - 36.9541015625 100 28 91.0458984375 28 80 c 0 - 28 68.9541015625 36.9541015625 60 48 60 c 0 - 59.0458984375 60 68 68.9541015625 68 80 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" h a n d hyphen p o i n t hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" H a n d hyphen P o i n t hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" H a n d hyphen p o i n t hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" H A N D hyphen P O I N T hyphen R I G H T -EndChar - -StartChar: hand-point-left -Encoding: 61605 61605 190 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -44.7998046875 292.173828125 m 2 - 194.034179688 292.173828125 l 1 - 188.193359375 300.421875 183.463867188 308.732421875 179.880859375 317.091796875 c 0 - 166.248046875 348.90234375 189.778320312 384.013671875 224 384 c 0 - 242.616210938 383.9921875 256.203125 373.102539062 264 354.908203125 c 0 - 276.122070312 326.622070312 342.6484375 290.579101562 371.534179688 277.584960938 c 0 - 389.390625 269.62890625 399.987304688 252.106445312 399.998046875 233.740234375 c 1 - 400 233.739257812 l 1 - 400 62.212890625 l 2 - 400 50.4013671875 391.404296875 40.31640625 379.731445312 38.509765625 c 0 - 332.893554688 31.259765625 317.970703125 0.02734375 256 0.1953125 c 0 - 253.276367188 0.2021484375 242.74609375 0 240 0 c 0 - 189.345703125 0 158.42578125 22.1220703125 167.400390625 71.2626953125 c 1 - 148.802734375 80.5595703125 136.662109375 110.749023438 150.950195312 133.578125 c 1 - 126.3046875 154.754882812 128.310546875 187.473632812 144.651367188 204.522460938 c 1 - 44.7998046875 204.522460938 l 2 - 20.650390625 204.522460938 0 224.72265625 0 248.34765625 c 0 - 0 271.630859375 21.349609375 292.173828125 44.7998046875 292.173828125 c 2 -440 272 m 2 - 488 272 l 2 - 501.254882812 272 512 261.254882812 512 248 c 2 - 512 56 l 2 - 512 42.7451171875 501.254882812 32 488 32 c 2 - 440 32 l 2 - 426.745117188 32 416 42.7451171875 416 56 c 2 - 416 248 l 2 - 416 261.254882812 426.745117188 272 440 272 c 2 -464 60 m 0 - 475.045898438 60 484 68.9541015625 484 80 c 0 - 484 91.0458984375 475.045898438 100 464 100 c 0 - 452.954101562 100 444 91.0458984375 444 80 c 0 - 444 68.9541015625 452.954101562 60 464 60 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" h a n d hyphen p o i n t hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" H a n d hyphen P o i n t hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" H a n d hyphen p o i n t hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" H A N D hyphen P O I N T hyphen L E F T -EndChar - -StartChar: hand-point-up -Encoding: 61606 61606 191 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -135.65234375 448 m 0 - 159.27734375 448 179.477539062 427.349609375 179.477539062 403.200195312 c 2 - 179.477539062 303.348632812 l 1 - 196.526367188 319.689453125 229.244140625 321.6953125 250.421875 297.049804688 c 1 - 273.250976562 311.337890625 303.439453125 299.197265625 312.737304688 280.599609375 c 1 - 361.877929688 289.57421875 384 258.654296875 384 208 c 0 - 384 205.25390625 383.796875 194.723632812 383.8046875 192 c 0 - 383.97265625 130.029296875 352.740234375 115.106445312 345.490234375 68.2685546875 c 0 - 343.682617188 56.595703125 333.598632812 48 321.786132812 48 c 2 - 150.260742188 48 l 1 - 150.259765625 48.001953125 l 1 - 131.893554688 48.0126953125 114.37109375 58.609375 106.415039062 76.4658203125 c 0 - 93.4208984375 105.3515625 57.376953125 171.877929688 29.091796875 184 c 0 - 10.8974609375 191.796875 0.0078125 205.383789062 0 224 c 0 - -0.013671875 258.221679688 35.09765625 281.751953125 66.908203125 268.119140625 c 0 - 75.2666015625 264.536132812 83.578125 259.806640625 91.826171875 253.965820312 c 1 - 91.826171875 403.200195312 l 2 - 91.826171875 426.650390625 112.369140625 448 135.65234375 448 c 0 -136 32 m 2 - 328 32 l 2 - 341.254882812 32 352 21.2548828125 352 8 c 2 - 352 -40 l 2 - 352 -53.2548828125 341.254882812 -64 328 -64 c 2 - 136 -64 l 2 - 122.745117188 -64 112 -53.2548828125 112 -40 c 2 - 112 8 l 2 - 112 21.2548828125 122.745117188 32 136 32 c 2 -304 4 m 0 - 292.954101562 4 284 -4.9541015625 284 -16 c 0 - 284 -27.0458984375 292.954101562 -36 304 -36 c 0 - 315.045898438 -36 324 -27.0458984375 324 -16 c 0 - 324 -4.9541015625 315.045898438 4 304 4 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" h a n d hyphen p o i n t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" H a n d hyphen P o i n t hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" H a n d hyphen p o i n t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" H A N D hyphen P O I N T hyphen U P -EndChar - -StartChar: hand-point-down -Encoding: 61607 61607 192 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -91.826171875 -19.2001953125 m 2 - 91.826171875 130.034179688 l 1 - 83.578125 124.193359375 75.267578125 119.463867188 66.908203125 115.880859375 c 0 - 35.09765625 102.248046875 -0.013671875 125.778320312 0 160 c 0 - 0.0078125 178.616210938 10.8974609375 192.203125 29.091796875 200 c 0 - 57.3779296875 212.122070312 93.4208984375 278.6484375 106.415039062 307.534179688 c 0 - 114.37109375 325.390625 131.893554688 335.987304688 150.259765625 335.998046875 c 1 - 150.260742188 336 l 1 - 321.787109375 336 l 2 - 333.598632812 336 343.68359375 327.404296875 345.490234375 315.731445312 c 0 - 352.740234375 268.893554688 383.97265625 253.970703125 383.8046875 192 c 0 - 383.797851562 189.276367188 384 178.74609375 384 176 c 0 - 384 125.345703125 361.877929688 94.42578125 312.737304688 103.400390625 c 1 - 303.440429688 84.802734375 273.250976562 72.662109375 250.421875 86.9501953125 c 1 - 229.245117188 62.3046875 196.526367188 64.310546875 179.477539062 80.6513671875 c 1 - 179.477539062 -19.2001953125 l 2 - 179.477539062 -43.349609375 159.27734375 -64 135.65234375 -64 c 0 - 112.369140625 -64 91.826171875 -42.650390625 91.826171875 -19.2001953125 c 2 -112 376 m 2 - 112 424 l 2 - 112 437.254882812 122.745117188 448 136 448 c 2 - 328 448 l 2 - 341.254882812 448 352 437.254882812 352 424 c 2 - 352 376 l 2 - 352 362.745117188 341.254882812 352 328 352 c 2 - 136 352 l 2 - 122.745117188 352 112 362.745117188 112 376 c 2 -324 400 m 0 - 324 411.045898438 315.045898438 420 304 420 c 0 - 292.954101562 420 284 411.045898438 284 400 c 0 - 284 388.954101562 292.954101562 380 304 380 c 0 - 315.045898438 380 324 388.954101562 324 400 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" h a n d hyphen p o i n t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H a n d hyphen P o i n t hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H a n d hyphen p o i n t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H A N D hyphen P O I N T hyphen D O W N -EndChar - -StartChar: arrow-circle-left -Encoding: 61608 61608 193 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 -56 m 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 -284.900390625 87.599609375 m 2 - 209.400390625 160 l 1 - 392 160 l 2 - 405.299804688 160 416 170.700195312 416 184 c 2 - 416 200 l 2 - 416 213.299804688 405.299804688 224 392 224 c 2 - 209.400390625 224 l 1 - 284.900390625 296.400390625 l 2 - 294.599609375 305.700195312 294.799804688 321.200195312 285.299804688 330.700195312 c 2 - 274.299804688 341.599609375 l 2 - 264.900390625 351 249.700195312 351 240.400390625 341.599609375 c 2 - 107.700195312 209 l 2 - 98.2998046875 199.599609375 98.2998046875 184.400390625 107.700195312 175.099609375 c 2 - 240.400390625 42.400390625 l 2 - 249.799804688 33 265 33 274.299804688 42.400390625 c 2 - 285.299804688 53.2998046875 l 2 - 294.799804688 62.7998046875 294.599609375 78.2998046875 284.900390625 87.599609375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" a r r o w hyphen c i r c l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" A r r o w hyphen C i r c l e hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" A r r o w hyphen c i r c l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" A R R O W hyphen C I R C L E hyphen L E F T -EndChar - -StartChar: arrow-circle-right -Encoding: 61609 61609 194 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -227.099609375 296.400390625 m 2 - 302.599609375 224 l 1 - 120 224 l 2 - 106.700195312 224 96 213.299804688 96 200 c 2 - 96 184 l 2 - 96 170.700195312 106.700195312 160 120 160 c 2 - 302.599609375 160 l 1 - 227.099609375 87.599609375 l 2 - 217.400390625 78.2998046875 217.200195312 62.7998046875 226.700195312 53.2998046875 c 2 - 237.700195312 42.400390625 l 2 - 247.099609375 33 262.299804688 33 271.599609375 42.400390625 c 2 - 404.299804688 175 l 2 - 413.700195312 184.400390625 413.700195312 199.599609375 404.299804688 208.900390625 c 2 - 271.599609375 341.700195312 l 2 - 262.200195312 351.099609375 247 351.099609375 237.700195312 341.700195312 c 2 - 226.700195312 330.799804688 l 2 - 217.200195312 321.200195312 217.400390625 305.700195312 227.099609375 296.400390625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" a r r o w hyphen c i r c l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" A r r o w hyphen C i r c l e hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" A r r o w hyphen c i r c l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" A R R O W hyphen C I R C L E hyphen R I G H T -EndChar - -StartChar: arrow-circle-up -Encoding: 61610 61610 195 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -8 192 m 0 - 8 329 119 440 256 440 c 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 -151.599609375 163.099609375 m 2 - 224 238.599609375 l 1 - 224 56 l 2 - 224 42.7001953125 234.700195312 32 248 32 c 2 - 264 32 l 2 - 277.299804688 32 288 42.7001953125 288 56 c 2 - 288 238.599609375 l 1 - 360.400390625 163.099609375 l 2 - 369.700195312 153.400390625 385.200195312 153.200195312 394.700195312 162.700195312 c 2 - 405.599609375 173.700195312 l 2 - 415 183.099609375 415 198.299804688 405.599609375 207.599609375 c 2 - 273 340.299804688 l 2 - 263.599609375 349.700195312 248.400390625 349.700195312 239.099609375 340.299804688 c 2 - 106.299804688 207.599609375 l 2 - 96.900390625 198.200195312 96.900390625 183 106.299804688 173.700195312 c 2 - 117.200195312 162.700195312 l 2 - 126.799804688 153.200195312 142.299804688 153.400390625 151.599609375 163.099609375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" a r r o w hyphen c i r c l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" A r r o w hyphen C i r c l e hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" A r r o w hyphen c i r c l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" A R R O W hyphen C I R C L E hyphen U P -EndChar - -StartChar: arrow-circle-down -Encoding: 61611 61611 196 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504 192 m 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 - 393 440 504 329 504 192 c 0 -360.400390625 220.900390625 m 2 - 288 145.400390625 l 1 - 288 328 l 2 - 288 341.299804688 277.299804688 352 264 352 c 2 - 248 352 l 2 - 234.700195312 352 224 341.299804688 224 328 c 2 - 224 145.400390625 l 1 - 151.599609375 220.900390625 l 2 - 142.299804688 230.599609375 126.799804688 230.799804688 117.299804688 221.299804688 c 2 - 106.400390625 210.299804688 l 2 - 97 200.900390625 97 185.700195312 106.400390625 176.400390625 c 2 - 239 43.7001953125 l 2 - 248.400390625 34.2998046875 263.599609375 34.2998046875 272.900390625 43.7001953125 c 2 - 405.599609375 176.400390625 l 2 - 415 185.799804688 415 201 405.599609375 210.299804688 c 2 - 394.700195312 221.299804688 l 2 - 385.200195312 230.799804688 369.700195312 230.599609375 360.400390625 220.900390625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" a r r o w hyphen c i r c l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" A r r o w hyphen C i r c l e hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" A r r o w hyphen c i r c l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" A R R O W hyphen C I R C L E hyphen D O W N -EndChar - -StartChar: globe -Encoding: 61612 61612 197 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336.5 288 m 1 - 159.5 288 l 1 - 174 377.299804688 208.200195312 440 248 440 c 0 - 287.799804688 440 322 377.299804688 336.5 288 c 1 -152 192 m 0 - 152 214.200195312 153.200195312 235.5 155.299804688 256 c 1 - 340.599609375 256 l 1 - 342.700195312 235.5 343.900390625 214.200195312 343.900390625 192 c 0 - 343.900390625 169.799804688 342.700195312 148.5 340.599609375 128 c 1 - 155.299804688 128 l 1 - 153.200195312 148.5 152 169.799804688 152 192 c 0 -476.700195312 288 m 1 - 368.700195312 288 l 1 - 359.900390625 344.900390625 343.099609375 395.799804688 318.700195312 429.599609375 c 1 - 390.200195312 408.400390625 448.099609375 355.900390625 476.700195312 288 c 1 -177.200195312 429.599609375 m 1 - 152.799804688 395.799804688 136 344.900390625 127.299804688 288 c 1 - 19.2998046875 288 l 1 - 47.7998046875 355.900390625 105.799804688 408.400390625 177.200195312 429.599609375 c 1 -487.400390625 256 m 1 - 492.799804688 235.5 495.900390625 214.200195312 495.900390625 192 c 0 - 495.900390625 169.799804688 492.799804688 148.5 487.299804688 128 c 1 - 372.700195312 128 l 1 - 374.799804688 149 376 170.5 376 192 c 0 - 376 213.5 374.799804688 235 372.700195312 256 c 1 - 487.400390625 256 l 1 -120 192 m 0 - 120 170.5 121.200195312 149 123.200195312 128 c 1 - 8.599609375 128 l 1 - 3.2001953125 148.5 0 169.799804688 0 192 c 0 - 0 214.200195312 3.2001953125 235.5 8.599609375 256 c 1 - 123.299804688 256 l 1 - 121.200195312 235 120 213.5 120 192 c 0 -159.5 96 m 1 - 336.5 96 l 1 - 322 6.7001953125 287.799804688 -56 248 -56 c 0 - 208.200195312 -56 174 6.7001953125 159.5 96 c 1 -318.799804688 -45.599609375 m 1 - 343.200195312 -11.7998046875 360 39.099609375 368.799804688 96 c 1 - 476.799804688 96 l 1 - 448.200195312 28.099609375 390.200195312 -24.400390625 318.799804688 -45.599609375 c 1 -19.2998046875 96 m 1 - 127.299804688 96 l 1 - 136.099609375 39.099609375 152.900390625 -11.7998046875 177.299804688 -45.599609375 c 1 - 105.799804688 -24.400390625 47.900390625 28.099609375 19.2998046875 96 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" g l o b e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" G l o b e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" G L O B E -EndChar - -StartChar: wrench -Encoding: 61613 61613 198 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -507.73046875 338.900390625 m 0 - 519.51953125 291.490234375 506.889648438 239.240234375 469.8203125 202.169921875 c 0 - 429.919921875 162.26953125 372.5703125 151.240234375 322.450195312 167.950195312 c 1 - 109.240234375 -45.259765625 l 2 - 84.25 -70.25 43.73046875 -70.25 18.740234375 -45.259765625 c 0 - -6.25 -20.26953125 -6.25 20.25 18.740234375 45.240234375 c 2 - 232.129882812 258.629882812 l 1 - 215.629882812 308.73046875 226.540039062 366.190429688 266.1796875 405.830078125 c 0 - 303.209960938 442.849609375 355.379882812 455.5 402.759765625 443.759765625 c 0 - 411.849609375 441.5 415.040039062 430.219726562 408.419921875 423.599609375 c 2 - 334.059570312 349.240234375 l 1 - 345.370117188 281.360351562 l 1 - 413.25 270.049804688 l 1 - 487.610351562 344.41015625 l 2 - 494.190429688 350.990234375 505.490234375 347.9296875 507.73046875 338.900390625 c 0 -64 -24 m 0 - 77.25 -24 88 -13.25 88 0 c 0 - 88 13.259765625 77.25 24 64 24 c 0 - 50.75 24 40 13.259765625 40 0 c 0 - 40 -13.25 50.75 -24 64 -24 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" w r e n c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" W r e n c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" W R E N C H -EndChar - -StartChar: tasks -Encoding: 61614 61614 199 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -139.610351562 412.5 m 2 - 156.610351562 396 l 2 - 158.512695312 394.0546875 160.057617188 390.266601562 160.057617188 387.545898438 c 0 - 160.057617188 384.783203125 158.47265625 380.954101562 156.51953125 379 c 2 - 84.3203125 306.809570312 l 1 - 68.73046875 291.190429688 l 2 - 66.6875 289.248046875 62.7431640625 287.672851562 59.9248046875 287.672851562 c 0 - 57.107421875 287.672851562 53.162109375 289.248046875 51.1201171875 291.190429688 c 2 - 3.5302734375 338.58984375 l 2 - 1.58203125 340.53125 0.0009765625 344.33984375 0.0009765625 347.08984375 c 0 - 0.0009765625 349.840820312 1.58203125 353.6484375 3.5302734375 355.58984375 c 2 - 19.23046875 371.309570312 l 2 - 21.171875 373.2578125 24.9794921875 374.83984375 27.73046875 374.83984375 c 0 - 30.48046875 374.83984375 34.2880859375 373.2578125 36.23046875 371.309570312 c 2 - 58.9296875 349.190429688 l 1 - 122.610351562 412.5 l 2 - 124.551757812 414.448242188 128.359375 416.029296875 131.110351562 416.029296875 c 0 - 133.860351562 416.029296875 137.668945312 414.448242188 139.610351562 412.5 c 2 -139.610351562 253.309570312 m 2 - 156.58984375 236.309570312 l 2 - 158.486328125 234.377929688 160.024414062 230.612304688 160.024414062 227.905273438 c 0 - 160.024414062 225.157226562 158.4453125 221.3515625 156.5 219.41015625 c 2 - 84.2998046875 147.190429688 l 1 - 68.599609375 131.5 l 2 - 66.55859375 129.55859375 62.6162109375 127.983398438 59.7998046875 127.983398438 c 0 - 56.9833984375 127.983398438 53.041015625 129.55859375 51 131.5 c 2 - 3.5302734375 179 l 2 - 1.58203125 180.94140625 0.0009765625 184.749023438 0.0009765625 187.5 c 0 - 0.0009765625 190.250976562 1.58203125 194.05859375 3.5302734375 196 c 2 - 19.23046875 211.690429688 l 2 - 21.171875 213.638671875 24.9794921875 215.219726562 27.73046875 215.219726562 c 0 - 30.48046875 215.219726562 34.2880859375 213.638671875 36.23046875 211.690429688 c 2 - 58.9296875 189.58984375 l 1 - 122.610351562 253.309570312 l 2 - 124.551757812 255.2578125 128.359375 256.83984375 131.110351562 256.83984375 c 0 - 133.860351562 256.83984375 137.668945312 255.2578125 139.610351562 253.309570312 c 2 -64 80 m 0 - 90.49609375 80 112 58.49609375 112 32 c 0 - 112 5.50390625 90.49609375 -16 64 -16 c 0 - 37.5302734375 -16 15.41015625 5.5 15.41015625 32 c 0 - 15.41015625 58.5 37.509765625 80 64 80 c 0 -496 64 m 2 - 504.83203125 64 512 56.83203125 512 48 c 2 - 512 16 l 2 - 512 7.16796875 504.83203125 0 496 0 c 2 - 208 0 l 2 - 199.16796875 0 192 7.16796875 192 16 c 2 - 192 48 l 2 - 192 56.83203125 199.16796875 64 208 64 c 2 - 496 64 l 2 -496 384 m 2 - 504.83203125 384 512 376.83203125 512 368 c 2 - 512 336 l 2 - 512 327.16796875 504.83203125 320 496 320 c 2 - 208 320 l 2 - 199.16796875 320 192 327.16796875 192 336 c 2 - 192 368 l 2 - 192 376.83203125 199.16796875 384 208 384 c 2 - 496 384 l 2 -496 224 m 2 - 504.83203125 224 512 216.83203125 512 208 c 2 - 512 176 l 2 - 512 167.16796875 504.83203125 160 496 160 c 2 - 208 160 l 2 - 199.16796875 160 192 167.16796875 192 176 c 2 - 192 208 l 2 - 192 216.83203125 199.16796875 224 208 224 c 2 - 496 224 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" t a s k s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T a s k s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T A S K S -EndChar - -StartChar: filter -Encoding: 61616 61616 200 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -487.975585938 448 m 2 - 509.337890625 448 520.021484375 422.103515625 504.947265625 407.029296875 c 2 - 320 222.05859375 l 1 - 320 -39.98046875 l 2 - 320 -59.4931640625 298.01953125 -70.6904296875 282.237304688 -59.6416015625 c 2 - 202.237304688 -3.662109375 l 2 - 195.821289062 0.830078125 192 8.1689453125 192 16 c 2 - 192 222.05859375 l 1 - 7.0576171875 407.029296875 l 2 - -8.046875 422.133789062 2.7099609375 448 24.0283203125 448 c 2 - 487.975585938 448 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" f i l t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" F i l t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" F I L T E R -EndChar - -StartChar: briefcase -Encoding: 61617 61617 201 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320 112 m 2 - 320 160 l 1 - 512 160 l 1 - 512 16 l 2 - 512 -9.599609375 489.599609375 -32 464 -32 c 2 - 48 -32 l 2 - 22.400390625 -32 0 -9.599609375 0 16 c 2 - 0 160 l 1 - 192 160 l 1 - 192 112 l 2 - 192 103.16015625 199.16015625 96 208 96 c 2 - 304 96 l 2 - 312.83984375 96 320 103.16015625 320 112 c 2 -464 320 m 2 - 489.599609375 320 512 297.599609375 512 272 c 2 - 512 192 l 1 - 0 192 l 1 - 0 272 l 2 - 0 297.599609375 22.400390625 320 48 320 c 2 - 128 320 l 1 - 128 368 l 2 - 128 393.599609375 150.400390625 416 176 416 c 2 - 336 416 l 2 - 361.599609375 416 384 393.599609375 384 368 c 2 - 384 320 l 1 - 464 320 l 2 -320 320 m 1 - 320 352 l 1 - 192 352 l 1 - 192 320 l 1 - 320 320 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" b r i e f c a s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" B r i e f c a s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" B R I E F C A S E -EndChar - -StartChar: arrows-alt -Encoding: 61618 61618 202 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -352.201171875 22.224609375 m 2 - 273.004882812 -56.970703125 l 2 - 263.631835938 -66.34375 248.436523438 -66.34375 239.064453125 -56.970703125 c 2 - 159.868164062 22.224609375 l 2 - 144.749023438 37.34375 155.45703125 63.1962890625 176.838867188 63.1953125 c 2 - 228.000976562 63.1953125 l 1 - 228 164 l 1 - 127.196289062 164 l 1 - 127.196289062 112.837890625 l 2 - 127.196289062 91.4560546875 101.344726562 80.748046875 86.224609375 95.8671875 c 2 - 7.029296875 175.063476562 l 2 - -2.34375 184.435546875 -2.34375 199.631835938 7.029296875 209.00390625 c 2 - 86.224609375 288.200195312 l 2 - 101.34375 303.319335938 127.196289062 292.611328125 127.196289062 271.228515625 c 2 - 127.196289062 220 l 1 - 228 220 l 1 - 228 320.803710938 l 1 - 176.76953125 320.803710938 l 2 - 155.387695312 320.803710938 144.6796875 346.655273438 159.798828125 361.775390625 c 2 - 238.995117188 440.970703125 l 2 - 248.368164062 450.34375 263.563476562 450.34375 272.935546875 440.970703125 c 2 - 352.131835938 361.775390625 l 2 - 367.250976562 346.65625 356.54296875 320.803710938 335.161132812 320.803710938 c 2 - 283.999023438 320.803710938 l 1 - 283.999023438 220 l 1 - 384.802734375 220 l 1 - 384.802734375 271.162109375 l 2 - 384.802734375 292.543945312 410.654296875 303.251953125 425.7734375 288.1328125 c 2 - 504.96875 208.936523438 l 2 - 514.341796875 199.564453125 514.341796875 184.368164062 504.96875 174.99609375 c 2 - 425.7734375 95.7998046875 l 2 - 410.654296875 80.6806640625 384.801757812 91.388671875 384.802734375 112.771484375 c 2 - 384.802734375 164 l 1 - 284 164 l 1 - 284 63.1962890625 l 1 - 335.23046875 63.1962890625 l 2 - 356.612304688 63.1962890625 367.3203125 37.3447265625 352.201171875 22.224609375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" a r r o w s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A r r o w s hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A r r o w s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A R R O W S hyphen A L T -EndChar - -StartChar: users -Encoding: 61632 61632 203 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 224 m 0 - 60.7001953125 224 32 252.700195312 32 288 c 0 - 32 323.299804688 60.7001953125 352 96 352 c 0 - 131.299804688 352 160 323.299804688 160 288 c 0 - 160 252.700195312 131.299804688 224 96 224 c 0 -544 224 m 0 - 508.700195312 224 480 252.700195312 480 288 c 0 - 480 323.299804688 508.700195312 352 544 352 c 0 - 579.299804688 352 608 323.299804688 608 288 c 0 - 608 252.700195312 579.299804688 224 544 224 c 0 -576 192 m 2 - 611.299804688 192 640 163.299804688 640 128 c 2 - 640 96 l 2 - 640 78.2998046875 625.700195312 64 608 64 c 2 - 542 64 l 1 - 535.799804688 111.400390625 507.200195312 151.299804688 466.900390625 173.400390625 c 1 - 478.5 184.900390625 494.400390625 192 512 192 c 2 - 576 192 l 2 -320 192 m 0 - 258.099609375 192 208 242.099609375 208 304 c 0 - 208 365.900390625 258.099609375 416 320 416 c 0 - 381.900390625 416 432 365.900390625 432 304 c 0 - 432 242.099609375 381.900390625 192 320 192 c 0 -396.799804688 160 m 2 - 460.400390625 160 512 108.400390625 512 44.7998046875 c 2 - 512 16 l 2 - 512 -10.5 490.5 -32 464 -32 c 2 - 176 -32 l 2 - 149.5 -32 128 -10.5 128 16 c 2 - 128 44.7998046875 l 2 - 128 108.400390625 179.599609375 160 243.200195312 160 c 2 - 251.5 160 l 1 - 272.400390625 150 295.400390625 144 320 144 c 0 - 344.599609375 144 367.700195312 150 388.5 160 c 1 - 396.799804688 160 l 2 -173.099609375 173.400390625 m 1 - 132.799804688 151.299804688 104.200195312 111.400390625 97.900390625 64 c 1 - 32 64 l 2 - 14.2998046875 64 0 78.2998046875 0 96 c 2 - 0 128 l 2 - 0 163.299804688 28.7001953125 192 64 192 c 2 - 128 192 l 2 - 145.599609375 192 161.5 184.900390625 173.099609375 173.400390625 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" u s e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" U s e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" U S E R S -EndChar - -StartChar: link -Encoding: 61633 61633 204 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -326.612304688 262.609375 m 0 - 386.359375 202.799804688 385.5390625 106.911132812 326.971679688 48.0185546875 c 0 - 326.862304688 47.8994140625 326.732421875 47.7685546875 326.612304688 47.6494140625 c 2 - 259.412109375 -19.55078125 l 2 - 200.141601562 -78.8212890625 103.712890625 -78.8134765625 44.4521484375 -19.55078125 c 0 - -14.818359375 39.708984375 -14.818359375 136.149414062 44.4521484375 195.409179688 c 2 - 81.5576171875 232.514648438 l 2 - 91.3984375 242.35546875 108.34375 235.815429688 108.8515625 221.909179688 c 0 - 109.5 204.186523438 112.677734375 186.381835938 118.541992188 169.188476562 c 0 - 120.528320312 163.366210938 119.109375 156.92578125 114.758789062 152.576171875 c 2 - 101.671875 139.489257812 l 2 - 73.646484375 111.462890625 72.7666015625 65.8291015625 100.516601562 37.529296875 c 0 - 128.541015625 8.9501953125 174.602539062 8.7802734375 202.841796875 37.0185546875 c 2 - 270.041992188 104.208984375 l 2 - 298.233398438 132.400390625 298.115234375 177.965820312 270.041992188 206.0390625 c 0 - 266.340820312 209.733398438 262.61328125 212.602539062 259.701171875 214.608398438 c 0 - 256.036132812 217.124023438 252.923828125 222.771484375 252.75390625 227.213867188 c 0 - 252.358398438 237.78125 256.1015625 248.669921875 264.452148438 257.01953125 c 2 - 285.505859375 278.075195312 l 2 - 291.02734375 283.595703125 299.688476562 284.274414062 306.08984375 279.805664062 c 0 - 312.172851562 275.55859375 321.366210938 267.854492188 326.612304688 262.609375 c 0 -467.546875 403.55078125 m 0 - 526.817382812 344.291015625 526.817382812 247.850585938 467.545898438 188.591796875 c 2 - 430.440429688 151.486328125 l 2 - 420.599609375 141.646484375 403.655273438 148.185546875 403.146484375 162.091796875 c 0 - 402.498046875 179.814453125 399.3203125 197.619140625 393.456054688 214.813476562 c 0 - 391.469726562 220.634765625 392.888671875 227.075195312 397.239257812 231.424804688 c 2 - 410.326171875 244.51171875 l 2 - 438.352539062 272.538085938 439.231445312 318.171875 411.481445312 346.471679688 c 0 - 383.456054688 375.05078125 337.39453125 375.220703125 309.15625 346.982421875 c 2 - 241.956054688 279.791992188 l 2 - 213.764648438 251.600585938 213.8828125 206.03515625 241.956054688 177.961914062 c 0 - 245.657226562 174.267578125 249.384765625 171.3984375 252.296875 169.392578125 c 0 - 255.961914062 166.876953125 259.07421875 161.229492188 259.244140625 156.787109375 c 0 - 259.639648438 146.219726562 255.896484375 135.331054688 247.545898438 126.981445312 c 2 - 226.4921875 105.92578125 l 2 - 220.971679688 100.40625 212.309570312 99.7265625 205.908203125 104.1953125 c 0 - 199.826171875 108.44140625 190.6328125 116.145507812 185.38671875 121.390625 c 0 - 125.639648438 181.200195312 126.4609375 277.088867188 185.02734375 335.981445312 c 0 - 185.13671875 336.100585938 185.266601562 336.231445312 185.38671875 336.350585938 c 2 - 252.586914062 403.55078125 l 2 - 311.857421875 462.821289062 408.286132812 462.813476562 467.546875 403.55078125 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" l i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" L I N K -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" L i n k -EndChar - -StartChar: cloud -Encoding: 61634 61634 205 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -537.599609375 221.400390625 m 1 - 596 209.599609375 640 157.900390625 640 96 c 0 - 640 25.2998046875 582.700195312 -32 512 -32 c 2 - 144 -32 l 2 - 64.5 -32 0 32.5 0 112 c 0 - 0 174.799804688 40.2001953125 228.200195312 96.2001953125 247.900390625 c 0 - 96.099609375 250.599609375 96 253.299804688 96 256 c 0 - 96 344.400390625 167.599609375 416 256 416 c 0 - 315.299804688 416 367 383.799804688 394.700195312 335.799804688 c 1 - 409.900390625 346 428.299804688 352 448 352 c 0 - 501 352 544 309 544 256 c 0 - 544 243.799804688 541.700195312 232.099609375 537.599609375 221.400390625 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" c l o u d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" C l o u d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" C L O U D -EndChar - -StartChar: flask -Encoding: 61635 61635 206 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -437.200195312 44.5 m 2 - 466.5 -2.5 432.799804688 -64 377.099609375 -64 c 2 - 70.900390625 -64 l 2 - 15.2998046875 -64 -18.5 -2.599609375 10.7998046875 44.5 c 2 - 128 233 l 1 - 128 384 l 1 - 120 384 l 2 - 106.700195312 384 96 394.700195312 96 408 c 2 - 96 424 l 2 - 96 437.299804688 106.700195312 448 120 448 c 2 - 328 448 l 2 - 341.299804688 448 352 437.299804688 352 424 c 2 - 352 408 l 2 - 352 394.700195312 341.299804688 384 328 384 c 2 - 320 384 l 1 - 320 233 l 1 - 437.200195312 44.5 l 2 -137.900390625 128 m 1 - 309.900390625 128 l 1 - 261.700195312 205.599609375 l 2 - 258.099609375 210.799804688 255.900390625 217.099609375 255.900390625 224 c 2 - 255.900390625 384 l 1 - 191.900390625 384 l 1 - 191.900390625 224 l 2 - 191.900390625 217.200195312 189.799804688 210.799804688 186.099609375 205.599609375 c 2 - 137.900390625 128 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" f l a s k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" F l a s k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" F L A S K -EndChar - -StartChar: cut -Encoding: 61636 61636 207 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -278.059570312 192 m 1 - 444.48046875 25.5703125 l 2 - 449.169921875 20.8798828125 449.169921875 13.2802734375 444.48046875 8.599609375 c 0 - 411.6796875 -24.2001953125 358.490234375 -24.2001953125 325.690429688 8.599609375 c 2 - 210.1796875 124.120117188 l 1 - 185.3203125 99.259765625 l 1 - 189.629882812 88.33984375 192 76.4501953125 192 64 c 0 - 192 10.98046875 149.01953125 -32 96 -32 c 0 - 42.98046875 -32 0 10.98046875 0 64 c 0 - 0 117.01953125 42.98046875 160 96 160 c 0 - 100.530273438 160 104.990234375 159.6796875 109.360351562 159.0703125 c 2 - 142.290039062 192 l 1 - 109.360351562 224.9296875 l 2 - 104.990234375 224.3203125 100.540039062 224 96 224 c 0 - 42.98046875 224 0 266.98046875 0 320 c 0 - 0 373.01953125 42.98046875 416 96 416 c 0 - 149.01953125 416 192 373.01953125 192 320 c 0 - 192 307.549804688 189.629882812 295.66015625 185.3203125 284.740234375 c 1 - 210.1796875 259.879882812 l 1 - 325.690429688 375.400390625 l 2 - 358.490234375 408.200195312 411.6796875 408.200195312 444.48046875 375.400390625 c 0 - 449.169921875 370.719726562 449.169921875 363.120117188 444.48046875 358.4296875 c 2 - 278.059570312 192 l 1 -96 288 m 0 - 113.639648438 288 128 302.360351562 128 320 c 0 - 128 337.639648438 113.639648438 352 96 352 c 0 - 78.3603515625 352 64 337.639648438 64 320 c 0 - 64 302.360351562 78.3603515625 288 96 288 c 0 -96 32 m 0 - 113.639648438 32 128 46.3603515625 128 64 c 0 - 128 81.6396484375 113.639648438 96 96 96 c 0 - 78.3603515625 96 64 81.6396484375 64 64 c 0 - 64 46.3603515625 78.3603515625 32 96 32 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" c u t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" C u t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" C U T -EndChar - -StartChar: copy -Encoding: 61637 61637 208 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320 0 m 1 - 320 -40 l 2 - 320 -53.2548828125 309.254882812 -64 296 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 328 l 2 - 0 341.254882812 10.7451171875 352 24 352 c 2 - 96 352 l 1 - 96 56 l 2 - 96 25.12109375 121.12109375 0 152 0 c 2 - 320 0 l 1 -320 344 m 2 - 320 330.799804688 330.799804688 320 344 320 c 2 - 448 320 l 1 - 448 56 l 2 - 448 42.7451171875 437.254882812 32 424 32 c 2 - 152 32 l 2 - 138.745117188 32 128 42.7451171875 128 56 c 2 - 128 424 l 2 - 128 437.254882812 138.745117188 448 152 448 c 2 - 320 448 l 1 - 320 344 l 2 -440.970703125 375.029296875 m 2 - 444.850585938 371.1484375 448 363.545898438 448 358.05859375 c 2 - 448 352 l 1 - 352 352 l 1 - 352 448 l 1 - 358.05859375 448 l 2 - 363.545898438 448 371.1484375 444.850585938 375.029296875 440.970703125 c 2 - 440.970703125 375.029296875 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" c o p y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C o p y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C O P Y -EndChar - -StartChar: paperclip -Encoding: 61638 61638 209 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -43.24609375 -18.1416015625 m 0 - -15.18359375 42.1474609375 -14.0947265625 139.369140625 44.6318359375 199.439453125 c 2 - 254.391601562 414 l 2 - 298.708007812 459.33203125 370.743164062 459.3359375 415.063476562 414 c 0 - 458.953125 369.106445312 459.005859375 296.670898438 415.063476562 251.723632812 c 2 - 232.213867188 64.8720703125 l 2 - 202.359375 34.3349609375 153.581054688 34.7607421875 124.232421875 65.8701171875 c 0 - 95.95703125 95.83984375 96.8642578125 143.342773438 125.68359375 172.823242188 c 2 - 269.426757812 319.658203125 l 2 - 275.609375 325.971679688 285.739257812 326.080078125 292.052734375 319.899414062 c 2 - 314.9140625 297.51953125 l 2 - 321.228515625 291.337890625 321.3359375 281.208007812 315.155273438 274.893554688 c 2 - 171.426757812 128.073242188 l 2 - 166.495117188 123.028320312 166.19140625 114.64453125 170.779296875 109.78125 c 0 - 175.151367188 105.147460938 182.024414062 105.0703125 186.466796875 109.616210938 c 2 - 369.31640625 296.466796875 l 2 - 388.928710938 316.529296875 388.928710938 349.192382812 369.3046875 369.264648438 c 0 - 350.116210938 388.891601562 319.34765625 388.90234375 300.151367188 369.264648438 c 2 - 90.3896484375 154.705078125 l 2 - 55.626953125 119.14453125 55.0908203125 61.5849609375 89.19921875 26.3916015625 c 0 - 123.208984375 -8.701171875 178.18359375 -8.7451171875 212.256835938 26.1064453125 c 2 - 384.317382812 202.10546875 l 2 - 390.494140625 208.423828125 400.624023438 208.538085938 406.943359375 202.361328125 c 2 - 429.8203125 179.997070312 l 2 - 436.138671875 173.8203125 436.25390625 163.690429688 430.076171875 157.37109375 c 2 - 258.015625 -18.626953125 l 2 - 198.440429688 -79.5654296875 102.073242188 -78.8427734375 43.24609375 -18.1416015625 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" p a p e r c l i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" P a p e r c l i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" P A P E R C L I P -EndChar - -StartChar: save -Encoding: 61639 61639 210 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -433.94140625 318.05859375 m 2 - 441.701171875 310.298828125 448 295.092773438 448 284.118164062 c 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 316.118164062 416 l 2 - 327.092773438 416 342.298828125 409.701171875 350.05859375 401.94140625 c 2 - 433.94140625 318.05859375 l 2 -224 32 m 0 - 259.345703125 32 288 60.654296875 288 96 c 0 - 288 131.345703125 259.345703125 160 224 160 c 0 - 188.654296875 160 160 131.345703125 160 96 c 0 - 160 60.654296875 188.654296875 32 224 32 c 0 -320 336.51953125 m 2 - 320 339.262695312 318.424804688 343.065429688 316.485351562 345.004882812 c 2 - 313.004882812 348.485351562 l 2 - 310.754882812 350.736328125 307.703125 352 304.51953125 352 c 2 - 76 352 l 2 - 69.373046875 352 64 346.626953125 64 340 c 2 - 64 236 l 2 - 64 229.373046875 69.373046875 224 76 224 c 2 - 308 224 l 2 - 314.626953125 224 320 229.373046875 320 236 c 2 - 320 336.51953125 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" s a v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S a v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S A V E -EndChar - -StartChar: square -Encoding: 61640 61640 211 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.5 416 448 394.5 448 368 c 2 - 448 16 l 2 - 448 -10.5 426.5 -32 400 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 400 416 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S Q U A R E -EndChar - -StartChar: bars -Encoding: 61641 61641 212 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -16 316 m 2 - 7.1630859375 316 0 323.163085938 0 332 c 2 - 0 372 l 2 - 0 380.836914062 7.1630859375 388 16 388 c 2 - 432 388 l 2 - 440.836914062 388 448 380.836914062 448 372 c 2 - 448 332 l 2 - 448 323.163085938 440.836914062 316 432 316 c 2 - 16 316 l 2 -16 156 m 2 - 7.1630859375 156 0 163.163085938 0 172 c 2 - 0 212 l 2 - 0 220.836914062 7.1630859375 228 16 228 c 2 - 432 228 l 2 - 440.836914062 228 448 220.836914062 448 212 c 2 - 448 172 l 2 - 448 163.163085938 440.836914062 156 432 156 c 2 - 16 156 l 2 -16 -4 m 2 - 7.1630859375 -4 0 3.1630859375 0 12 c 2 - 0 52 l 2 - 0 60.8369140625 7.1630859375 68 16 68 c 2 - 432 68 l 2 - 440.836914062 68 448 60.8369140625 448 52 c 2 - 448 12 l 2 - 448 3.1630859375 440.836914062 -4 432 -4 c 2 - 16 -4 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" b a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B A R S -EndChar - -StartChar: list-ul -Encoding: 61642 61642 213 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -48 400 m 0 - 74.49609375 400 96 378.49609375 96 352 c 0 - 96 325.50390625 74.49609375 304 48 304 c 0 - 21.50390625 304 0 325.50390625 0 352 c 0 - 0 378.49609375 21.50390625 400 48 400 c 0 -48 240 m 0 - 74.49609375 240 96 218.49609375 96 192 c 0 - 96 165.50390625 74.49609375 144 48 144 c 0 - 21.50390625 144 0 165.50390625 0 192 c 0 - 0 218.49609375 21.50390625 240 48 240 c 0 -48 80 m 0 - 74.49609375 80 96 58.49609375 96 32 c 0 - 96 5.50390625 74.49609375 -16 48 -16 c 0 - 21.50390625 -16 0 5.50390625 0 32 c 0 - 0 58.49609375 21.50390625 80 48 80 c 0 -496 64 m 2 - 504.83203125 64 512 56.83203125 512 48 c 2 - 512 16 l 2 - 512 7.16796875 504.83203125 0 496 0 c 2 - 176 0 l 2 - 167.16796875 0 160 7.16796875 160 16 c 2 - 160 48 l 2 - 160 56.83203125 167.16796875 64 176 64 c 2 - 496 64 l 2 -496 384 m 2 - 504.83203125 384 512 376.83203125 512 368 c 2 - 512 336 l 2 - 512 327.16796875 504.83203125 320 496 320 c 2 - 176 320 l 2 - 167.16796875 320 160 327.16796875 160 336 c 2 - 160 368 l 2 - 160 376.83203125 167.16796875 384 176 384 c 2 - 496 384 l 2 -496 224 m 2 - 504.83203125 224 512 216.83203125 512 208 c 2 - 512 176 l 2 - 512 167.16796875 504.83203125 160 496 160 c 2 - 176 160 l 2 - 167.16796875 160 160 167.16796875 160 176 c 2 - 160 208 l 2 - 160 216.83203125 167.16796875 224 176 224 c 2 - 496 224 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" l i s t hyphen u l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" L i s t hyphen U l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" L i s t hyphen u l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" L I S T hyphen U L -EndChar - -StartChar: list-ol -Encoding: 61643 61643 214 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -61.76953125 47 m 1 - 81.3798828125 41.8798828125 90.4697265625 26.5 90.5 12.1201171875 c 0 - 90.5 -9.25 76.16015625 -32 42 -32 c 0 - 25.3798828125 -32 12.7099609375 -27.25 5 -22.5595703125 c 0 - -0.8203125 -18.33984375 -1.349609375 -12.75 2.3701171875 -6.6201171875 c 2 - 7.9599609375 2.6904296875 l 2 - 11.8203125 9.3095703125 17.0703125 9.6904296875 23.5595703125 5.8095703125 c 0 - 27.6630859375 4.123046875 34.59375 2.724609375 39.0302734375 2.6904296875 c 0 - 49.1904296875 2.6904296875 53.3896484375 6.1904296875 53.3896484375 10.91015625 c 0 - 53.3896484375 17.5595703125 47.7802734375 20 37.4501953125 20 c 2 - 32.7197265625 20 l 2 - 26.759765625 20 23.4697265625 22.1201171875 20.4697265625 27.8798828125 c 2 - 19.419921875 29.8095703125 l 2 - 16.9697265625 34.5595703125 18.2197265625 39.6201171875 22.2197265625 44.6904296875 c 2 - 27.830078125 51.6904296875 l 2 - 30.6875 55.2470703125 35.615234375 60.76171875 38.830078125 64 c 2 - 16 64 l 2 - 11.583984375 64 8 67.583984375 8 72 c 2 - 8 88 l 2 - 8 92.416015625 11.583984375 96 16 96 c 2 - 73 96 l 2 - 80.5 96 84.33984375 92 84.33984375 84.650390625 c 2 - 84.33984375 81.33984375 l 2 - 84.3505859375 81.0947265625 84.3603515625 80.6953125 84.3603515625 80.44921875 c 0 - 84.3603515625 76.2412109375 82.080078125 70.283203125 79.26953125 67.150390625 c 2 - 61.76953125 47 l 1 -496 224 m 2 - 504.83203125 224 512 216.83203125 512 208 c 2 - 512 176 l 2 - 512 167.16796875 504.83203125 160 496 160 c 2 - 176 160 l 2 - 167.16796875 160 160 167.16796875 160 176 c 2 - 160 208 l 2 - 160 216.83203125 167.16796875 224 176 224 c 2 - 496 224 l 2 -496 384 m 2 - 504.83203125 384 512 376.83203125 512 368 c 2 - 512 336 l 2 - 512 327.16796875 504.83203125 320 496 320 c 2 - 176 320 l 2 - 167.16796875 320 160 327.16796875 160 336 c 2 - 160 368 l 2 - 160 376.83203125 167.16796875 384 176 384 c 2 - 496 384 l 2 -496 64 m 2 - 504.83203125 64 512 56.83203125 512 48 c 2 - 512 16 l 2 - 512 7.16796875 504.83203125 0 496 0 c 2 - 176 0 l 2 - 167.16796875 0 160 7.16796875 160 16 c 2 - 160 48 l 2 - 160 56.83203125 167.16796875 64 176 64 c 2 - 496 64 l 2 -16 288 m 2 - 11.583984375 288 8 291.583984375 8 296 c 2 - 8 312 l 2 - 8 316.416015625 11.583984375 320 16 320 c 2 - 32 320 l 1 - 32 384 l 1 - 24 384 l 2 - 19.591796875 384.0078125 16.0146484375 387.591796875 16.0146484375 392 c 0 - 16.0146484375 393.04296875 16.3935546875 394.647460938 16.8603515625 395.580078125 c 2 - 24.8603515625 411.580078125 l 2 - 26.078125 414.014648438 29.27734375 415.995117188 32 416 c 2 - 56 416 l 2 - 60.416015625 416 64 412.416015625 64 408 c 2 - 64 320 l 1 - 80 320 l 2 - 84.416015625 320 88 316.416015625 88 312 c 2 - 88 296 l 2 - 88 291.583984375 84.416015625 288 80 288 c 2 - 16 288 l 2 -12.08984375 128 m 2 - 5.080078125 128 0 132 0 139.41015625 c 2 - 0 143.41015625 l 2 - 0 190.690429688 51 199.809570312 50.9697265625 212.530273438 c 0 - 50.9697265625 219.719726562 45.01953125 221.280273438 41.6904296875 221.280273438 c 2 - 41.6357421875 221.280273438 l 2 - 38.607421875 221.280273438 34.3935546875 219.559570312 32.23046875 217.440429688 c 0 - 27.1103515625 212.530273438 21.7197265625 210.440429688 16.1103515625 215 c 2 - 7.5302734375 221.879882812 l 2 - 1.73046875 226.41015625 0.3603515625 231.66015625 4.73046875 237.25 c 0 - 11.3896484375 246 23.830078125 256 45.1904296875 256 c 0 - 64.66015625 256 89.66015625 245.5 89.66015625 216.440429688 c 0 - 89.66015625 178.6796875 44.6103515625 170.290039062 41.3203125 160 c 1 - 80 160 l 2 - 84.416015625 160 88 156.416015625 88 152 c 2 - 88 136 l 2 - 88 131.583984375 84.416015625 128 80 128 c 2 - 12.08984375 128 l 2 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" l i s t hyphen o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" L i s t hyphen O l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" L i s t hyphen o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" L I S T hyphen O L -EndChar - -StartChar: strikethrough -Encoding: 61644 61644 215 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 224 m 2 - 504.83203125 224 512 216.83203125 512 208 c 2 - 512 176 l 2 - 512 167.16796875 504.83203125 160 496 160 c 2 - 16 160 l 2 - 7.16796875 160 0 167.16796875 0 176 c 2 - 0 208 l 2 - 0 216.83203125 7.16796875 224 16 224 c 2 - 118.290039062 224 l 1 - 106.610351562 240.530273438 98.509765625 259.469726562 96.509765625 280.360351562 c 0 - 96.1904296875 283.653320312 95.9306640625 289.01171875 95.9306640625 292.3203125 c 0 - 95.9306640625 360.536132812 151.293945312 415.944335938 219.509765625 416 c 2 - 287.509765625 416 l 1 - 287.521484375 416 l 2 - 331.208007812 416 382.5078125 384.28125 402.030273438 345.200195312 c 2 - 402.559570312 344.200195312 l 2 - 403.490234375 342.336914062 404.24609375 339.133789062 404.24609375 337.051757812 c 0 - 404.24609375 331.592773438 400.283203125 325.180664062 395.400390625 322.740234375 c 2 - 352.459960938 301.26953125 l 2 - 350.595703125 300.337890625 347.391601562 299.58203125 345.307617188 299.58203125 c 0 - 339.8515625 299.58203125 333.442382812 303.541992188 331 308.419921875 c 0 - 323.388671875 323.64453125 303.397460938 336 286.375976562 336 c 2 - 286.33984375 336 l 1 - 219.549804688 336 l 2 - 195.510742188 335.999023438 176.000976562 316.489257812 176.000976562 292.450195312 c 0 - 176.000976562 274.701171875 189.767578125 256.055664062 206.73046875 250.830078125 c 2 - 293.900390625 224 l 1 - 496 224 l 2 -315.759765625 128 m 1 - 410.150390625 128 l 1 - 412.362304688 121.438476562 414.75390625 110.525390625 415.490234375 103.639648438 c 0 - 415.809570312 100.346679688 416.069335938 94.98828125 416.069335938 91.6796875 c 0 - 416.069335938 23.4638671875 360.706054688 -31.9443359375 292.490234375 -32 c 2 - 224.490234375 -32 l 1 - 224.478515625 -32 l 2 - 180.791992188 -32 129.4921875 -0.28125 109.969726562 38.7998046875 c 2 - 109.440429688 39.7998046875 l 2 - 108.509765625 41.6630859375 107.75390625 44.8662109375 107.75390625 46.9482421875 c 0 - 107.75390625 52.4072265625 111.716796875 58.8193359375 116.599609375 61.259765625 c 2 - 159.540039062 82.73046875 l 2 - 161.404296875 83.662109375 164.608398438 84.41796875 166.692382812 84.41796875 c 0 - 172.1484375 84.41796875 178.557617188 80.4580078125 181 75.580078125 c 0 - 188.611328125 60.35546875 208.602539062 48 225.624023438 48 c 2 - 225.66015625 48 l 1 - 292.450195312 48 l 2 - 316.467773438 48.0224609375 335.977539062 67.5322265625 336 91.5498046875 c 0 - 335.990234375 104.70703125 326.922851562 121.036132812 315.759765625 128 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" s t r i k e t h r o u g h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S t r i k e t h r o u g h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S T R I K E T H R O U G H -EndChar - -StartChar: underline -Encoding: 61645 61645 216 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 384 m 2 - 23.16796875 384 16 391.16796875 16 400 c 2 - 16 432 l 2 - 16 440.83203125 23.16796875 448 32 448 c 2 - 176 448 l 2 - 184.83203125 448 192 440.83203125 192 432 c 2 - 192 400 l 2 - 192 391.16796875 184.83203125 384 176 384 c 2 - 144 384 l 1 - 144 224 l 2 - 144 179.83984375 179.83984375 144 224 144 c 0 - 268.16015625 144 304 179.83984375 304 224 c 2 - 304 384 l 1 - 272 384 l 2 - 263.16796875 384 256 391.16796875 256 400 c 2 - 256 432 l 2 - 256 440.83203125 263.16796875 448 272 448 c 2 - 416 448 l 2 - 424.83203125 448 432 440.83203125 432 432 c 2 - 432 400 l 2 - 432 391.16796875 424.83203125 384 416 384 c 2 - 384 384 l 1 - 384 224 l 2 - 384 135.780273438 312.219726562 64 224 64 c 0 - 135.780273438 64 64 135.780273438 64 224 c 2 - 64 384 l 1 - 32 384 l 2 -432 0 m 2 - 440.83203125 0 448 -7.16796875 448 -16 c 2 - 448 -48 l 2 - 448 -56.83203125 440.83203125 -64 432 -64 c 2 - 16 -64 l 2 - 7.16796875 -64 0 -56.83203125 0 -48 c 2 - 0 -16 l 2 - 0 -7.16796875 7.16796875 0 16 0 c 2 - 432 0 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" u n d e r l i n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" U N D E R L I N E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" U n d e r l i n e -EndChar - -StartChar: table -Encoding: 61646 61646 217 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 416 m 2 - 490.509765625 416 512 394.509765625 512 368 c 2 - 512 16 l 2 - 512 -10.509765625 490.509765625 -32 464 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 464 416 l 2 -224 32 m 1 - 224 128 l 1 - 64 128 l 1 - 64 32 l 1 - 224 32 l 1 -224 192 m 1 - 224 288 l 1 - 64 288 l 1 - 64 192 l 1 - 224 192 l 1 -448 32 m 1 - 448 128 l 1 - 288 128 l 1 - 288 32 l 1 - 448 32 l 1 -448 192 m 1 - 448 288 l 1 - 288 288 l 1 - 288 192 l 1 - 448 192 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" t a b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" T a b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" T A B L E -EndChar - -StartChar: magic -Encoding: 61648 61648 218 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 352 m 1 - 208 384 l 1 - 176 400 l 1 - 208 416 l 1 - 224 448 l 1 - 240 416 l 1 - 272 400 l 1 - 240 384 l 1 - 224 352 l 1 -80 288 m 1 - 53.33984375 341.330078125 l 1 - 0 368 l 1 - 53.33984375 394.669921875 l 1 - 80 448 l 1 - 106.66015625 394.669921875 l 1 - 160 368 l 1 - 106.66015625 341.330078125 l 1 - 80 288 l 1 -432 160 m 1 - 458.66015625 106.669921875 l 1 - 512 80 l 1 - 458.66015625 53.330078125 l 1 - 432 0 l 1 - 405.33984375 53.330078125 l 1 - 352 80 l 1 - 405.33984375 106.669921875 l 1 - 432 160 l 1 -502.620117188 353.76953125 m 2 - 515.120117188 341.280273438 515.120117188 321.009765625 502.620117188 308.530273438 c 2 - 139.48046875 -54.6201171875 l 2 - 133.23046875 -60.8701171875 125.040039062 -63.990234375 116.849609375 -63.990234375 c 0 - 108.669921875 -63.990234375 100.48046875 -60.8701171875 94.23046875 -54.6201171875 c 2 - 9.3798828125 30.23046875 l 2 - -3.1201171875 42.7197265625 -3.1201171875 62.98046875 9.3798828125 75.48046875 c 2 - 372.51953125 438.620117188 l 2 - 378.76953125 444.879882812 386.959960938 448 395.150390625 448 c 0 - 403.33984375 448 411.530273438 444.879882812 417.76953125 438.620117188 c 2 - 502.620117188 353.76953125 l 2 -359.450195312 244.540039062 m 1 - 446.049804688 331.139648438 l 1 - 395.139648438 382.049804688 l 1 - 308.540039062 295.450195312 l 1 - 359.450195312 244.540039062 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" m a g i c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" M A G I C -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" M a g i c -EndChar - -StartChar: truck -Encoding: 61649 61649 219 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 96 m 2 - 632.799804688 96 640 88.7998046875 640 80 c 2 - 640 48 l 2 - 640 39.2001953125 632.799804688 32 624 32 c 2 - 576 32 l 1 - 576 -21 533 -64 480 -64 c 0 - 427 -64 384 -21 384 32 c 1 - 256 32 l 1 - 256 -21 213 -64 160 -64 c 0 - 107 -64 64 -21 64 32 c 1 - 48 32 l 2 - 21.5 32 0 53.5 0 80 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 368 448 l 2 - 394.5 448 416 426.5 416 400 c 2 - 416 352 l 1 - 460.099609375 352 l 2 - 472.799804688 352 485 346.900390625 494 337.900390625 c 2 - 593.900390625 238 l 2 - 602.900390625 229 608 216.799804688 608 204.099609375 c 2 - 608 96 l 1 - 624 96 l 2 -160 -16 m 0 - 186.5 -16 208 5.5 208 32 c 0 - 208 58.5 186.5 80 160 80 c 0 - 133.5 80 112 58.5 112 32 c 0 - 112 5.5 133.5 -16 160 -16 c 0 -480 -16 m 0 - 506.5 -16 528 5.5 528 32 c 0 - 528 58.5 506.5 80 480 80 c 0 - 453.5 80 432 58.5 432 32 c 0 - 432 5.5 453.5 -16 480 -16 c 0 -560 192 m 1 - 560 204.099609375 l 1 - 460.099609375 304 l 1 - 416 304 l 1 - 416 192 l 1 - 560 192 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" t r u c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T r u c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T R U C K -EndChar - -StartChar: money-bill -Encoding: 61654 61654 220 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -608 384 m 2 - 625.669921875 384 640 369.669921875 640 352 c 2 - 640 32 l 2 - 640 14.330078125 625.669921875 0 608 0 c 2 - 32 0 l 2 - 14.330078125 0 0 14.330078125 0 32 c 2 - 0 352 l 2 - 0 369.669921875 14.330078125 384 32 384 c 2 - 608 384 l 2 -48 48 m 1 - 112 48 l 1 - 112 83.349609375 83.349609375 112 48 112 c 1 - 48 48 l 1 -48 272 m 1 - 83.349609375 272 112 300.650390625 112 336 c 1 - 48 336 l 1 - 48 272 l 1 -320 96 m 0 - 364.169921875 96 400 138.969726562 400 192 c 0 - 400 245.01953125 364.1796875 288 320 288 c 0 - 275.8203125 288 240 245.01953125 240 192 c 0 - 240 138.990234375 275.809570312 96 320 96 c 0 -592 48 m 1 - 592 112 l 1 - 556.650390625 112 528 83.349609375 528 48 c 1 - 592 48 l 1 -592 272 m 1 - 592 336 l 1 - 528 336 l 1 - 528 300.650390625 556.650390625 272 592 272 c 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" m o n e y hyphen b i l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" M o n e y hyphen B i l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" M o n e y hyphen b i l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" M O N E Y hyphen B I L L -EndChar - -StartChar: caret-down -Encoding: 61655 61655 221 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -31.2998046875 256 m 2 - 288.599609375 256 l 2 - 306.400390625 256 315.299804688 234.5 302.700195312 221.900390625 c 2 - 174.099609375 93.2001953125 l 2 - 166.299804688 85.400390625 153.599609375 85.400390625 145.799804688 93.2001953125 c 2 - 17.2001953125 221.900390625 l 2 - 4.599609375 234.5 13.5 256 31.2998046875 256 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" c a r e t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C a r e t hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C a r e t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C A R E T hyphen D O W N -EndChar - -StartChar: caret-up -Encoding: 61656 61656 222 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288.662109375 96 m 2 - 31.337890625 96 l 2 - 13.51953125 96 4.5966796875 117.54296875 17.1962890625 130.141601562 c 2 - 145.858398438 258.803710938 l 2 - 153.66796875 266.614257812 166.33203125 266.614257812 174.141601562 258.803710938 c 2 - 302.803710938 130.141601562 l 2 - 315.404296875 117.54296875 306.48046875 96 288.662109375 96 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" c a r e t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" C a r e t hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" C a r e t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" C A R E T hyphen U P -EndChar - -StartChar: caret-left -Encoding: 61657 61657 223 -Width: 192 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 320.662109375 m 2 - 192 63.337890625 l 2 - 192 45.51953125 170.45703125 36.5966796875 157.858398438 49.1962890625 c 2 - 29.1962890625 177.858398438 l 2 - 21.3857421875 185.66796875 21.3857421875 198.33203125 29.1962890625 206.141601562 c 2 - 157.858398438 334.803710938 l 2 - 170.45703125 347.404296875 192 338.48046875 192 320.662109375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" c a r e t hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C a r e t hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C a r e t hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C A R E T hyphen L E F T -EndChar - -StartChar: caret-right -Encoding: 61658 61658 224 -Width: 192 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 63.337890625 m 2 - 0 320.662109375 l 2 - 0 338.48046875 21.54296875 347.403320312 34.1416015625 334.803710938 c 2 - 162.803710938 206.141601562 l 2 - 170.614257812 198.33203125 170.614257812 185.66796875 162.803710938 177.858398438 c 2 - 34.1416015625 49.1962890625 l 2 - 21.54296875 36.595703125 0 45.51953125 0 63.337890625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" c a r e t hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C a r e t hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C a r e t hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C A R E T hyphen R I G H T -EndChar - -StartChar: columns -Encoding: 61659 61659 225 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 416 m 2 - 490.509765625 416 512 394.509765625 512 368 c 2 - 512 16 l 2 - 512 -10.509765625 490.509765625 -32 464 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 464 416 l 2 -224 32 m 1 - 224 288 l 1 - 64 288 l 1 - 64 32 l 1 - 224 32 l 1 -448 32 m 1 - 448 288 l 1 - 288 288 l 1 - 288 32 l 1 - 448 32 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" c o l u m n s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" C o l u m n s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" C O L U M N S -EndChar - -StartChar: sort -Encoding: 61660 61660 226 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -41 160 m 2 - 279 160 l 2 - 300.400390625 160 311.099609375 134.099609375 296 119 c 2 - 177 0 l 2 - 167.599609375 -9.400390625 152.400390625 -9.400390625 143.099609375 0 c 2 - 24 119 l 2 - 8.900390625 134.099609375 19.599609375 160 41 160 c 2 -296 265 m 2 - 311.099609375 249.900390625 300.400390625 224 279 224 c 2 - 41 224 l 2 - 19.599609375 224 8.900390625 249.900390625 24 265 c 2 - 143.099609375 384 l 2 - 152.400390625 393.400390625 167.599609375 393.400390625 177 384 c 2 - 296 265 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" s o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" S o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" S O R T -EndChar - -StartChar: sort-down -Encoding: 61661 61661 227 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -41 160 m 2 - 279 160 l 2 - 300.400390625 160 311.099609375 134.099609375 296 119 c 2 - 177 0 l 2 - 167.599609375 -9.400390625 152.400390625 -9.400390625 143.099609375 0 c 2 - 24 119 l 2 - 8.900390625 134.099609375 19.599609375 160 41 160 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" s o r t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S o r t hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S o r t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S O R T hyphen D O W N -EndChar - -StartChar: sort-up -Encoding: 61662 61662 228 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -279 224 m 2 - 41 224 l 2 - 19.599609375 224 8.900390625 249.900390625 24 265 c 2 - 143 384 l 2 - 152.400390625 393.400390625 167.599609375 393.400390625 176.900390625 384 c 2 - 295.900390625 265 l 2 - 311.099609375 249.900390625 300.400390625 224 279 224 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" s o r t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" S o r t hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" S o r t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" S O R T hyphen U P -EndChar - -StartChar: envelope -Encoding: 61664 61664 229 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -502.299804688 257.200195312 m 0 - 506.200195312 260.299804688 512 257.400390625 512 252.5 c 2 - 512 48 l 2 - 512 21.5 490.5 0 464 0 c 2 - 48 0 l 2 - 21.5 0 0 21.5 0 48 c 2 - 0 252.400390625 l 2 - 0 257.400390625 5.7001953125 260.200195312 9.7001953125 257.099609375 c 0 - 32.099609375 239.700195312 61.7998046875 217.599609375 163.799804688 143.5 c 0 - 184.900390625 128.099609375 220.5 95.7001953125 256 95.900390625 c 0 - 291.700195312 95.599609375 328 128.700195312 348.299804688 143.5 c 0 - 450.299804688 217.599609375 479.900390625 239.799804688 502.299804688 257.200195312 c 0 -256 128 m 0 - 232.799804688 127.599609375 199.400390625 157.200195312 182.599609375 169.400390625 c 0 - 49.900390625 265.700195312 39.7998046875 274.200195312 9.2001953125 298.099609375 c 0 - 3.400390625 302.700195312 0 309.599609375 0 317 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 464 384 l 2 - 490.5 384 512 362.5 512 336 c 2 - 512 317 l 2 - 512 309.599609375 508.599609375 302.599609375 502.799804688 298.099609375 c 0 - 472.200195312 274.099609375 462.099609375 265.700195312 329.400390625 169.400390625 c 0 - 312.599609375 157.200195312 279.200195312 127.599609375 256 128 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" e n v e l o p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" E n v e l o p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" E N V E L O P E -EndChar - -StartChar: undo -Encoding: 61666 61666 230 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -212.333007812 223.666992188 m 2 - 12 223.666992188 l 2 - 5.373046875 223.666992188 0 229.040039062 0 235.666992188 c 2 - 0 436 l 2 - 0 442.626953125 5.373046875 448 12 448 c 2 - 60 448 l 2 - 66.626953125 448 72 442.626953125 72 436 c 2 - 72 357.887695312 l 1 - 117.7734375 408.720703125 184.259765625 440.530273438 258.174804688 439.993164062 c 0 - 395.081054688 438.999023438 504.623046875 328.370117188 504.33203125 191.4609375 c 0 - 504.041015625 54.7421875 393.120117188 -56 256.333007812 -56 c 0 - 192.244140625 -56 133.836914062 -31.6865234375 89.8232421875 8.21484375 c 0 - 84.7236328125 12.8369140625 84.4892578125 20.7685546875 89.3564453125 25.634765625 c 2 - 123.323242188 59.6015625 l 2 - 127.796875 64.076171875 134.985351562 64.3193359375 139.723632812 60.126953125 c 0 - 170.759765625 32.6640625 211.580078125 16 256.333007812 16 c 0 - 353.600585938 16 432.333007812 94.7158203125 432.333007812 192 c 0 - 432.333007812 289.266601562 353.6171875 368 256.333007812 368 c 0 - 197.836914062 368 146.052734375 339.524414062 114.05859375 295.666992188 c 1 - 212.333007812 295.666992188 l 2 - 218.959960938 295.666992188 224.333007812 290.293945312 224.333007812 283.666992188 c 2 - 224.333007812 235.666992188 l 2 - 224.333007812 229.040039062 218.959960938 223.666992188 212.333007812 223.666992188 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" u n d o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" U N D O -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" U n d o -EndChar - -StartChar: gavel -Encoding: 61667 61667 231 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504.970703125 248.637695312 m 2 - 514.342773438 239.264648438 514.342773438 224.069335938 504.970703125 214.697265625 c 2 - 380.51953125 90.24609375 l 2 - 371.1484375 80.873046875 355.952148438 80.873046875 346.579101562 90.24609375 c 2 - 323.952148438 112.873046875 l 2 - 314.579101562 122.245117188 314.579101562 137.44140625 323.952148438 146.814453125 c 2 - 329.609375 152.470703125 l 1 - 290.010742188 192.069335938 l 1 - 208.970703125 111.029296875 l 1 - 214.627929688 105.372070312 l 2 - 227.125 92.875 227.125 72.6142578125 214.627929688 60.1171875 c 2 - 99.8828125 -54.6279296875 l 2 - 87.3857421875 -67.125 67.125 -67.125 54.6279296875 -54.6279296875 c 2 - 9.373046875 -9.373046875 l 2 - -3.1240234375 3.1240234375 -3.1240234375 23.384765625 9.373046875 35.8818359375 c 2 - 124.1171875 150.627929688 l 2 - 136.614257812 163.125 156.875 163.125 169.372070312 150.627929688 c 2 - 175.029296875 144.970703125 l 1 - 256.069335938 226.010742188 l 1 - 216.470703125 265.609375 l 1 - 210.814453125 259.952148438 l 2 - 201.442382812 250.579101562 186.24609375 250.579101562 176.873046875 259.952148438 c 2 - 154.24609375 282.579101562 l 2 - 144.873046875 291.951171875 144.873046875 307.147460938 154.24609375 316.51953125 c 2 - 278.697265625 440.970703125 l 2 - 288.069335938 450.34375 303.264648438 450.34375 312.637695312 440.970703125 c 2 - 335.264648438 418.342773438 l 2 - 344.637695312 408.970703125 344.637695312 393.775390625 335.264648438 384.40234375 c 2 - 329.608398438 378.745117188 l 1 - 442.74609375 265.608398438 l 1 - 448.403320312 271.264648438 l 2 - 457.775390625 280.637695312 472.970703125 280.637695312 482.34375 271.264648438 c 2 - 504.970703125 248.637695312 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" g a v e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" G a v e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" G A V E L -EndChar - -StartChar: bolt -Encoding: 61671 61671 232 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -296 288 m 2 - 314.5 288 326 267.900390625 316.700195312 252 c 2 - 140.700195312 -52 l 2 - 136.299804688 -59.599609375 128.299804688 -64 119.900390625 -64 c 0 - 104.599609375 -64 93 -49.7001953125 96.599609375 -34.5 c 2 - 142.700195312 160 l 1 - 24 160 l 2 - 9.5 160 -1.7001953125 172.799804688 0.2001953125 187.200195312 c 2 - 32.2001953125 427.200195312 l 2 - 33.7998046875 439.099609375 44 448 56 448 c 2 - 200 448 l 2 - 215.700195312 448 227.200195312 433 223.200195312 417.799804688 c 2 - 180.599609375 288 l 1 - 296 288 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" b o l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" B o l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" B O L T -EndChar - -StartChar: sitemap -Encoding: 61672 61672 233 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128 96 m 2 - 145.669921875 96 160 81.669921875 160 64 c 2 - 160 -32 l 2 - 160 -49.669921875 145.669921875 -64 128 -64 c 2 - 32 -64 l 2 - 14.330078125 -64 0 -49.669921875 0 -32 c 2 - 0 64 l 2 - 0 81.669921875 14.330078125 96 32 96 c 2 - 128 96 l 2 -104 176 m 1 - 104 128 l 1 - 56 128 l 1 - 56 185.58984375 l 2 - 56 206.76953125 73.23046875 224 94.41015625 224 c 2 - 296 224 l 1 - 296 288 l 1 - 256 288 l 2 - 238.330078125 288 224 302.330078125 224 320 c 2 - 224 416 l 2 - 224 433.669921875 238.330078125 448 256 448 c 2 - 384 448 l 2 - 401.669921875 448 416 433.669921875 416 416 c 2 - 416 320 l 2 - 416 302.330078125 401.669921875 288 384 288 c 2 - 344 288 l 1 - 344 224 l 1 - 545.58984375 224 l 2 - 566.76953125 224 584 206.759765625 584 185.58984375 c 2 - 584 128 l 1 - 536 128 l 1 - 536 176 l 1 - 344 176 l 1 - 344 128 l 1 - 296 128 l 1 - 296 176 l 1 - 104 176 l 1 -368 96 m 2 - 385.669921875 96 400 81.669921875 400 64 c 2 - 400 -32 l 2 - 400 -49.669921875 385.669921875 -64 368 -64 c 2 - 272 -64 l 2 - 254.330078125 -64 240 -49.669921875 240 -32 c 2 - 240 64 l 2 - 240 81.669921875 254.330078125 96 272 96 c 2 - 368 96 l 2 -608 96 m 2 - 625.669921875 96 640 81.669921875 640 64 c 2 - 640 -32 l 2 - 640 -49.669921875 625.669921875 -64 608 -64 c 2 - 512 -64 l 2 - 494.330078125 -64 480 -49.669921875 480 -32 c 2 - 480 64 l 2 - 480 81.669921875 494.330078125 96 512 96 c 2 - 608 96 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" s i t e m a p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" S i t e m a p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" S I T E M A P -EndChar - -StartChar: umbrella -Encoding: 61673 61673 234 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -575.700195312 167.200195312 m 0 - 577.900390625 157.099609375 567.299804688 145.799804688 557 155.799804688 c 0 - 505.5 210.200195312 449.400390625 208.299804688 398.400390625 118.799804688 c 0 - 393.099609375 109.299804688 383.5 110.200195312 378.700195312 118.799804688 c 0 - 376.200195312 123.200195312 346.5 192 288 192 c 0 - 242.200195312 192 217.5 154.200195312 197.299804688 118.799804688 c 0 - 192.5 110.200195312 182.900390625 109.299804688 177.599609375 118.799804688 c 0 - 126.700195312 208.200195312 71 210.799804688 19 155.799804688 c 0 - 8.7998046875 145.900390625 -1.900390625 157.099609375 0.2998046875 167.200195312 c 0 - 29.5 303.5 138.299804688 385.400390625 256 398.099609375 c 1 - 256 416 l 2 - 256 433.700195312 270.299804688 448 288 448 c 0 - 305.700195312 448 320 433.700195312 320 416 c 2 - 320 398.099609375 l 1 - 437.299804688 385.400390625 547.099609375 303.5 575.700195312 167.200195312 c 0 -256 146.299804688 m 1 - 265.599609375 155.200195312 275.700195312 159.900390625 288 160 c 0 - 300.200195312 160 310.900390625 154.299804688 320 146.400390625 c 1 - 320 16.099609375 l 2 - 320 -28 284.099609375 -63.900390625 240 -63.900390625 c 0 - 206.200195312 -63.900390625 175.799804688 -42.5 164.599609375 -10.599609375 c 0 - 158.700195312 6 167.400390625 24.2998046875 184.099609375 30.2001953125 c 0 - 200.799804688 36.099609375 219 27.400390625 224.900390625 10.7001953125 c 0 - 226.799804688 5.2998046875 232.200195312 0 240 0 c 0 - 248.799804688 0 256 7.2001953125 256 16 c 2 - 256 146.299804688 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" u m b r e l l a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" U M B R E L L A -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" U m b r e l l a -EndChar - -StartChar: paste -Encoding: 61674 61674 235 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128 264 m 2 - 128 32 l 1 - 24 32 l 2 - 10.7451171875 32 0 42.7451171875 0 56 c 2 - 0 392 l 2 - 0 405.254882812 10.7451171875 416 24 416 c 2 - 104.610351562 416 l 1 - 115.694335938 435.110351562 136.36328125 448 160 448 c 0 - 183.63671875 448 204.305664062 435.110351562 215.389648438 416 c 1 - 296 416 l 2 - 309.254882812 416 320 405.254882812 320 392 c 2 - 320 320 l 1 - 184 320 l 2 - 153.122070312 320 128 294.87890625 128 264 c 2 -160 408 m 0 - 146.745117188 408 136 397.254882812 136 384 c 0 - 136 370.745117188 146.745117188 360 160 360 c 0 - 173.254882812 360 184 370.745117188 184 384 c 0 - 184 397.254882812 173.254882812 408 160 408 c 0 -344 160 m 2 - 448 160 l 1 - 448 -40 l 2 - 448 -53.2548828125 437.254882812 -64 424 -64 c 2 - 184 -64 l 2 - 170.745117188 -64 160 -53.2548828125 160 -40 c 2 - 160 264 l 2 - 160 277.254882812 170.745117188 288 184 288 c 2 - 320 288 l 1 - 320 184 l 2 - 320 170.799804688 330.799804688 160 344 160 c 2 -448 198.05859375 m 2 - 448 192 l 1 - 352 192 l 1 - 352 288 l 1 - 358.05859375 288 l 2 - 363.545898438 288 371.1484375 284.850585938 375.029296875 280.970703125 c 2 - 440.969726562 215.030273438 l 2 - 444.850585938 211.149414062 448 203.546875 448 198.05859375 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" p a s t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" P a s t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" P A S T E -EndChar - -StartChar: lightbulb -Encoding: 61675 61675 236 -Width: 352 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96.0595703125 -6.349609375 m 2 - 96.009765625 32 l 1 - 255.990234375 32 l 1 - 255.950195312 -6.349609375 l 2 - 255.944335938 -11.6787109375 253.54296875 -19.6044921875 250.58984375 -24.0400390625 c 2 - 233.5 -49.73046875 l 2 - 228.259765625 -57.6123046875 216.325195312 -64.009765625 206.860351562 -64.009765625 c 2 - 145.150390625 -64.009765625 l 2 - 135.684570312 -64.009765625 123.75 -57.6123046875 118.509765625 -49.73046875 c 2 - 101.419921875 -24.0400390625 l 2 - 97.9296875 -18.7998046875 96.0703125 -12.6396484375 96.0595703125 -6.349609375 c 2 -0 272 m 0 - 0 365.030273438 73.4404296875 447.690429688 175.450195312 448 c 0 - 272.91015625 448.299804688 352 369.389648438 352 272 c 0 - 352 227.629882812 335.549804688 187.150390625 308.440429688 156.219726562 c 0 - 291.919921875 137.370117188 266.080078125 97.990234375 256.23046875 64.76953125 c 0 - 256.190429688 64.5 256.16015625 64.25 256.120117188 63.990234375 c 2 - 95.8798828125 63.990234375 l 2 - 95.83984375 64.25 95.8095703125 64.509765625 95.76953125 64.76953125 c 0 - 85.919921875 97.990234375 60.080078125 137.370117188 43.5595703125 156.219726562 c 0 - 16.4501953125 187.150390625 0 227.629882812 0 272 c 0 -176 352 m 0 - 184.83984375 352 192 359.16015625 192 368 c 0 - 192 376.83984375 184.83984375 384 176 384 c 0 - 114.240234375 384 64 333.759765625 64 272 c 0 - 64 263.16015625 71.16015625 256 80 256 c 0 - 88.83984375 256 96 263.16015625 96 272 c 0 - 96 316.110351562 131.889648438 352 176 352 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" l i g h t b u l b -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" L I G H T B U L B -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" L i g h t b u l b -EndChar - -StartChar: user-md -Encoding: 61680 61680 237 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -104 24 m 0 - 104 37.2998046875 114.700195312 48 128 48 c 0 - 141.299804688 48 152 37.2998046875 152 24 c 0 - 152 10.7001953125 141.299804688 0 128 0 c 0 - 114.700195312 0 104 10.7001953125 104 24 c 0 -320 159.400390625 m 1 - 391.200195312 155.900390625 448 97.599609375 448 25.599609375 c 2 - 448 -19.2001953125 l 2 - 448 -43.900390625 427.900390625 -64 403.200195312 -64 c 2 - 44.7998046875 -64 l 2 - 20.099609375 -64 0 -43.900390625 0 -19.2001953125 c 2 - 0 25.599609375 l 2 - 0 92.2001953125 48.5 147 112.099609375 157.700195312 c 1 - 112.099609375 77.2998046875 l 1 - 89 70.400390625 72.099609375 49.2001953125 72.099609375 23.900390625 c 0 - 72.099609375 -7 97.2001953125 -32.099609375 128.099609375 -32.099609375 c 0 - 159 -32.099609375 184.099609375 -7 184.099609375 23.900390625 c 0 - 184.099609375 49.2001953125 167.200195312 70.400390625 144.099609375 77.2998046875 c 1 - 144.099609375 158.900390625 l 1 - 151.799804688 157.900390625 159.299804688 156.299804688 166.700195312 153.700195312 c 0 - 184.700195312 147.400390625 204 143.900390625 224.099609375 143.900390625 c 0 - 244.200195312 143.900390625 263.5 147.400390625 281.5 153.700195312 c 0 - 283.700195312 154.5 285.900390625 154.900390625 288.099609375 155.599609375 c 2 - 288.099609375 110.400390625 l 1 - 251.599609375 102.900390625 224.099609375 70.599609375 224.099609375 32 c 2 - 224.099609375 -11.7998046875 l 2 - 224.099609375 -19.900390625 230 -26.599609375 237.900390625 -27.7001953125 c 2 - 269.099609375 -31.900390625 l 2 - 273.400390625 -32.7001953125 277.599609375 -29.900390625 278.5 -25.599609375 c 2 - 281.599609375 -9.900390625 l 2 - 282.400390625 -5.599609375 279.599609375 -1.400390625 275.299804688 -0.5 c 2 - 256 3.400390625 l 1 - 256 30.099609375 l 2 - 256 97.099609375 352 94.7998046875 352 32 c 2 - 352 3.5 l 1 - 332.700195312 -0.400390625 l 2 - 328.299804688 -1.2001953125 325.5 -5.5 326.400390625 -9.7998046875 c 2 - 329.5 -25.5 l 2 - 330.400390625 -29.900390625 334.599609375 -32.7001953125 338.900390625 -31.7998046875 c 2 - 371.099609375 -25.400390625 l 2 - 378.599609375 -23.900390625 384 -17.2998046875 384 -9.7001953125 c 2 - 384 32 l 2 - 384 70.599609375 356.5 103 320 110.400390625 c 1 - 320 159.400390625 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" u s e r hyphen m d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" U s e r hyphen m d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" U S E R hyphen M D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" U s e r hyphen M d -EndChar - -StartChar: stethoscope -Encoding: 61681 61681 238 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -447.099609375 336 m 0 - 482.799804688 336.5 512 307.700195312 512 272 c 0 - 512 248.299804688 499.099609375 227.700195312 480 216.599609375 c 1 - 480 104 l 2 - 480 11.400390625 401 -64 304 -64 c 0 - 208.599609375 -64 130.700195312 8.7998046875 128.099609375 99.2001953125 c 1 - 55.099609375 114 0 178.700195312 0 256 c 2 - 0 411.400390625 l 2 - 0 422.900390625 8.099609375 432.700195312 19.2998046875 435 c 2 - 82.099609375 447.400390625 l 2 - 95.099609375 450 107.700195312 441.599609375 110.299804688 428.599609375 c 2 - 113.400390625 412.900390625 l 2 - 116 399.900390625 107.599609375 387.299804688 94.599609375 384.700195312 c 2 - 63.900390625 378.599609375 l 1 - 63.900390625 256.099609375 l 2 - 63.900390625 202.799804688 107.400390625 159.599609375 160.799804688 160.099609375 c 0 - 213.700195312 160.599609375 255.900390625 204.400390625 255.900390625 257.299804688 c 2 - 255.900390625 378.700195312 l 1 - 225.200195312 384.799804688 l 2 - 212.200195312 387.400390625 203.799804688 400 206.400390625 413 c 2 - 209.599609375 428.700195312 l 2 - 212.200195312 441.700195312 224.799804688 450.099609375 237.799804688 447.5 c 2 - 300.700195312 434.900390625 l 2 - 311.900390625 432.700195312 320 422.799804688 320 411.400390625 c 2 - 320 256 l 2 - 320 178.799804688 265 114.200195312 192.200195312 99.2001953125 c 1 - 194.900390625 44.099609375 244.099609375 0 304.099609375 0 c 0 - 365.900390625 0 416.099609375 46.7001953125 416.099609375 104 c 2 - 416.099609375 216.599609375 l 1 - 396.599609375 227.799804688 383.599609375 249.099609375 384.099609375 273.400390625 c 0 - 384.799804688 307.599609375 412.900390625 335.5 447.099609375 336 c 0 -448 256 m 0 - 456.799804688 256 464 263.200195312 464 272 c 0 - 464 280.799804688 456.799804688 288 448 288 c 0 - 439.200195312 288 432 280.799804688 432 272 c 0 - 432 263.200195312 439.200195312 256 448 256 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" s t e t h o s c o p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S t e t h o s c o p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S T E T H O S C O P E -EndChar - -StartChar: suitcase -Encoding: 61682 61682 239 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128 -32 m 1 - 128 368 l 2 - 128 394.5 149.5 416 176 416 c 2 - 336 416 l 2 - 362.5 416 384 394.5 384 368 c 2 - 384 -32 l 1 - 128 -32 l 1 -192 352 m 1 - 192 320 l 1 - 320 320 l 1 - 320 352 l 1 - 192 352 l 1 -512 272 m 2 - 512 16 l 2 - 512 -10.5 490.5 -32 464 -32 c 2 - 416 -32 l 1 - 416 320 l 1 - 464 320 l 2 - 490.5 320 512 298.5 512 272 c 2 -96 -32 m 1 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 272 l 2 - 0 298.5 21.5 320 48 320 c 2 - 96 320 l 1 - 96 -32 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" s u i t c a s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" S u i t c a s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" S U I T C A S E -EndChar - -StartChar: bell -Encoding: 61683 61683 240 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 -64 m 0 - 188.6796875 -64 160.030273438 -35.349609375 160.030273438 0 c 1 - 287.969726562 0 l 1 - 287.969726562 -35.349609375 259.3203125 -64 224 -64 c 0 -439.389648438 85.7099609375 m 0 - 445.389648438 79.26953125 448.049804688 71.5498046875 448 64 c 0 - 447.900390625 47.599609375 435.01953125 32 415.900390625 32 c 2 - 32.099609375 32 l 2 - 12.98046875 32 0.1103515625 47.599609375 0 64 c 0 - -0.0498046875 71.5498046875 2.6103515625 79.259765625 8.6103515625 85.7099609375 c 0 - 27.9296875 106.469726562 64.080078125 137.700195312 64.080078125 240 c 0 - 64.080078125 317.700195312 118.559570312 379.900390625 192.01953125 395.16015625 c 1 - 192.01953125 416 l 2 - 192.01953125 433.669921875 206.33984375 448 224 448 c 0 - 241.66015625 448 255.98046875 433.669921875 255.98046875 416 c 2 - 255.98046875 395.16015625 l 1 - 329.440429688 379.900390625 383.919921875 317.700195312 383.919921875 240 c 0 - 383.919921875 137.700195312 420.0703125 106.469726562 439.389648438 85.7099609375 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" b e l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B e l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B E L L -EndChar - -StartChar: coffee -Encoding: 61684 61684 241 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 64 m 2 - 139 64 96 107 96 160 c 2 - 96 392 l 2 - 96 405.299804688 106.700195312 416 120 416 c 2 - 512 416 l 2 - 582.599609375 416 640 358.599609375 640 288 c 0 - 640 217.400390625 582.599609375 160 512 160 c 2 - 480 160 l 1 - 480 107 437 64 384 64 c 2 - 192 64 l 2 -512 352 m 2 - 480 352 l 1 - 480 224 l 1 - 512 224 l 2 - 547.299804688 224 576 252.700195312 576 288 c 0 - 576 323.299804688 547.299804688 352 512 352 c 2 -559.700195312 -32 m 2 - 48.2998046875 -32 l 2 - 0.7001953125 -32 -12.7001953125 32 12.2998046875 32 c 2 - 595.599609375 32 l 2 - 620.599609375 32 607.400390625 -32 559.700195312 -32 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" c o f f e e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" C o f f e e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" C O F F E E -EndChar - -StartChar: hospital -Encoding: 61688 61688 242 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 -44 m 2 - 448 -64 l 1 - 0 -64 l 1 - 0 -44 l 2 - 0 -37.373046875 5.373046875 -32 12 -32 c 2 - 32 -32 l 1 - 32 328 l 2 - 32 341.254882812 42.7451171875 352 56 352 c 2 - 144 352 l 1 - 144 424 l 2 - 144 437.254882812 154.745117188 448 168 448 c 2 - 280 448 l 2 - 293.254882812 448 304 437.254882812 304 424 c 2 - 304 352 l 1 - 392 352 l 2 - 405.254882812 352 416 341.254882812 416 328 c 2 - 416 -32 l 1 - 436 -32 l 2 - 442.626953125 -32 448 -37.373046875 448 -44 c 2 -308 256 m 2 - 268 256 l 2 - 261.373046875 256 256 250.626953125 256 244 c 2 - 256 204 l 2 - 256 197.373046875 261.373046875 192 268 192 c 2 - 308 192 l 2 - 314.626953125 192 320 197.373046875 320 204 c 2 - 320 244 l 2 - 320 250.626953125 314.626953125 256 308 256 c 2 -140 192 m 2 - 180 192 l 2 - 186.626953125 192 192 197.373046875 192 204 c 2 - 192 244 l 2 - 192 250.626953125 186.626953125 256 180 256 c 2 - 140 256 l 2 - 133.373046875 256 128 250.626953125 128 244 c 2 - 128 204 l 2 - 128 197.373046875 133.373046875 192 140 192 c 2 -244 64 m 2 - 204 64 l 2 - 197.373046875 64 192 58.626953125 192 52 c 2 - 192 -32 l 1 - 256 -32 l 1 - 256 52 l 2 - 256 58.626953125 250.626953125 64 244 64 c 2 -308 160 m 2 - 268 160 l 2 - 261.373046875 160 256 154.626953125 256 148 c 2 - 256 108 l 2 - 256 101.373046875 261.373046875 96 268 96 c 2 - 308 96 l 2 - 314.626953125 96 320 101.373046875 320 108 c 2 - 320 148 l 2 - 320 154.626953125 314.626953125 160 308 160 c 2 -192 148 m 2 - 192 154.626953125 186.626953125 160 180 160 c 2 - 140 160 l 2 - 133.373046875 160 128 154.626953125 128 148 c 2 - 128 108 l 2 - 128 101.373046875 133.373046875 96 140 96 c 2 - 180 96 l 2 - 186.626953125 96 192 101.373046875 192 108 c 2 - 192 148 l 2 -182 352 m 2 - 208 352 l 1 - 208 326 l 2 - 208 322.688476562 210.688476562 320 214 320 c 2 - 234 320 l 2 - 237.311523438 320 240 322.688476562 240 326 c 2 - 240 352 l 1 - 266 352 l 2 - 269.311523438 352 272 354.688476562 272 358 c 2 - 272 378 l 2 - 272 381.311523438 269.311523438 384 266 384 c 2 - 240 384 l 1 - 240 410 l 2 - 240 413.311523438 237.311523438 416 234 416 c 2 - 214 416 l 2 - 210.688476562 416 208 413.311523438 208 410 c 2 - 208 384 l 1 - 182 384 l 2 - 178.688476562 384 176 381.311523438 176 378 c 2 - 176 358 l 2 - 176 354.688476562 178.688476562 352 182 352 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" h o s p i t a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" H o s p i t a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" H O S P I T A L -EndChar - -StartChar: ambulance -Encoding: 61689 61689 243 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 96 m 2 - 632.799804688 96 640 88.7998046875 640 80 c 2 - 640 48 l 2 - 640 39.2001953125 632.799804688 32 624 32 c 2 - 576 32 l 1 - 576 -21 533 -64 480 -64 c 0 - 427 -64 384 -21 384 32 c 1 - 256 32 l 1 - 256 -21 213 -64 160 -64 c 0 - 107 -64 64 -21 64 32 c 1 - 48 32 l 2 - 21.5 32 0 53.5 0 80 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 368 448 l 2 - 394.5 448 416 426.5 416 400 c 2 - 416 352 l 1 - 460.099609375 352 l 2 - 472.799804688 352 485 346.900390625 494 337.900390625 c 2 - 593.900390625 238 l 2 - 602.900390625 229 608 216.799804688 608 204.099609375 c 2 - 608 96 l 1 - 624 96 l 2 -160 -16 m 0 - 186.5 -16 208 5.5 208 32 c 0 - 208 58.5 186.5 80 160 80 c 0 - 133.5 80 112 58.5 112 32 c 0 - 112 5.5 133.5 -16 160 -16 c 0 -304 232 m 2 - 304 280 l 2 - 304 284.400390625 300.400390625 288 296 288 c 2 - 240 288 l 1 - 240 344 l 2 - 240 348.400390625 236.400390625 352 232 352 c 2 - 184 352 l 2 - 179.599609375 352 176 348.400390625 176 344 c 2 - 176 288 l 1 - 120 288 l 2 - 115.599609375 288 112 284.400390625 112 280 c 2 - 112 232 l 2 - 112 227.599609375 115.599609375 224 120 224 c 2 - 176 224 l 1 - 176 168 l 2 - 176 163.599609375 179.599609375 160 184 160 c 2 - 232 160 l 2 - 236.400390625 160 240 163.599609375 240 168 c 2 - 240 224 l 1 - 296 224 l 2 - 300.400390625 224 304 227.599609375 304 232 c 2 -480 -16 m 0 - 506.5 -16 528 5.5 528 32 c 0 - 528 58.5 506.5 80 480 80 c 0 - 453.5 80 432 58.5 432 32 c 0 - 432 5.5 453.5 -16 480 -16 c 0 -560 192 m 1 - 560 204.099609375 l 1 - 460.099609375 304 l 1 - 416 304 l 1 - 416 192 l 1 - 560 192 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" a m b u l a n c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" A m b u l a n c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" A M B U L A N C E -EndChar - -StartChar: medkit -Encoding: 61690 61690 244 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 -32 m 1 - 96 320 l 1 - 128 320 l 1 - 128 368 l 2 - 128 394.509765625 149.490234375 416 176 416 c 2 - 336 416 l 2 - 362.509765625 416 384 394.509765625 384 368 c 2 - 384 320 l 1 - 416 320 l 1 - 416 -32 l 1 - 96 -32 l 1 -192 352 m 1 - 192 320 l 1 - 320 320 l 1 - 320 352 l 1 - 192 352 l 1 -512 272 m 2 - 512 16 l 2 - 512 -10.509765625 490.509765625 -32 464 -32 c 2 - 448 -32 l 1 - 448 320 l 1 - 464 320 l 2 - 490.509765625 320 512 298.509765625 512 272 c 2 -64 -32 m 1 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 272 l 2 - 0 298.509765625 21.490234375 320 48 320 c 2 - 64 320 l 1 - 64 -32 l 1 -352 176 m 2 - 352 184.836914062 344.836914062 192 336 192 c 2 - 288 192 l 1 - 288 240 l 2 - 288 248.836914062 280.836914062 256 272 256 c 2 - 240 256 l 2 - 231.163085938 256 224 248.836914062 224 240 c 2 - 224 192 l 1 - 176 192 l 2 - 167.163085938 192 160 184.836914062 160 176 c 2 - 160 144 l 2 - 160 135.163085938 167.163085938 128 176 128 c 2 - 224 128 l 1 - 224 80 l 2 - 224 71.1630859375 231.163085938 64 240 64 c 2 - 272 64 l 2 - 280.836914062 64 288 71.1630859375 288 80 c 2 - 288 128 l 1 - 336 128 l 2 - 344.836914062 128 352 135.163085938 352 144 c 2 - 352 176 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" m e d k i t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" M e d k i t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" M E D K I T -EndChar - -StartChar: fighter-jet -Encoding: 61691 61691 245 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 224 m 1 - 640 202.666992188 640 197.416992188 640 192 c 0 - 640 186.583007812 640 181.333007812 544 160 c 1 - 416 144 l 1 - 368 128 l 1 - 344 128 l 1 - 227.158203125 -20 l 1 - 266.666992188 -20 l 2 - 278.333007812 -20 288 -22.625 288 -26 c 0 - 288 -29.375 278.333984375 -32 266.666992188 -32 c 2 - 152 -32 l 1 - 152 -20 l 1 - 168 -20 l 1 - 168 144 l 1 - 120 144 l 1 - 53.333984375 64 l 1 - 18.6669921875 64 l 1 - 8 74.6669921875 l 1 - 8 144 l 1 - 16 144 l 1 - 16 160 l 1 - 64 160 l 1 - 64 162.666992188 l 1 - 0 170.666992188 l 1 - 0 213.333984375 l 1 - 64 221.333984375 l 1 - 64 224 l 1 - 16 224 l 1 - 16 240 l 1 - 8 240 l 1 - 8 309.333007812 l 1 - 18.6669921875 320 l 1 - 53.3330078125 320 l 1 - 120 240 l 1 - 168 240 l 1 - 168 404 l 1 - 152 404 l 1 - 152 416 l 1 - 266.666992188 416 l 2 - 278.333007812 416 288 413.375 288 410 c 0 - 288 406.625 278.333007812 404 266.666992188 404 c 2 - 227.158203125 404 l 1 - 344 256 l 1 - 368 256 l 1 - 416 240 l 1 - 544 224 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" f i g h t e r hyphen j e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F i g h t e r hyphen J e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F i g h t e r hyphen j e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F I G H T E R hyphen J E T -EndChar - -StartChar: beer -Encoding: 61692 61692 246 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -368 352 m 2 - 412.112304688 352 448 316.112304688 448 272 c 2 - 448 143.139648438 l 2 - 448 111.612304688 429.396484375 82.9365234375 400.606445312 70.0869140625 c 2 - 320 34.1103515625 l 1 - 320 -8 l 2 - 320 -21.2548828125 309.254882812 -32 296 -32 c 2 - 24 -32 l 2 - 10.7451171875 -32 0 -21.2548828125 0 -8 c 2 - 0 392 l 2 - 0 405.254882812 10.7451171875 416 24 416 c 2 - 296 416 l 2 - 309.254882812 416 320 405.254882812 320 392 c 2 - 320 352 l 1 - 368 352 l 2 -384 143.139648438 m 2 - 384 272 l 2 - 384 280.822265625 376.822265625 288 368 288 c 2 - 320 288 l 1 - 320 104.1953125 l 1 - 374.521484375 128.529296875 l 2 - 379.749023438 130.8671875 383.99609375 137.413085938 384 143.139648438 c 2 -208 64 m 0 - 216.8359375 64 224 71.1640625 224 80 c 2 - 224 304 l 2 - 224 312.8359375 216.8359375 320 208 320 c 0 - 199.1640625 320 192 312.8359375 192 304 c 2 - 192 80 l 2 - 192 71.1640625 199.1640625 64 208 64 c 0 -112 64 m 0 - 120.8359375 64 128 71.1640625 128 80 c 2 - 128 304 l 2 - 128 312.8359375 120.8359375 320 112 320 c 0 - 103.1640625 320 96 312.8359375 96 304 c 2 - 96 80 l 2 - 96 71.1640625 103.1640625 64 112 64 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" b e e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" B e e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" B E E R -EndChar - -StartChar: h-square -Encoding: 61693 61693 247 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 368 m 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 400 416 l 2 - 426.509765625 416 448 394.509765625 448 368 c 2 -336 320 m 2 - 304 320 l 2 - 295.163085938 320 288 312.836914062 288 304 c 2 - 288 224 l 1 - 160 224 l 1 - 160 304 l 2 - 160 312.836914062 152.836914062 320 144 320 c 2 - 112 320 l 2 - 103.163085938 320 96 312.836914062 96 304 c 2 - 96 80 l 2 - 96 71.1630859375 103.163085938 64 112 64 c 2 - 144 64 l 2 - 152.836914062 64 160 71.1630859375 160 80 c 2 - 160 160 l 1 - 288 160 l 1 - 288 80 l 2 - 288 71.1630859375 295.163085938 64 304 64 c 2 - 336 64 l 2 - 344.836914062 64 352 71.1630859375 352 80 c 2 - 352 304 l 2 - 352 312.836914062 344.836914062 320 336 320 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" h hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" H hyphen S Q U A R E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" H hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" H hyphen s q u a r e -EndChar - -StartChar: plus-square -Encoding: 61694 61694 248 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.5 416 448 394.5 448 368 c 2 - 448 16 l 2 - 448 -10.5 426.5 -32 400 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 400 416 l 2 -368 164 m 2 - 368 220 l 2 - 368 226.599609375 362.599609375 232 356 232 c 2 - 264 232 l 1 - 264 324 l 2 - 264 330.599609375 258.599609375 336 252 336 c 2 - 196 336 l 2 - 189.400390625 336 184 330.599609375 184 324 c 2 - 184 232 l 1 - 92 232 l 2 - 85.400390625 232 80 226.599609375 80 220 c 2 - 80 164 l 2 - 80 157.400390625 85.400390625 152 92 152 c 2 - 184 152 l 1 - 184 60 l 2 - 184 53.400390625 189.400390625 48 196 48 c 2 - 252 48 l 2 - 258.599609375 48 264 53.400390625 264 60 c 2 - 264 152 l 1 - 356 152 l 2 - 362.599609375 152 368 157.400390625 368 164 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" p l u s hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P l u s hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P l u s hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P L U S hyphen S Q U A R E -EndChar - -StartChar: angle-double-left -Encoding: 61696 61696 249 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -223.700195312 209 m 2 - 359.700195312 345 l 2 - 369.099609375 354.400390625 384.299804688 354.400390625 393.599609375 345 c 2 - 416.200195312 322.400390625 l 2 - 425.599609375 313 425.599609375 297.799804688 416.200195312 288.5 c 2 - 319.900390625 192 l 1 - 416.299804688 95.599609375 l 2 - 425.700195312 86.2001953125 425.700195312 71 416.299804688 61.7001953125 c 2 - 393.700195312 39 l 2 - 384.299804688 29.599609375 369.099609375 29.599609375 359.799804688 39 c 2 - 223.799804688 175 l 2 - 214.299804688 184.400390625 214.299804688 199.599609375 223.700195312 209 c 2 -31.7001953125 175 m 2 - 22.2998046875 184.400390625 22.2998046875 199.599609375 31.7998046875 209 c 2 - 167.799804688 345 l 2 - 177.099609375 354.400390625 192.299804688 354.400390625 201.700195312 345 c 2 - 224.299804688 322.299804688 l 2 - 233.700195312 313 233.700195312 297.799804688 224.299804688 288.400390625 c 2 - 127.900390625 192 l 1 - 224.200195312 95.5 l 2 - 233.599609375 86.2001953125 233.599609375 71 224.200195312 61.599609375 c 2 - 201.599609375 39 l 2 - 192.299804688 29.599609375 177.099609375 29.599609375 167.700195312 39 c 2 - 31.7001953125 175 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" a n g l e hyphen d o u b l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" A n g l e hyphen D o u b l e hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" A n g l e hyphen d o u b l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" A N G L E hyphen D O U B L E hyphen L E F T -EndChar - -StartChar: angle-double-right -Encoding: 61697 61697 250 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224.299804688 175 m 2 - 88.2998046875 39 l 2 - 78.900390625 29.599609375 63.7001953125 29.599609375 54.400390625 39 c 2 - 31.7998046875 61.599609375 l 2 - 22.400390625 71 22.400390625 86.2001953125 31.7998046875 95.5 c 2 - 128.200195312 191.900390625 l 1 - 31.7998046875 288.299804688 l 2 - 22.400390625 297.700195312 22.400390625 312.900390625 31.7998046875 322.200195312 c 2 - 54.2998046875 345 l 2 - 63.7001953125 354.400390625 78.900390625 354.400390625 88.2001953125 345 c 2 - 224.200195312 209 l 2 - 233.700195312 199.599609375 233.700195312 184.400390625 224.299804688 175 c 2 -416.299804688 209 m 2 - 425.700195312 199.599609375 425.700195312 184.400390625 416.299804688 175.200195312 c 2 - 280.299804688 39.2001953125 l 2 - 271 29.7998046875 255.799804688 29.7998046875 246.400390625 39.2001953125 c 2 - 223.799804688 61.7998046875 l 2 - 214.400390625 71.099609375 214.400390625 86.2998046875 223.799804688 95.7001953125 c 2 - 320.200195312 192.099609375 l 1 - 223.799804688 288.5 l 2 - 214.400390625 297.799804688 214.400390625 313 223.799804688 322.400390625 c 2 - 246.400390625 345 l 2 - 255.700195312 354.400390625 270.900390625 354.400390625 280.299804688 345 c 2 - 416.299804688 209 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" a n g l e hyphen d o u b l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" A n g l e hyphen D o u b l e hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" A n g l e hyphen d o u b l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" A N G L E hyphen D O U B L E hyphen R I G H T -EndChar - -StartChar: angle-double-up -Encoding: 61698 61698 251 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -177 192.299804688 m 2 - 313 56.2998046875 l 2 - 322.400390625 46.900390625 322.400390625 31.7001953125 313 22.400390625 c 2 - 290.400390625 -0.2001953125 l 2 - 281 -9.599609375 265.799804688 -9.599609375 256.5 -0.2001953125 c 2 - 160 96.099609375 l 1 - 63.599609375 -0.2998046875 l 2 - 54.2001953125 -9.7001953125 39 -9.7001953125 29.7001953125 -0.2998046875 c 2 - 7 22.2998046875 l 2 - -2.400390625 31.7001953125 -2.400390625 46.900390625 7 56.2001953125 c 2 - 143 192.200195312 l 2 - 152.400390625 201.700195312 167.599609375 201.700195312 177 192.299804688 c 2 -143 384.299804688 m 2 - 152.400390625 393.700195312 167.599609375 393.700195312 176.799804688 384.299804688 c 2 - 312.799804688 248.299804688 l 2 - 322.200195312 239 322.200195312 223.799804688 312.799804688 214.400390625 c 2 - 290.200195312 191.799804688 l 2 - 280.900390625 182.400390625 265.700195312 182.400390625 256.299804688 191.799804688 c 2 - 159.900390625 288.200195312 l 1 - 63.5 191.799804688 l 2 - 54.2001953125 182.400390625 39 182.400390625 29.599609375 191.799804688 c 2 - 7 214.400390625 l 2 - -2.400390625 223.700195312 -2.400390625 238.900390625 7 248.299804688 c 2 - 143 384.299804688 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" a n g l e hyphen d o u b l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" A n g l e hyphen D o u b l e hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" A n g l e hyphen d o u b l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" A N G L E hyphen D O U B L E hyphen U P -EndChar - -StartChar: angle-double-down -Encoding: 61699 61699 252 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -143 191.700195312 m 2 - 7 327.700195312 l 2 - -2.400390625 337.099609375 -2.400390625 352.299804688 7 361.599609375 c 2 - 29.599609375 384.200195312 l 2 - 39 393.599609375 54.2001953125 393.599609375 63.5 384.200195312 c 2 - 159.900390625 287.799804688 l 1 - 256.299804688 384.200195312 l 2 - 265.700195312 393.599609375 280.900390625 393.599609375 290.200195312 384.200195312 c 2 - 313 361.700195312 l 2 - 322.400390625 352.299804688 322.400390625 337.099609375 313 327.799804688 c 2 - 177 191.799804688 l 2 - 167.599609375 182.299804688 152.400390625 182.299804688 143 191.700195312 c 2 -177 -0.2998046875 m 2 - 167.599609375 -9.7001953125 152.400390625 -9.7001953125 143 -0.2001953125 c 2 - 7 135.799804688 l 2 - -2.400390625 145.099609375 -2.400390625 160.299804688 7 169.700195312 c 2 - 29.7001953125 192.299804688 l 2 - 39 201.700195312 54.2001953125 201.700195312 63.599609375 192.299804688 c 2 - 160 95.900390625 l 1 - 256.5 192.200195312 l 2 - 265.799804688 201.599609375 281 201.599609375 290.400390625 192.200195312 c 2 - 313 169.599609375 l 2 - 322.400390625 160.299804688 322.400390625 145.099609375 313 135.700195312 c 2 - 177 -0.2998046875 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" a n g l e hyphen d o u b l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" A n g l e hyphen D o u b l e hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" A n g l e hyphen d o u b l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" A N G L E hyphen D O U B L E hyphen D O W N -EndChar - -StartChar: angle-left -Encoding: 61700 61700 253 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -31.7001953125 209 m 2 - 167.700195312 345 l 2 - 177.099609375 354.400390625 192.299804688 354.400390625 201.599609375 345 c 2 - 224.200195312 322.400390625 l 2 - 233.599609375 313 233.599609375 297.799804688 224.200195312 288.5 c 2 - 127.900390625 192 l 1 - 224.299804688 95.599609375 l 2 - 233.700195312 86.2001953125 233.700195312 71 224.299804688 61.7001953125 c 2 - 201.700195312 39 l 2 - 192.299804688 29.599609375 177.099609375 29.599609375 167.799804688 39 c 2 - 31.7998046875 175 l 2 - 22.2998046875 184.400390625 22.2998046875 199.599609375 31.7001953125 209 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" a n g l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" A n g l e hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" A n g l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" A N G L E hyphen L E F T -EndChar - -StartChar: angle-right -Encoding: 61701 61701 254 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224.299804688 175 m 2 - 88.2998046875 39 l 2 - 78.900390625 29.599609375 63.7001953125 29.599609375 54.400390625 39 c 2 - 31.7998046875 61.599609375 l 2 - 22.400390625 71 22.400390625 86.2001953125 31.7998046875 95.5 c 2 - 128.200195312 191.900390625 l 1 - 31.7998046875 288.299804688 l 2 - 22.400390625 297.700195312 22.400390625 312.900390625 31.7998046875 322.200195312 c 2 - 54.2998046875 345 l 2 - 63.7001953125 354.400390625 78.900390625 354.400390625 88.2001953125 345 c 2 - 224.200195312 209 l 2 - 233.700195312 199.599609375 233.700195312 184.400390625 224.299804688 175 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" a n g l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" A n g l e hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" A n g l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" A N G L E hyphen R I G H T -EndChar - -StartChar: angle-up -Encoding: 61702 61702 255 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -177 288.299804688 m 2 - 313 152.299804688 l 2 - 322.400390625 142.900390625 322.400390625 127.700195312 313 118.400390625 c 2 - 290.400390625 95.7998046875 l 2 - 281 86.400390625 265.799804688 86.400390625 256.5 95.7998046875 c 2 - 160 192.099609375 l 1 - 63.599609375 95.7001953125 l 2 - 54.2001953125 86.2998046875 39 86.2998046875 29.7001953125 95.7001953125 c 2 - 7 118.299804688 l 2 - -2.400390625 127.700195312 -2.400390625 142.900390625 7 152.200195312 c 2 - 143 288.200195312 l 2 - 152.400390625 297.700195312 167.599609375 297.700195312 177 288.299804688 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" a n g l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" A n g l e hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" A n g l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" A N G L E hyphen U P -EndChar - -StartChar: angle-down -Encoding: 61703 61703 256 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -143 95.7001953125 m 2 - 7 231.700195312 l 2 - -2.400390625 241.099609375 -2.400390625 256.299804688 7 265.599609375 c 2 - 29.599609375 288.200195312 l 2 - 39 297.599609375 54.2001953125 297.599609375 63.5 288.200195312 c 2 - 159.900390625 191.799804688 l 1 - 256.299804688 288.200195312 l 2 - 265.700195312 297.599609375 280.900390625 297.599609375 290.200195312 288.200195312 c 2 - 312.799804688 265.599609375 l 2 - 322.200195312 256.200195312 322.200195312 241 312.799804688 231.700195312 c 2 - 176.799804688 95.7001953125 l 2 - 167.599609375 86.2998046875 152.400390625 86.2998046875 143 95.7001953125 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" a n g l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A n g l e hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A n g l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" A N G L E hyphen D O W N -EndChar - -StartChar: desktop -Encoding: 61704 61704 257 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528 448 m 2 - 554.5 448 576 426.5 576 400 c 2 - 576 80 l 2 - 576 53.5 554.5 32 528 32 c 2 - 336 32 l 1 - 352 -16 l 1 - 424 -16 l 2 - 437.299804688 -16 448 -26.7001953125 448 -40 c 0 - 448 -53.2998046875 437.299804688 -64 424 -64 c 2 - 152 -64 l 2 - 138.700195312 -64 128 -53.2998046875 128 -40 c 0 - 128 -26.7001953125 138.700195312 -16 152 -16 c 2 - 224 -16 l 1 - 240 32 l 1 - 48 32 l 2 - 21.5 32 0 53.5 0 80 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 528 448 l 2 -512 96 m 1 - 512 384 l 1 - 64 384 l 1 - 64 96 l 1 - 512 96 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" d e s k t o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" D E S K T O P -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" D e s k t o p -EndChar - -StartChar: laptop -Encoding: 61705 61705 258 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 32 m 2 - 632.799804688 32 640 24.7998046875 640 16 c 2 - 640 0 l 2 - 640 -35.2001953125 611.200195312 -64 576 -64 c 2 - 64 -64 l 2 - 28.7998046875 -64 0 -35.2001953125 0 0 c 2 - 0 16 l 2 - 0 24.7998046875 7.2001953125 32 16 32 c 2 - 255.23046875 32 l 1 - 254.98046875 17.4697265625 269.309570312 0 288 0 c 2 - 348.799804688 0 l 2 - 366.830078125 0 380.799804688 12.1904296875 381.540039062 32 c 1 - 624 32 l 2 -576 400 m 2 - 576 64 l 1 - 64 64 l 1 - 64 400 l 2 - 64 426.400390625 85.599609375 448 112 448 c 2 - 528 448 l 2 - 554.400390625 448 576 426.400390625 576 400 c 2 -512 128 m 1 - 512 384 l 1 - 128 384 l 1 - 128 128 l 1 - 512 128 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" l a p t o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" L A P T O P -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" L a p t o p -EndChar - -StartChar: tablet -Encoding: 61706 61706 259 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 448 m 2 - 426.5 448 448 426.5 448 400 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 400 448 l 2 -224 -32 m 0 - 241.700195312 -32 256 -17.7001953125 256 0 c 0 - 256 17.7001953125 241.700195312 32 224 32 c 0 - 206.299804688 32 192 17.7001953125 192 0 c 0 - 192 -17.7001953125 206.299804688 -32 224 -32 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" t a b l e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" T A B L E T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" T a b l e t -EndChar - -StartChar: mobile -Encoding: 61707 61707 260 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -272 448 m 2 - 298.5 448 320 426.5 320 400 c 2 - 320 -16 l 2 - 320 -42.5 298.5 -64 272 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 272 448 l 2 -160 -32 m 0 - 177.700195312 -32 192 -17.7001953125 192 0 c 0 - 192 17.7001953125 177.700195312 32 160 32 c 0 - 142.299804688 32 128 17.7001953125 128 0 c 0 - 128 -17.7001953125 142.299804688 -32 160 -32 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" m o b i l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" M o b i l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" M O B I L E -EndChar - -StartChar: quote-left -Encoding: 61709 61709 261 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 192 m 2 - 490.5 192 512 170.5 512 144 c 2 - 512 16 l 2 - 512 -10.5 490.5 -32 464 -32 c 2 - 336 -32 l 2 - 309.5 -32 288 -10.5 288 16 c 2 - 288 256 l 2 - 288 344.400390625 359.599609375 416 448 416 c 2 - 456 416 l 2 - 469.299804688 416 480 405.299804688 480 392 c 2 - 480 344 l 2 - 480 330.700195312 469.299804688 320 456 320 c 2 - 448 320 l 2 - 412.700195312 320 384 291.299804688 384 256 c 2 - 384 192 l 1 - 464 192 l 2 -176 192 m 2 - 202.5 192 224 170.5 224 144 c 2 - 224 16 l 2 - 224 -10.5 202.5 -32 176 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 256 l 2 - 0 344.400390625 71.599609375 416 160 416 c 2 - 168 416 l 2 - 181.299804688 416 192 405.299804688 192 392 c 2 - 192 344 l 2 - 192 330.700195312 181.299804688 320 168 320 c 2 - 160 320 l 2 - 124.700195312 320 96 291.299804688 96 256 c 2 - 96 192 l 1 - 176 192 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" q u o t e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" Q u o t e hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" Q u o t e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" Q U O T E hyphen L E F T -EndChar - -StartChar: quote-right -Encoding: 61710 61710 262 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 416 m 2 - 490.5 416 512 394.5 512 368 c 2 - 512 128 l 2 - 512 39.599609375 440.400390625 -32 352 -32 c 2 - 344 -32 l 2 - 330.700195312 -32 320 -21.2998046875 320 -8 c 2 - 320 40 l 2 - 320 53.2998046875 330.700195312 64 344 64 c 2 - 352 64 l 2 - 387.299804688 64 416 92.7001953125 416 128 c 2 - 416 192 l 1 - 336 192 l 2 - 309.5 192 288 213.5 288 240 c 2 - 288 368 l 2 - 288 394.5 309.5 416 336 416 c 2 - 464 416 l 2 -176 416 m 2 - 202.5 416 224 394.5 224 368 c 2 - 224 128 l 2 - 224 39.599609375 152.400390625 -32 64 -32 c 2 - 56 -32 l 2 - 42.7001953125 -32 32 -21.2998046875 32 -8 c 2 - 32 40 l 2 - 32 53.2998046875 42.7001953125 64 56 64 c 2 - 64 64 l 2 - 99.2998046875 64 128 92.7001953125 128 128 c 2 - 128 192 l 1 - 48 192 l 2 - 21.5 192 0 213.5 0 240 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 176 416 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" q u o t e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" Q u o t e hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" Q u o t e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" Q U O T E hyphen R I G H T -EndChar - -StartChar: spinner -Encoding: 61712 61712 263 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -304 400 m 0 - 304 373.490234375 282.509765625 352 256 352 c 0 - 229.490234375 352 208 373.490234375 208 400 c 0 - 208 426.509765625 229.490234375 448 256 448 c 0 - 282.509765625 448 304 426.509765625 304 400 c 0 -256 32 m 0 - 282.509765625 32 304 10.509765625 304 -16 c 0 - 304 -42.509765625 282.509765625 -64 256 -64 c 0 - 229.490234375 -64 208 -42.509765625 208 -16 c 0 - 208 10.509765625 229.490234375 32 256 32 c 0 -464 240 m 0 - 490.509765625 240 512 218.509765625 512 192 c 0 - 512 165.490234375 490.509765625 144 464 144 c 0 - 437.490234375 144 416 165.490234375 416 192 c 0 - 416 218.509765625 437.490234375 240 464 240 c 0 -96 192 m 0 - 96 165.490234375 74.509765625 144 48 144 c 0 - 21.490234375 144 0 165.490234375 0 192 c 0 - 0 218.509765625 21.490234375 240 48 240 c 0 - 74.509765625 240 96 218.509765625 96 192 c 0 -108.921875 92.921875 m 0 - 135.430664062 92.921875 156.921875 71.4306640625 156.921875 44.921875 c 0 - 156.921875 18.412109375 135.431640625 -3.078125 108.921875 -3.078125 c 0 - 82.412109375 -3.078125 60.921875 18.412109375 60.921875 44.921875 c 0 - 60.921875 71.431640625 82.412109375 92.921875 108.921875 92.921875 c 0 -403.078125 92.921875 m 0 - 429.587890625 92.921875 451.078125 71.4306640625 451.078125 44.921875 c 0 - 451.078125 18.412109375 429.587890625 -3.078125 403.078125 -3.078125 c 0 - 376.568359375 -3.078125 355.078125 18.412109375 355.078125 44.921875 c 0 - 355.078125 71.431640625 376.568359375 92.921875 403.078125 92.921875 c 0 -108.921875 387.078125 m 0 - 135.430664062 387.078125 156.921875 365.587890625 156.921875 339.078125 c 0 - 156.921875 312.568359375 135.431640625 291.078125 108.921875 291.078125 c 0 - 82.412109375 291.078125 60.921875 312.568359375 60.921875 339.078125 c 0 - 60.921875 365.587890625 82.412109375 387.078125 108.921875 387.078125 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" s p i n n e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" S p i n n e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" S P I N N E R -EndChar - -StartChar: circle -Encoding: 61713 61713 264 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -EndSplineSet -Validated: 1 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" C I R C L E -EndChar - -StartChar: smile -Encoding: 61720 61720 265 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -328 272 m 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 -168 272 m 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 -362.799804688 101.799804688 m 0 - 376.299804688 118.099609375 351.599609375 138.5 338.200195312 122.299804688 c 0 - 315.799804688 95.5 283 80.099609375 248 80.099609375 c 0 - 213 80.099609375 180.200195312 95.400390625 157.799804688 122.299804688 c 0 - 144.200195312 138.5 119.599609375 118.099609375 133.200195312 101.799804688 c 0 - 161.700195312 67.599609375 203.5 48 248 48 c 0 - 292.5 48 334.299804688 67.599609375 362.799804688 101.799804688 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" s m i l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" S M I L E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" S m i l e -EndChar - -StartChar: frown -Encoding: 61721 61721 266 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -328 272 m 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 -168 272 m 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 -338.200195312 53.7998046875 m 0 - 351.700195312 37.5 376.299804688 58 362.700195312 74.2001953125 c 0 - 334.299804688 108.400390625 292.400390625 128 248 128 c 0 - 203.599609375 128 161.700195312 108.400390625 133.200195312 74.2998046875 c 0 - 119.700195312 58 144.299804688 37.5 157.799804688 53.7998046875 c 0 - 180.200195312 80.599609375 213.099609375 96 248 96 c 0 - 282.900390625 96 315.799804688 80.599609375 338.200195312 53.7998046875 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" f r o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" F r o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" F R O W N -EndChar - -StartChar: meh -Encoding: 61722 61722 267 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -168 272 m 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 -344 80 m 2 - 365.200195312 80 365.200195312 112 344 112 c 2 - 152 112 l 2 - 130.799804688 112 130.799804688 80 152 80 c 2 - 344 80 l 2 -328 208 m 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" m e h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" M e h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" M E H -EndChar - -StartChar: gamepad -Encoding: 61723 61723 268 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480.0703125 352 m 2 - 568.364257812 351.973632812 640.022460938 280.293945312 640.022460938 192 c 0 - 640.022460938 103.6796875 568.342773438 32 480.022460938 32 c 0 - 442.920898438 32 391.731445312 53.50390625 365.759765625 80 c 1 - 274.240234375 80 l 1 - 248.268554688 53.50390625 197.079101562 32 159.977539062 32 c 0 - 71.6572265625 32 -0.0224609375 103.6796875 -0.0224609375 192 c 0 - -0.0224609375 280.3203125 71.6572265625 352 159.977539062 352 c 2 - 160 352 l 1 - 480.0703125 352 l 2 -248 180 m 2 - 248 204 l 2 - 248 210.624023438 242.624023438 216 236 216 c 2 - 184 216 l 1 - 184 268 l 2 - 184 274.624023438 178.624023438 280 172 280 c 2 - 148 280 l 2 - 141.375976562 280 136 274.624023438 136 268 c 2 - 136 216 l 1 - 84 216 l 2 - 77.3759765625 216 72 210.624023438 72 204 c 2 - 72 180 l 2 - 72 173.375976562 77.3759765625 168 84 168 c 2 - 136 168 l 1 - 136 116 l 2 - 136 109.375976562 141.375976562 104 148 104 c 2 - 172 104 l 2 - 178.624023438 104 184 109.375976562 184 116 c 2 - 184 168 l 1 - 236 168 l 2 - 242.624023438 168 248 173.375976562 248 180 c 2 -464 104 m 0 - 486.080078125 104 504 121.919921875 504 144 c 0 - 504 166.080078125 486.080078125 184 464 184 c 0 - 441.919921875 184 424 166.080078125 424 144 c 0 - 424 121.919921875 441.919921875 104 464 104 c 0 -528 200 m 0 - 550.080078125 200 568 217.919921875 568 240 c 0 - 568 262.080078125 550.080078125 280 528 280 c 0 - 505.919921875 280 488 262.080078125 488 240 c 0 - 488 217.919921875 505.919921875 200 528 200 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" g a m e p a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" G A M E P A D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" G a m e p a d -EndChar - -StartChar: keyboard -Encoding: 61724 61724 269 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528 0 m 2 - 48 0 l 2 - 21.490234375 0 0 21.490234375 0 48 c 2 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 528 384 l 2 - 554.509765625 384 576 362.509765625 576 336 c 2 - 576 48 l 2 - 576 21.490234375 554.509765625 0 528 0 c 2 -128 268 m 2 - 128 308 l 2 - 128 314.626953125 122.626953125 320 116 320 c 2 - 76 320 l 2 - 69.373046875 320 64 314.626953125 64 308 c 2 - 64 268 l 2 - 64 261.373046875 69.373046875 256 76 256 c 2 - 116 256 l 2 - 122.626953125 256 128 261.373046875 128 268 c 2 -224 268 m 2 - 224 308 l 2 - 224 314.626953125 218.626953125 320 212 320 c 2 - 172 320 l 2 - 165.373046875 320 160 314.626953125 160 308 c 2 - 160 268 l 2 - 160 261.373046875 165.373046875 256 172 256 c 2 - 212 256 l 2 - 218.626953125 256 224 261.373046875 224 268 c 2 -320 268 m 2 - 320 308 l 2 - 320 314.626953125 314.626953125 320 308 320 c 2 - 268 320 l 2 - 261.373046875 320 256 314.626953125 256 308 c 2 - 256 268 l 2 - 256 261.373046875 261.373046875 256 268 256 c 2 - 308 256 l 2 - 314.626953125 256 320 261.373046875 320 268 c 2 -416 268 m 2 - 416 308 l 2 - 416 314.626953125 410.626953125 320 404 320 c 2 - 364 320 l 2 - 357.373046875 320 352 314.626953125 352 308 c 2 - 352 268 l 2 - 352 261.373046875 357.373046875 256 364 256 c 2 - 404 256 l 2 - 410.626953125 256 416 261.373046875 416 268 c 2 -512 268 m 2 - 512 308 l 2 - 512 314.626953125 506.626953125 320 500 320 c 2 - 460 320 l 2 - 453.373046875 320 448 314.626953125 448 308 c 2 - 448 268 l 2 - 448 261.373046875 453.373046875 256 460 256 c 2 - 500 256 l 2 - 506.626953125 256 512 261.373046875 512 268 c 2 -176 172 m 2 - 176 212 l 2 - 176 218.626953125 170.626953125 224 164 224 c 2 - 124 224 l 2 - 117.373046875 224 112 218.626953125 112 212 c 2 - 112 172 l 2 - 112 165.373046875 117.373046875 160 124 160 c 2 - 164 160 l 2 - 170.626953125 160 176 165.373046875 176 172 c 2 -272 172 m 2 - 272 212 l 2 - 272 218.626953125 266.626953125 224 260 224 c 2 - 220 224 l 2 - 213.373046875 224 208 218.626953125 208 212 c 2 - 208 172 l 2 - 208 165.373046875 213.373046875 160 220 160 c 2 - 260 160 l 2 - 266.626953125 160 272 165.373046875 272 172 c 2 -368 172 m 2 - 368 212 l 2 - 368 218.626953125 362.626953125 224 356 224 c 2 - 316 224 l 2 - 309.373046875 224 304 218.626953125 304 212 c 2 - 304 172 l 2 - 304 165.373046875 309.373046875 160 316 160 c 2 - 356 160 l 2 - 362.626953125 160 368 165.373046875 368 172 c 2 -464 172 m 2 - 464 212 l 2 - 464 218.626953125 458.626953125 224 452 224 c 2 - 412 224 l 2 - 405.373046875 224 400 218.626953125 400 212 c 2 - 400 172 l 2 - 400 165.373046875 405.373046875 160 412 160 c 2 - 452 160 l 2 - 458.626953125 160 464 165.373046875 464 172 c 2 -128 76 m 2 - 128 116 l 2 - 128 122.626953125 122.626953125 128 116 128 c 2 - 76 128 l 2 - 69.373046875 128 64 122.626953125 64 116 c 2 - 64 76 l 2 - 64 69.373046875 69.373046875 64 76 64 c 2 - 116 64 l 2 - 122.626953125 64 128 69.373046875 128 76 c 2 -416 76 m 2 - 416 116 l 2 - 416 122.626953125 410.626953125 128 404 128 c 2 - 172 128 l 2 - 165.373046875 128 160 122.626953125 160 116 c 2 - 160 76 l 2 - 160 69.373046875 165.373046875 64 172 64 c 2 - 404 64 l 2 - 410.626953125 64 416 69.373046875 416 76 c 2 -512 76 m 2 - 512 116 l 2 - 512 122.626953125 506.626953125 128 500 128 c 2 - 460 128 l 2 - 453.373046875 128 448 122.626953125 448 116 c 2 - 448 76 l 2 - 448 69.373046875 453.373046875 64 460 64 c 2 - 500 64 l 2 - 506.626953125 64 512 69.373046875 512 76 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" k e y b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" K E Y B O A R D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" K e y b o a r d -EndChar - -StartChar: flag-checkered -Encoding: 61726 61726 270 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -243.200195312 258.099609375 m 1 - 267.400390625 251.400390625 290.799804688 241.700195312 316.799804688 235.900390625 c 1 - 316.799804688 167.700195312 l 1 - 292.5 174.400390625 269.299804688 184.099609375 243.200195312 190 c 1 - 243.200195312 258.099609375 l 1 -466.5 381.099609375 m 0 - 487.700195312 390.900390625 512 375.400390625 511.900390625 352.099609375 c 2 - 511.900390625 109 l 2 - 511.900390625 98.400390625 506.799804688 88.599609375 498.099609375 82.599609375 c 0 - 462.299804688 58 423.799804688 41.7001953125 375.599609375 41.7001953125 c 0 - 308.200195312 41.7001953125 264 76.5 210.400390625 76.5 c 0 - 159.599609375 76.5 124.299804688 66.5 96 54.400390625 c 1 - 96 -40 l 2 - 96 -53.2998046875 85.2998046875 -64 72 -64 c 2 - 56 -64 l 2 - 42.7001953125 -64 32 -53.2998046875 32 -40 c 2 - 32 346.099609375 l 1 - 17.5 356.200195312 8 373 8 392 c 0 - 8 423.700195312 34.2998046875 449.299804688 66.2998046875 448 c 0 - 94.7998046875 446.799804688 118.099609375 424 119.900390625 395.599609375 c 0 - 120.400390625 387.200195312 119.099609375 379.299804688 116.299804688 372 c 1 - 137 379.599609375 159.299804688 384 184.299804688 384 c 0 - 251.700195312 384 296 349.200195312 349.5 349.200195312 c 0 - 390 349.200195312 432.200195312 365.200195312 466.5 381.099609375 c 0 -169.599609375 122.5 m 1 - 169.599609375 193.799804688 l 1 - 143.5 191.400390625 122.200195312 185.700195312 96 176.400390625 c 1 - 96 105.900390625 l 1 - 119.599609375 114.299804688 143.799804688 119.799804688 169.599609375 122.5 c 1 -464 257 m 1 - 464 327.5 l 1 - 442.700195312 318.599609375 417.400390625 309.799804688 390.400390625 305 c 1 - 390.400390625 233.099609375 l 1 - 364.400390625 228.900390625 340.5 230.5 316.799804688 235.799804688 c 1 - 316.799804688 304.200195312 l 1 - 290.400390625 308.799804688 266.900390625 318.099609375 243.200195312 325.5 c 1 - 243.200195312 258.099609375 l 1 - 218 265.099609375 196.599609375 267.5 169.599609375 263.799804688 c 1 - 169.599609375 335.400390625 l 1 - 146.099609375 333.200195312 129.200195312 325.599609375 96 313.400390625 c 1 - 96 242.900390625 l 1 - 125 253.599609375 147.200195312 260.700195312 169.599609375 263.799804688 c 1 - 169.599609375 193.799804688 l 1 - 202.400390625 196.799804688 223.5 194.400390625 243.200195312 190 c 1 - 243.200195312 121.5 l 1 - 269.5 116.900390625 292.900390625 107.599609375 316.799804688 100.200195312 c 1 - 316.799804688 167.599609375 l 1 - 342.5 160.5 363.400390625 158.299804688 390.400390625 162 c 1 - 390.400390625 90.400390625 l 1 - 415.5 92.7998046875 438.900390625 101.400390625 464 117.5 c 1 - 464 188 l 1 - 441.799804688 173.799804688 415.200195312 165.400390625 390.400390625 162 c 1 - 390.400390625 233.099609375 l 1 - 417.700195312 237.5 440.400390625 247.200195312 464 257 c 1 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" f l a g hyphen c h e c k e r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" F l a g hyphen C h e c k e r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" F l a g hyphen c h e c k e r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" F L A G hyphen C H E C K E R E D -EndChar - -StartChar: terminal -Encoding: 61728 61728 271 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -257.981445312 175.029296875 m 2 - 63.6376953125 -19.314453125 l 2 - 54.2646484375 -28.6865234375 39.0693359375 -28.6865234375 29.697265625 -19.314453125 c 2 - 7.029296875 3.3525390625 l 2 - -2.328125 12.7099609375 -2.345703125 27.875 6.9892578125 37.25390625 c 2 - 161.010742188 192 l 1 - 6.990234375 346.745117188 l 2 - -2.3447265625 356.124023438 -2.3271484375 371.2890625 7.0302734375 380.646484375 c 2 - 29.697265625 403.313476562 l 2 - 39.0703125 412.685546875 54.265625 412.685546875 63.6376953125 403.313476562 c 2 - 257.981445312 208.969726562 l 2 - 267.353515625 199.59765625 267.353515625 184.40234375 257.981445312 175.029296875 c 2 -640 -8 m 2 - 640 -21.2548828125 629.254882812 -32 616 -32 c 2 - 312 -32 l 2 - 298.745117188 -32 288 -21.2548828125 288 -8 c 2 - 288 24 l 2 - 288 37.2548828125 298.745117188 48 312 48 c 2 - 616 48 l 2 - 629.254882812 48 640 37.2548828125 640 24 c 2 - 640 -8 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" t e r m i n a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" T e r m i n a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" T E R M I N A L -EndChar - -StartChar: code -Encoding: 61729 61729 272 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -278.900390625 -63.5 m 2 - 217.900390625 -45.7998046875 l 2 - 211.5 -44 207.900390625 -37.2998046875 209.700195312 -30.900390625 c 2 - 346.200195312 439.299804688 l 2 - 348 445.700195312 354.700195312 449.299804688 361.099609375 447.5 c 2 - 422.099609375 429.799804688 l 2 - 428.5 428 432.099609375 421.299804688 430.299804688 414.900390625 c 2 - 293.799804688 -55.2998046875 l 2 - 291.900390625 -61.7001953125 285.299804688 -65.400390625 278.900390625 -63.5 c 2 -164.900390625 48.7001953125 m 2 - 160.400390625 43.7998046875 152.799804688 43.599609375 147.900390625 48.2001953125 c 2 - 3.7998046875 183.299804688 l 2 - -1.2998046875 188 -1.2998046875 196.099609375 3.7998046875 200.799804688 c 2 - 147.900390625 335.799804688 l 2 - 152.799804688 340.400390625 160.400390625 340.099609375 164.900390625 335.299804688 c 2 - 208.400390625 288.900390625 l 2 - 213.099609375 284 212.700195312 276.200195312 207.599609375 271.700195312 c 2 - 117 192 l 1 - 207.599609375 112.299804688 l 2 - 212.700195312 107.799804688 213 100 208.400390625 95.099609375 c 2 - 164.900390625 48.7001953125 l 2 -492.099609375 48.099609375 m 2 - 487.200195312 43.599609375 479.599609375 43.7998046875 475.099609375 48.7001953125 c 2 - 431.599609375 95.099609375 l 2 - 426.900390625 100 427.299804688 107.799804688 432.400390625 112.299804688 c 2 - 523 192 l 1 - 432.400390625 271.799804688 l 2 - 427.299804688 276.299804688 427 284.099609375 431.599609375 289 c 2 - 475.099609375 335.400390625 l 2 - 479.700195312 340.200195312 487.299804688 340.400390625 492.099609375 335.900390625 c 2 - 636.200195312 200.700195312 l 2 - 641.299804688 196 641.299804688 187.900390625 636.200195312 183.200195312 c 2 - 492.099609375 48.099609375 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" c o d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C o d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C O D E -EndChar - -StartChar: reply-all -Encoding: 61730 61730 273 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -136.30859375 258.1640625 m 2 - 312.313476562 410.149414062 l 2 - 327.719726562 423.454101562 352 412.65234375 352 391.985351562 c 2 - 352 309.221679688 l 1 - 481.181640625 298.991210938 576 257.009765625 576 125.673828125 c 0 - 576 64.2333984375 536.41796875 3.365234375 492.666992188 -28.4580078125 c 0 - 479.013671875 -38.388671875 459.555664062 -25.9248046875 464.58984375 -9.8271484375 c 0 - 503.1015625 113.334960938 460.66796875 159.655273438 352 172.188476562 c 1 - 352 88.0126953125 l 2 - 352 67.3115234375 327.700195312 56.5595703125 312.313476562 69.8486328125 c 2 - 136.30859375 221.8359375 l 2 - 125.23828125 231.397460938 125.22265625 248.588867188 136.30859375 258.1640625 c 2 -8.30859375 221.8359375 m 2 - -2.76171875 231.397460938 -2.77734375 248.588867188 8.30859375 258.1640625 c 2 - 184.313476562 410.149414062 l 2 - 199.719726562 423.454101562 224 412.65234375 224 391.985351562 c 2 - 224 376.16796875 l 1 - 115.392578125 282.381835938 l 2 - 104.688476562 273.142578125 96 254.166015625 96 240.025390625 c 2 - 96 240.001953125 l 1 - 96 239.977539062 l 2 - 96 225.8359375 104.688476562 206.858398438 115.393554688 197.6171875 c 2 - 224 103.83203125 l 1 - 224 88.013671875 l 2 - 224 67.3134765625 199.700195312 56.560546875 184.313476562 69.849609375 c 2 - 8.30859375 221.8359375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" r e p l y hyphen a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" R e p l y hyphen A l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" R e p l y hyphen a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" R E P L Y hyphen A L L -EndChar - -StartChar: location-arrow -Encoding: 61732 61732 274 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -444.51953125 444.48046875 m 2 - 482.900390625 460.48046875 524.48046875 418.900390625 508.490234375 380.509765625 c 2 - 316.58984375 -35.26953125 l 2 - 294.200195312 -83.25 223.83984375 -67.25 223.83984375 -16.080078125 c 2 - 223.83984375 159.830078125 l 1 - 47.9296875 159.830078125 l 2 - -3.240234375 159.830078125 -19.23046875 230.190429688 28.740234375 252.580078125 c 2 - 444.51953125 444.48046875 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" l o c a t i o n hyphen a r r o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" L o c a t i o n hyphen A r r o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" L o c a t i o n hyphen a r r o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" L O C A T I O N hyphen A R R O W -EndChar - -StartChar: crop -Encoding: 61733 61733 275 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -488 96 m 2 - 501.25 96 512 85.259765625 512 72 c 2 - 512 24 l 2 - 512 10.75 501.25 0 488 0 c 2 - 448 0 l 1 - 448 -40 l 2 - 448 -53.25 437.25 -64 424 -64 c 2 - 376 -64 l 2 - 362.75 -64 352 -53.25 352 -40 c 2 - 352 242.75 l 1 - 205.25 96 l 1 - 320 96 l 1 - 320 0 l 1 - 88 0 l 2 - 74.75 0 64 10.75 64 24 c 2 - 64 288 l 1 - 24 288 l 2 - 10.75 288 0 298.75 0 312 c 2 - 0 360 l 2 - 0 373.259765625 10.75 384 24 384 c 2 - 64 384 l 1 - 64 424 l 2 - 64 437.259765625 74.75 448 88 448 c 2 - 136 448 l 2 - 149.25 448 160 437.259765625 160 424 c 2 - 160 141.25 l 1 - 306.75 288 l 1 - 192 288 l 1 - 192 384 l 1 - 402.75 384 l 1 - 462.059570312 443.309570312 l 2 - 468.309570312 449.559570312 478.440429688 449.559570312 484.690429688 443.309570312 c 2 - 507.309570312 420.690429688 l 2 - 513.559570312 414.440429688 513.559570312 404.309570312 507.309570312 398.059570312 c 2 - 448 338.75 l 1 - 448 96 l 1 - 488 96 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" c r o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" C r o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" C R O P -EndChar - -StartChar: code-branch -Encoding: 61734 61734 276 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 304 m 0 - 384 268.799804688 361.200195312 238.900390625 329.599609375 228.099609375 c 1 - 329.099609375 200 322 177.599609375 308 160.200195312 c 0 - 279.799804688 125.200195312 232 120.700195312 189.799804688 116.799804688 c 0 - 164.099609375 114.400390625 139.900390625 112.200195312 123.700195312 104 c 0 - 116.599609375 100.400390625 111.900390625 95.7998046875 108.799804688 90.599609375 c 1 - 138.799804688 79.099609375 160 50 160 16 c 0 - 160 -28.2001953125 124.200195312 -64 80 -64 c 0 - 35.7998046875 -64 0 -28.2001953125 0 16 c 0 - 0 51.7998046875 23.5 82.099609375 56 92.400390625 c 1 - 56 291.700195312 l 1 - 23.5 301.900390625 0 332.200195312 0 368 c 0 - 0 412.200195312 35.7998046875 448 80 448 c 0 - 124.200195312 448 160 412.200195312 160 368 c 0 - 160 332.200195312 136.5 301.900390625 104 291.700195312 c 1 - 104 147.700195312 l 1 - 127.900390625 159.200195312 157.099609375 162 185.299804688 164.599609375 c 0 - 221.200195312 167.900390625 255.099609375 171.099609375 270.5 190.299804688 c 0 - 277.299804688 198.700195312 280.900390625 211.099609375 281.5 227.200195312 c 1 - 248.299804688 236.900390625 224 267.599609375 224 304 c 0 - 224 348.200195312 259.799804688 384 304 384 c 0 - 348.200195312 384 384 348.200195312 384 304 c 0 -80 384 m 0 - 71.2001953125 384 64 376.799804688 64 368 c 0 - 64 359.200195312 71.2001953125 352 80 352 c 0 - 88.7998046875 352 96 359.200195312 96 368 c 0 - 96 376.799804688 88.7998046875 384 80 384 c 0 -80 0 m 0 - 88.7998046875 0 96 7.2001953125 96 16 c 0 - 96 24.7998046875 88.7998046875 32 80 32 c 0 - 71.2001953125 32 64 24.7998046875 64 16 c 0 - 64 7.2001953125 71.2001953125 0 80 0 c 0 -304 320 m 0 - 295.200195312 320 288 312.799804688 288 304 c 0 - 288 295.200195312 295.200195312 288 304 288 c 0 - 312.799804688 288 320 295.200195312 320 304 c 0 - 320 312.799804688 312.799804688 320 304 320 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" c o d e hyphen b r a n c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" C o d e hyphen B r a n c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" C o d e hyphen b r a n c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" C O D E hyphen B R A N C H -EndChar - -StartChar: unlink -Encoding: 61735 61735 277 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -304.083007812 42.0927734375 m 2 - 308.768554688 37.4072265625 308.768554688 29.80859375 304.083007812 25.1220703125 c 2 - 259.409179688 -19.5517578125 l 2 - 200.146484375 -78.814453125 103.715820312 -78.818359375 44.4482421875 -19.5517578125 c 0 - -14.81640625 39.712890625 -14.81640625 136.143554688 44.4482421875 195.408203125 c 2 - 89.123046875 240.083007812 l 2 - 93.80859375 244.768554688 101.407226562 244.768554688 106.09375 240.083007812 c 2 - 145.692382812 200.485351562 l 2 - 150.377929688 195.798828125 150.377929688 188.201171875 145.692382812 183.513671875 c 2 - 101.016601562 138.83984375 l 2 - 72.9453125 110.766601562 72.9453125 65.08984375 101.016601562 37.0166015625 c 0 - 129.088867188 8.9453125 174.766601562 8.9443359375 202.840820312 37.0166015625 c 2 - 247.514648438 81.69140625 l 2 - 252.201171875 86.376953125 259.798828125 86.376953125 264.486328125 81.69140625 c 2 - 304.083007812 42.0927734375 l 2 -247.514648438 302.30859375 m 2 - 207.91796875 341.907226562 l 2 - 203.232421875 346.59375 203.232421875 354.192382812 207.91796875 358.877929688 c 2 - 252.591796875 403.551757812 l 2 - 311.858398438 462.81640625 408.287109375 462.81640625 467.552734375 403.551757812 c 0 - 526.818359375 344.287109375 526.818359375 247.857421875 467.552734375 188.591796875 c 2 - 422.877929688 143.916992188 l 2 - 418.19140625 139.231445312 410.592773438 139.231445312 405.907226562 143.916992188 c 2 - 366.30859375 183.514648438 l 2 - 361.623046875 188.202148438 361.623046875 195.799804688 366.30859375 200.486328125 c 2 - 410.984375 245.16015625 l 2 - 439.055664062 273.233398438 439.055664062 318.91015625 410.984375 346.983398438 c 0 - 382.91015625 375.055664062 337.232421875 375.057617188 309.16015625 346.983398438 c 2 - 264.486328125 302.30859375 l 2 - 259.798828125 297.623046875 252.201171875 297.623046875 247.514648438 302.30859375 c 2 -482.342773438 -56.970703125 m 2 - 472.970703125 -66.3427734375 457.775390625 -66.3427734375 448.40234375 -56.970703125 c 2 - 7.029296875 384.40234375 l 2 - -2.34375 393.774414062 -2.34375 408.969726562 7.029296875 418.342773438 c 2 - 29.6572265625 440.970703125 l 2 - 39.029296875 450.34375 54.224609375 450.34375 63.59765625 440.970703125 c 2 - 504.969726562 -0.4033203125 l 2 - 514.342773438 -9.775390625 514.342773438 -24.970703125 504.969726562 -34.34375 c 2 - 482.342773438 -56.970703125 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" u n l i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" U n l i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" U N L I N K -EndChar - -StartChar: question -Encoding: 61736 61736 278 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -202.021484375 448 m 0 - 286.90234375 448 377.50390625 381.744140625 377.502929688 294.400390625 c 0 - 377.502929688 178.41796875 252.235351562 176.6328125 252.235351562 133.7734375 c 2 - 252.235351562 128 l 2 - 252.235351562 114.745117188 241.490234375 104 228.235351562 104 c 2 - 155.763671875 104 l 2 - 142.508789062 104 131.763671875 114.745117188 131.763671875 128 c 2 - 131.763671875 137.788085938 l 2 - 131.763671875 199.6171875 178.639648438 224.333007812 214.063476562 244.193359375 c 0 - 244.439453125 261.22265625 263.055664062 272.8046875 263.055664062 295.357421875 c 0 - 263.055664062 325.189453125 225.00390625 344.98828125 194.240234375 344.98828125 c 0 - 155.11328125 344.98828125 136.532226562 326.919921875 111.483398438 295.5390625 c 0 - 103.362304688 285.365234375 88.6025390625 283.526367188 78.23046875 291.390625 c 2 - 35.091796875 324.099609375 l 2 - 24.8212890625 331.887695312 22.55078125 346.393554688 29.9140625 356.973632812 c 0 - 70.5029296875 415.296875 122.202148438 448 202.021484375 448 c 0 -192 74.541015625 m 0 - 230.196289062 74.541015625 261.271484375 43.466796875 261.271484375 5.271484375 c 0 - 261.271484375 -32.9248046875 230.196289062 -64 192 -64 c 0 - 153.803710938 -64 122.728515625 -32.9248046875 122.728515625 5.26953125 c 0 - 122.728515625 43.4658203125 153.803710938 74.541015625 192 74.541015625 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" q u e s t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" Q U E S T I O N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" Q u e s t i o n -EndChar - -StartChar: info -Encoding: 61737 61737 279 -Width: 192 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -20 23.771484375 m 2 - 40 23.771484375 l 1 - 40 168.228515625 l 1 - 20 168.228515625 l 2 - 8.9541015625 168.228515625 0 177.182617188 0 188.228515625 c 2 - 0 236 l 2 - 0 247.045898438 8.9541015625 256 20 256 c 2 - 132 256 l 2 - 143.045898438 256 152 247.045898438 152 236 c 2 - 152 23.771484375 l 1 - 172 23.771484375 l 2 - 183.045898438 23.771484375 192 14.8173828125 192 3.771484375 c 2 - 192 -44 l 2 - 192 -55.0458984375 183.045898438 -64 172 -64 c 2 - 20 -64 l 2 - 8.9541015625 -64 0 -55.0458984375 0 -44 c 2 - 0 3.771484375 l 2 - 0 14.8173828125 8.9541015625 23.771484375 20 23.771484375 c 2 -96 448 m 0 - 135.763671875 448 168 415.764648438 168 376 c 0 - 168 336.235351562 135.764648438 304 96 304 c 0 - 56.2353515625 304 24 336.235351562 24 376 c 0 - 24 415.764648438 56.2353515625 448 96 448 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" i n f o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" I N F O -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" I n f o -EndChar - -StartChar: exclamation -Encoding: 61738 61738 280 -Width: 192 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -176 16 m 0 - 176 -28.1123046875 140.112304688 -64 96 -64 c 0 - 51.8876953125 -64 16 -28.1123046875 16 16 c 0 - 16 60.1123046875 51.8876953125 96 96 96 c 0 - 140.112304688 96 176 60.1123046875 176 16 c 0 -25.259765625 422.80078125 m 2 - 24.5751953125 436.509765625 35.50390625 448 49.23046875 448 c 2 - 142.76953125 448 l 2 - 156.49609375 448 167.424804688 436.509765625 166.740234375 422.80078125 c 2 - 153.139648438 150.80078125 l 2 - 152.500976562 138.028320312 141.958984375 128 129.169921875 128 c 2 - 62.830078125 128 l 2 - 50.041015625 128 39.4990234375 138.028320312 38.8603515625 150.80078125 c 2 - 25.259765625 422.80078125 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" e x c l a m a t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" E X C L A M A T I O N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" E x c l a m a t i o n -EndChar - -StartChar: superscript -Encoding: 61739 61739 281 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 288 m 2 - 504.83203125 288 512 280.83203125 512 272 c 2 - 512 240 l 2 - 512 231.16796875 504.83203125 224 496 224 c 2 - 400 224 l 2 - 391.16796875 224 384 231.16796875 384 240 c 2 - 384 272 l 2 - 384 280.83203125 391.16796875 288 400 288 c 2 - 416 288 l 1 - 416 384 l 1 - 400 384 l 2 - 391.17578125 384.0078125 384.013671875 391.17578125 384.013671875 400 c 0 - 384.013671875 402.08984375 384.7734375 405.301757812 385.709960938 407.169921875 c 2 - 401.709960938 439.169921875 l 2 - 404.151367188 444.040039062 410.552734375 447.995117188 416 448 c 2 - 464 448 l 2 - 472.83203125 448 480 440.83203125 480 432 c 2 - 480 288 l 1 - 496 288 l 2 -336 384 m 2 - 344.83203125 384 352 376.83203125 352 368 c 2 - 352 320 l 2 - 352 311.16796875 344.83203125 304 336 304 c 2 - 302.51953125 304 l 1 - 224.709960938 192 l 1 - 302.51953125 80 l 1 - 336 80 l 2 - 344.83203125 80 352 72.83203125 352 64 c 2 - 352 16 l 2 - 352 7.16796875 344.83203125 0 336 0 c 2 - 269 0 l 2 - 264.41015625 0.0224609375 258.559570312 3.1005859375 255.940429688 6.8701171875 c 2 - 176.040039062 121.870117188 l 1 - 96.1396484375 6.8701171875 l 2 - 93.5048828125 3.078125 87.6181640625 0 83.0009765625 0 c 2 - 83 0 l 1 - 16 0 l 2 - 7.16796875 0 0 7.16796875 0 16 c 2 - 0 64 l 2 - 0 72.83203125 7.16796875 80 16 80 c 2 - 49.48046875 80 l 1 - 127.290039062 192 l 1 - 49.48046875 304 l 1 - 16 304 l 2 - 7.16796875 304 0 311.16796875 0 320 c 2 - 0 368 l 2 - 0 376.83203125 7.16796875 384 16 384 c 2 - 83 384 l 2 - 87.58984375 383.977539062 93.4404296875 380.899414062 96.0595703125 377.129882812 c 2 - 175.959960938 262.129882812 l 1 - 255.860351562 377.129882812 l 2 - 258.495117188 380.921875 264.381835938 384 268.999023438 384 c 2 - 269 384 l 1 - 336 384 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" s u p e r s c r i p t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S u p e r s c r i p t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S U P E R S C R I P T -EndChar - -StartChar: subscript -Encoding: 61740 61740 282 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 0 m 2 - 504.83203125 0 512 -7.16796875 512 -16 c 2 - 512 -48 l 2 - 512 -56.83203125 504.83203125 -64 496 -64 c 2 - 400 -64 l 2 - 391.16796875 -64 384 -56.83203125 384 -48 c 2 - 384 -16 l 2 - 384 -7.16796875 391.16796875 0 400 0 c 2 - 416 0 l 1 - 416 96 l 1 - 400 96 l 2 - 391.17578125 96.0078125 384.013671875 103.17578125 384.013671875 112 c 0 - 384.013671875 114.08984375 384.7734375 117.301757812 385.709960938 119.169921875 c 2 - 401.709960938 151.169921875 l 2 - 404.151367188 156.040039062 410.552734375 159.995117188 416 160 c 2 - 464 160 l 2 - 472.83203125 160 480 152.83203125 480 144 c 2 - 480 0 l 1 - 496 0 l 2 -336 384 m 2 - 344.83203125 384 352 376.83203125 352 368 c 2 - 352 320 l 2 - 352 311.16796875 344.83203125 304 336 304 c 2 - 302.51953125 304 l 1 - 224.709960938 192 l 1 - 302.51953125 80 l 1 - 336 80 l 2 - 344.83203125 80 352 72.83203125 352 64 c 2 - 352 16 l 2 - 352 7.16796875 344.83203125 0 336 0 c 2 - 269 0 l 2 - 264.41015625 0.0224609375 258.559570312 3.1005859375 255.940429688 6.8701171875 c 2 - 176.040039062 121.870117188 l 1 - 96.1396484375 6.8701171875 l 2 - 93.5048828125 3.078125 87.6181640625 0 83.0009765625 0 c 2 - 83 0 l 1 - 16 0 l 2 - 7.16796875 0 0 7.16796875 0 16 c 2 - 0 64 l 2 - 0 72.83203125 7.16796875 80 16 80 c 2 - 49.48046875 80 l 1 - 127.290039062 192 l 1 - 49.48046875 304 l 1 - 16 304 l 2 - 7.16796875 304 0 311.16796875 0 320 c 2 - 0 368 l 2 - 0 376.83203125 7.16796875 384 16 384 c 2 - 83 384 l 2 - 87.58984375 383.977539062 93.4404296875 380.899414062 96.0595703125 377.129882812 c 2 - 175.959960938 262.129882812 l 1 - 255.860351562 377.129882812 l 2 - 258.495117188 380.921875 264.381835938 384 268.999023438 384 c 2 - 269 384 l 1 - 336 384 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" s u b s c r i p t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" S u b s c r i p t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" S U B S C R I P T -EndChar - -StartChar: eraser -Encoding: 61741 61741 283 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -497.94140625 174.05859375 m 2 - 355.8828125 32 l 1 - 500 32 l 2 - 506.626953125 32 512 26.626953125 512 20 c 2 - 512 -20 l 2 - 512 -26.626953125 506.626953125 -32 500 -32 c 2 - 144 -32 l 2 - 133.024414062 -32 117.818359375 -25.701171875 110.057617188 -17.94140625 c 2 - 14.0576171875 78.05859375 l 2 - -4.6865234375 96.8037109375 -4.6865234375 127.196289062 14.0576171875 145.94140625 c 2 - 270.057617188 401.94140625 l 2 - 288.8046875 420.686523438 319.196289062 420.685546875 337.94140625 401.94140625 c 2 - 497.94140625 241.94140625 l 2 - 516.685546875 223.196289062 516.685546875 192.803710938 497.94140625 174.05859375 c 2 -195.314453125 236.685546875 m 1 - 70.6279296875 112 l 1 - 150.627929688 32 l 1 - 265.373046875 32 l 1 - 332.686523438 99.3134765625 l 1 - 195.314453125 236.685546875 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" e r a s e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" E R A S E R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" E r a s e r -EndChar - -StartChar: puzzle-piece -Encoding: 61742 61742 284 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -519.442382812 159.348632812 m 0 - 557.038085938 159.348632812 576 127.755859375 576 93.556640625 c 0 - 576 60.009765625 556.711914062 32 521.077148438 32.0009765625 c 0 - 481.192382812 32.0009765625 470.731445312 68.1533203125 434.768554688 68.1533203125 c 0 - 374.216796875 68.1533203125 408.942382812 -51.9482421875 408.942382812 -51.9482421875 c 1 - 357.38671875 -51.9482421875 227.711914062 -87.021484375 227.711914062 -26.2177734375 c 0 - 227.711914062 9.609375 264 20.0322265625 264 59.7666015625 c 0 - 264 95.267578125 235.884765625 114.484375 202.211914062 114.484375 c 0 - 167.884765625 114.484375 138.634765625 95.59375 138.634765625 58.1376953125 c 0 - 138.634765625 16.7744140625 178.634765625 -0.8603515625 178.634765625 -23.3330078125 c 0 - 178.634765625 -93.0419921875 0 -51.9951171875 0 -51.9951171875 c 1 - 0 281.2421875 l 1 - 0 281.2421875 175.884765625 240.28125 175.883789062 309.904296875 c 0 - 175.883789062 332.376953125 144.172851562 350.290039062 144.172851562 391.654296875 c 0 - 144.172851562 429.109375 175.884765625 448 210.5390625 448 c 0 - 243.884765625 448 272 428.784179688 272 393.282226562 c 0 - 272 353.546875 235.711914062 343.124023438 235.711914062 307.296875 c 0 - 235.711914062 224 432 304 432 304 c 1 - 432 304 377.409179688 127.755859375 437.383789062 127.755859375 c 0 - 459.942382812 127.755859375 477.922851562 159.348632812 519.442382812 159.348632812 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" p u z z l e hyphen p i e c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P u z z l e hyphen P i e c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P u z z l e hyphen p i e c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P U Z Z L E hyphen P I E C E -EndChar - -StartChar: microphone -Encoding: 61744 61744 285 -Width: 352 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -176 96 m 0 - 122.98046875 96 80 138.98046875 80 192 c 2 - 80 352 l 2 - 80 405.01953125 122.98046875 448 176 448 c 0 - 229.01953125 448 272 405.01953125 272 352 c 2 - 272 192 l 2 - 272 138.98046875 229.01953125 96 176 96 c 0 -336 256 m 2 - 344.83984375 256 352 248.83984375 352 240 c 2 - 352 192 l 2 - 352 103.099609375 285.709960938 29.5302734375 200 17.76953125 c 1 - 200 -16 l 1 - 256 -16 l 2 - 264.83984375 -16 272 -23.16015625 272 -32 c 2 - 272 -48 l 2 - 272 -56.83984375 264.83984375 -64 256 -64 c 2 - 96 -64 l 2 - 87.16015625 -64 80 -56.83984375 80 -48 c 2 - 80 -32 l 2 - 80 -23.16015625 87.16015625 -16 96 -16 c 2 - 152 -16 l 1 - 152 18.150390625 l 1 - 63.9697265625 30.2900390625 0 110.200195312 0 199.83984375 c 2 - 0 240 l 2 - 0 248.83984375 7.16015625 256 16 256 c 2 - 32 256 l 2 - 40.83984375 256 48 248.83984375 48 240 c 2 - 48 197.700195312 l 2 - 48 130.889648438 96.7099609375 71.1103515625 163.209960938 64.6201171875 c 0 - 239.509765625 57.1796875 304 117.200195312 304 192 c 2 - 304 240 l 2 - 304 248.83984375 311.16015625 256 320 256 c 2 - 336 256 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" m i c r o p h o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" M i c r o p h o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" M I C R O P H O N E -EndChar - -StartChar: microphone-slash -Encoding: 61745 61745 286 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -633.8203125 -10.099609375 m 2 - 640.799804688 -15.5302734375 642.049804688 -25.580078125 636.639648438 -32.5498046875 c 2 - 617 -57.8203125 l 2 - 611.5703125 -64.7998046875 601.51953125 -66.0595703125 594.540039062 -60.6298828125 c 2 - 6.1796875 394.099609375 l 2 - -0.7998046875 399.530273438 -2.0498046875 409.580078125 3.3701171875 416.549804688 c 2 - 23.009765625 441.8203125 l 2 - 28.4296875 448.799804688 38.490234375 450.049804688 45.4697265625 444.629882812 c 2 - 224.009765625 306.639648438 l 1 - 224.009765625 352 l 2 - 224.009765625 405.01953125 266.990234375 448 320.009765625 448 c 0 - 373.030273438 448 416.009765625 405.01953125 416.009765625 352 c 2 - 416.009765625 191.990234375 l 2 - 416.009765625 181.540039062 413.830078125 171.719726562 410.73046875 162.3203125 c 1 - 437.280273438 141.799804688 l 1 - 444.040039062 157.200195312 448 174.080078125 448 192 c 2 - 448 240 l 2 - 448 248.83984375 455.16015625 256 464 256 c 2 - 480 256 l 2 - 488.83984375 256 496 248.83984375 496 240 c 2 - 496 192 l 2 - 496 162.990234375 488.610351562 135.870117188 476.01953125 111.860351562 c 1 - 633.8203125 -10.099609375 l 2 -400 -16 m 2 - 408.83984375 -16 416 -23.16015625 416 -32 c 2 - 416 -48 l 2 - 416 -56.83984375 408.83984375 -64 400 -64 c 2 - 240 -64 l 2 - 231.16015625 -64 224 -56.83984375 224 -48 c 2 - 224 -32 l 2 - 224 -23.16015625 231.16015625 -16 240 -16 c 2 - 296 -16 l 1 - 296 18.150390625 l 1 - 207.969726562 30.2900390625 144 110.200195312 144 199.83984375 c 2 - 144 206.690429688 l 1 - 196.030273438 166.459960938 l 1 - 208.469726562 113.240234375 251.360351562 70.0595703125 307.209960938 64.6103515625 c 0 - 314.150390625 63.9404296875 320.849609375 64.41015625 327.559570312 64.8095703125 c 1 - 377.669921875 26.080078125 l 1 - 366.849609375 22.3095703125 355.66015625 19.3701171875 344 17.76953125 c 1 - 344 -16 l 1 - 400 -16 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" m i c r o p h o n e hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" M i c r o p h o n e hyphen S l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" M i c r o p h o n e hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" M I C R O P H O N E hyphen S L A S H -EndChar - -StartChar: calendar -Encoding: 61747 61747 287 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -12 256 m 2 - 436 256 l 2 - 442.599609375 256 448 250.599609375 448 244 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 244 l 2 - 0 250.599609375 5.400390625 256 12 256 c 2 -448 300 m 2 - 448 293.400390625 442.599609375 288 436 288 c 2 - 12 288 l 2 - 5.400390625 288 0 293.400390625 0 300 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 96 384 l 1 - 96 436 l 2 - 96 442.599609375 101.400390625 448 108 448 c 2 - 148 448 l 2 - 154.599609375 448 160 442.599609375 160 436 c 2 - 160 384 l 1 - 288 384 l 1 - 288 436 l 2 - 288 442.599609375 293.400390625 448 300 448 c 2 - 340 448 l 2 - 346.599609375 448 352 442.599609375 352 436 c 2 - 352 384 l 1 - 400 384 l 2 - 426.5 384 448 362.5 448 336 c 2 - 448 300 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" c a l e n d a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" C a l e n d a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" C A L E N D A R -EndChar - -StartChar: fire-extinguisher -Encoding: 61748 61748 288 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -434.02734375 421.670898438 m 2 - 441.341796875 422.889648438 448 417.25 448 409.833984375 c 2 - 448 294.166015625 l 2 - 448 286.75 441.341796875 281.110351562 434.02734375 282.329101562 c 2 - 266.02734375 310.329101562 l 2 - 254.296875 312.284179688 256 325.026367188 256 328 c 2 - 216 328 l 1 - 216 300.969726562 l 1 - 257.404296875 290.311523438 288 252.731445312 288 208 c 2 - 288 -40 l 2 - 288 -53.2548828125 277.254882812 -64 264 -64 c 2 - 120 -64 l 2 - 106.745117188 -64 96 -53.2548828125 96 -40 c 2 - 96 206.794921875 l 2 - 96 251.689453125 126.45703125 290.061523438 168 300.923828125 c 1 - 168 328 l 1 - 106.963867188 328 75.0576171875 335.009765625 46.2890625 263.0859375 c 0 - 41.3720703125 250.791015625 27.41015625 244.790039062 15.0927734375 249.715820312 c 0 - 2.7861328125 254.638671875 -3.2001953125 268.606445312 1.72265625 280.913085938 c 0 - 16.390625 317.583984375 39.7333984375 358.74609375 91.7724609375 371.796875 c 1 - 77.6318359375 408.32421875 104.565429688 448 144 448 c 0 - 181.446289062 448 208.352539062 411.891601562 197.66796875 376 c 1 - 256 376 l 1 - 256 380.200195312 254.693359375 391.782226562 266.02734375 393.670898438 c 2 - 434.02734375 421.670898438 l 2 -144 376 m 0 - 152.822265625 376 160 383.177734375 160 392 c 0 - 160 400.822265625 152.822265625 408 144 408 c 0 - 135.177734375 408 128 400.822265625 128 392 c 0 - 128 383.177734375 135.177734375 376 144 376 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" f i r e hyphen e x t i n g u i s h e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" F i r e hyphen E x t i n g u i s h e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" F i r e hyphen e x t i n g u i s h e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" F I R E hyphen E X T I N G U I S H E R -EndChar - -StartChar: rocket -Encoding: 61749 61749 289 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -505.049804688 428.900390625 m 0 - 512 396.700195312 512 371.5 511.900390625 346.299804688 c 0 - 511.900390625 243.610351562 456.490234375 181.509765625 383.900390625 135.209960938 c 1 - 383.900390625 30.7998046875 l 1 - 383.900390625 30.759765625 l 2 - 383.900390625 14.408203125 372.028320312 -4.79296875 357.400390625 -12.099609375 c 2 - 258.700195312 -61.490234375 l 2 - 255.91015625 -62.8798828125 251.116210938 -64.0068359375 248 -64.0068359375 c 0 - 234.751953125 -64.0068359375 224 -53.2548828125 224 -40.0068359375 c 2 - 224 -40 l 1 - 224 63.83984375 l 1 - 201.530273438 41.3701171875 l 2 - 196.356445312 36.1953125 186.217773438 31.9951171875 178.900390625 31.9951171875 c 0 - 171.58203125 31.9951171875 161.444335938 36.1953125 156.26953125 41.3701171875 c 2 - 105.370117188 92.2802734375 l 2 - 100.197265625 97.453125 96 107.58984375 96 114.905273438 c 0 - 96 122.220703125 100.197265625 132.356445312 105.370117188 137.530273438 c 2 - 127.83984375 160 l 1 - 24.0703125 160 l 1 - 24.0576171875 160 l 2 - 10.8095703125 160 0.0576171875 170.751953125 0.0576171875 184 c 0 - 0.0576171875 187.120117188 1.1875 191.91796875 2.580078125 194.709960938 c 2 - 52 293.509765625 l 2 - 59.3232421875 308.119140625 78.5283203125 319.986328125 94.8701171875 320 c 2 - 199.0703125 320 l 1 - 245.259765625 392.799804688 307.16015625 448 410.360351562 448 c 0 - 435.459960938 448 460.650390625 448 492.849609375 441.099609375 c 0 - 498.393554688 439.909179688 503.859375 434.444335938 505.049804688 428.900390625 c 0 -384 280 m 0 - 406.080078125 280 424 297.919921875 424 320 c 0 - 424 342.080078125 406.080078125 360 384 360 c 0 - 361.919921875 360 344 342.080078125 344 320 c 0 - 344 297.919921875 361.919921875 280 384 280 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" r o c k e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" R o c k e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" R O C K E T -EndChar - -StartChar: chevron-circle-left -Encoding: 61751 61751 290 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 -56 m 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 -142.099609375 175 m 2 - 277.599609375 39.5 l 2 - 287 30.099609375 302.200195312 30.099609375 311.5 39.5 c 2 - 328.5 56.5 l 2 - 337.900390625 65.900390625 337.900390625 81.099609375 328.5 90.400390625 c 2 - 226.900390625 192 l 1 - 328.5 293.599609375 l 2 - 337.900390625 303 337.900390625 318.200195312 328.5 327.5 c 2 - 311.5 344.5 l 2 - 302.099609375 353.900390625 286.900390625 353.900390625 277.599609375 344.5 c 2 - 142.099609375 209 l 2 - 132.700195312 199.599609375 132.700195312 184.400390625 142.099609375 175 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" c h e v r o n hyphen c i r c l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C h e v r o n hyphen C i r c l e hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C h e v r o n hyphen c i r c l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C H E V R O N hyphen C I R C L E hyphen L E F T -EndChar - -StartChar: chevron-circle-right -Encoding: 61752 61752 291 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -369.900390625 209 m 2 - 234.400390625 344.5 l 2 - 225 353.900390625 209.799804688 353.900390625 200.5 344.5 c 2 - 183.5 327.5 l 2 - 174.099609375 318.099609375 174.099609375 302.900390625 183.5 293.599609375 c 2 - 285.099609375 192 l 1 - 183.5 90.400390625 l 2 - 174.099609375 81 174.099609375 65.7998046875 183.5 56.5 c 2 - 200.5 39.5 l 2 - 209.900390625 30.099609375 225.099609375 30.099609375 234.400390625 39.5 c 2 - 369.900390625 175 l 2 - 379.299804688 184.400390625 379.299804688 199.599609375 369.900390625 209 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" c h e v r o n hyphen c i r c l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" C h e v r o n hyphen C i r c l e hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" C h e v r o n hyphen c i r c l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" C H E V R O N hyphen C I R C L E hyphen R I G H T -EndChar - -StartChar: chevron-circle-up -Encoding: 61753 61753 292 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -8 192 m 0 - 8 329 119 440 256 440 c 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 -239 305.900390625 m 2 - 103.5 170.400390625 l 2 - 94.099609375 161 94.099609375 145.799804688 103.5 136.5 c 2 - 120.5 119.5 l 2 - 129.900390625 110.099609375 145.099609375 110.099609375 154.400390625 119.5 c 2 - 256 221.099609375 l 1 - 357.599609375 119.5 l 2 - 367 110.099609375 382.200195312 110.099609375 391.5 119.5 c 2 - 408.5 136.5 l 2 - 417.900390625 145.900390625 417.900390625 161.099609375 408.5 170.400390625 c 2 - 273 305.900390625 l 2 - 263.599609375 315.299804688 248.400390625 315.299804688 239 305.900390625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" c h e v r o n hyphen c i r c l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" C h e v r o n hyphen C i r c l e hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" C h e v r o n hyphen c i r c l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" C H E V R O N hyphen C I R C L E hyphen U P -EndChar - -StartChar: chevron-circle-down -Encoding: 61754 61754 293 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504 192 m 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 - 393 440 504 329 504 192 c 0 -273 78.099609375 m 2 - 408.5 213.599609375 l 2 - 417.900390625 223 417.900390625 238.200195312 408.5 247.5 c 2 - 391.5 264.5 l 2 - 382.099609375 273.900390625 366.900390625 273.900390625 357.599609375 264.5 c 2 - 256 162.900390625 l 1 - 154.400390625 264.5 l 2 - 145 273.900390625 129.799804688 273.900390625 120.5 264.5 c 2 - 103.5 247.5 l 2 - 94.099609375 238.099609375 94.099609375 222.900390625 103.5 213.599609375 c 2 - 239 78.099609375 l 2 - 248.400390625 68.7001953125 263.599609375 68.7001953125 273 78.099609375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" c h e v r o n hyphen c i r c l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C h e v r o n hyphen C i r c l e hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C h e v r o n hyphen c i r c l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C H E V R O N hyphen C I R C L E hyphen D O W N -EndChar - -StartChar: anchor -Encoding: 61757 61757 294 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -12.970703125 96 m 2 - 2.2802734375 96 -3.07421875 108.92578125 4.4853515625 116.485351562 c 2 - 71.513671875 183.513671875 l 2 - 76.201171875 188.200195312 83.798828125 188.200195312 88.4853515625 183.513671875 c 2 - 155.513671875 116.485351562 l 2 - 163.07421875 108.92578125 157.719726562 96 147.029296875 96 c 2 - 111.8828125 96 l 1 - 132.1796875 41.6640625 197.064453125 9.3837890625 256 1.9853515625 c 1 - 256 192 l 1 - 204 192 l 2 - 197.373046875 192 192 197.373046875 192 204 c 2 - 192 244 l 2 - 192 250.626953125 197.373046875 256 204 256 c 2 - 256 256 l 1 - 256 261.469726562 l 1 - 218.715820312 274.650390625 192 310.202148438 192 352 c 0 - 192 405.474609375 235.72265625 448.739257812 289.370117188 447.990234375 c 0 - 341.60546875 447.26171875 384.004882812 404.227539062 383.999023438 351.98828125 c 0 - 383.994140625 310.1953125 357.280273438 274.6484375 319.999023438 261.469726562 c 1 - 319.999023438 256 l 1 - 371.999023438 256 l 2 - 378.625976562 256 383.999023438 250.626953125 383.999023438 244 c 2 - 383.999023438 204 l 2 - 383.999023438 197.373046875 378.625976562 192 371.999023438 192 c 2 - 319.999023438 192 l 1 - 319.999023438 1.9853515625 l 1 - 379.153320312 9.412109375 443.826171875 41.6826171875 464.116210938 96 c 1 - 428.969726562 96 l 2 - 418.279296875 96 412.924804688 108.924804688 420.485351562 116.485351562 c 2 - 487.513671875 183.513671875 l 2 - 492.201171875 188.200195312 499.798828125 188.200195312 504.485351562 183.513671875 c 2 - 571.513671875 116.485351562 l 2 - 579.07421875 108.92578125 573.719726562 96 563.029296875 96 c 2 - 530.634765625 96 l 1 - 508.852539062 -6.6201171875 394.228515625 -64 288 -64 c 0 - 181.944335938 -64 67.171875 -6.7353515625 45.365234375 96 c 1 - 12.970703125 96 l 2 -288 384 m 0 - 270.35546875 384 256 369.64453125 256 352 c 0 - 256 334.35546875 270.35546875 320 288 320 c 0 - 305.64453125 320 320 334.35546875 320 352 c 0 - 320 369.64453125 305.64453125 384 288 384 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" a n c h o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" A n c h o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" A N C H O R -EndChar - -StartChar: unlock-alt -Encoding: 61758 61758 295 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 192 m 2 - 426.5 192 448 170.5 448 144 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 144 l 2 - 0 170.5 21.5 192 48 192 c 2 - 72 192 l 1 - 72 294.5 l 2 - 72 378.5 139.5 447.700195312 223.5 448 c 0 - 307.5 448.299804688 376 380 376 296 c 2 - 376 280 l 2 - 376 266.700195312 365.299804688 256 352 256 c 2 - 320 256 l 2 - 306.700195312 256 296 266.700195312 296 280 c 2 - 296 296 l 2 - 296 335.900390625 263.299804688 368.400390625 223.299804688 368 c 0 - 183.700195312 367.599609375 152 334.700195312 152 295.099609375 c 2 - 152 192 l 1 - 400 192 l 2 -264 40 m 2 - 264 88 l 2 - 264 110.099609375 246.099609375 128 224 128 c 0 - 201.900390625 128 184 110.099609375 184 88 c 2 - 184 40 l 2 - 184 17.900390625 201.900390625 0 224 0 c 0 - 246.099609375 0 264 17.900390625 264 40 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" u n l o c k hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" U N L O C K hyphen A L T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" U n l o c k hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" U n l o c k hyphen a l t -EndChar - -StartChar: bullseye -Encoding: 61760 61760 296 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 384.969726562 440 496 328.969726562 496 192 c 0 - 496 55.0302734375 384.969726562 -56 248 -56 c 0 - 111.030273438 -56 0 55.0302734375 0 192 c 0 - 0 328.969726562 111.030273438 440 248 440 c 0 -248 8 m 0 - 349.709960938 8 432 90.3095703125 432 192 c 0 - 432 293.709960938 349.690429688 376 248 376 c 0 - 146.290039062 376 64 293.690429688 64 192 c 0 - 64 90.2900390625 146.309570312 8 248 8 c 0 -248 320 m 0 - 318.690429688 320 376 262.690429688 376 192 c 0 - 376 121.309570312 318.690429688 64 248 64 c 0 - 177.309570312 64 120 121.309570312 120 192 c 0 - 120 262.690429688 177.309570312 320 248 320 c 0 -248 128 m 0 - 283.290039062 128 312 156.709960938 312 192 c 0 - 312 227.290039062 283.290039062 256 248 256 c 0 - 212.709960938 256 184 227.290039062 184 192 c 0 - 184 156.709960938 212.709960938 128 248 128 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" b u l l s e y e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" B u l l s e y e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" B U L L S E Y E -EndChar - -StartChar: ellipsis-h -Encoding: 61761 61761 297 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -328 192 m 0 - 328 152.200195312 295.799804688 120 256 120 c 0 - 216.200195312 120 184 152.200195312 184 192 c 0 - 184 231.799804688 216.200195312 264 256 264 c 0 - 295.799804688 264 328 231.799804688 328 192 c 0 -432 264 m 0 - 471.799804688 264 504 231.799804688 504 192 c 0 - 504 152.200195312 471.799804688 120 432 120 c 0 - 392.200195312 120 360 152.200195312 360 192 c 0 - 360 231.799804688 392.200195312 264 432 264 c 0 -80 264 m 0 - 119.799804688 264 152 231.799804688 152 192 c 0 - 152 152.200195312 119.799804688 120 80 120 c 0 - 40.2001953125 120 8 152.200195312 8 192 c 0 - 8 231.799804688 40.2001953125 264 80 264 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" e l l i p s i s hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" E l l i p s i s hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" E L L I P S I S hyphen H -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" E l l i p s i s hyphen H -EndChar - -StartChar: ellipsis-v -Encoding: 61762 61762 298 -Width: 192 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 264 m 0 - 135.799804688 264 168 231.799804688 168 192 c 0 - 168 152.200195312 135.799804688 120 96 120 c 0 - 56.2001953125 120 24 152.200195312 24 192 c 0 - 24 231.799804688 56.2001953125 264 96 264 c 0 -24 368 m 0 - 24 407.799804688 56.2001953125 440 96 440 c 0 - 135.799804688 440 168 407.799804688 168 368 c 0 - 168 328.200195312 135.799804688 296 96 296 c 0 - 56.2001953125 296 24 328.200195312 24 368 c 0 -24 16 m 0 - 24 55.7998046875 56.2001953125 88 96 88 c 0 - 135.799804688 88 168 55.7998046875 168 16 c 0 - 168 -23.7998046875 135.799804688 -56 96 -56 c 0 - 56.2001953125 -56 24 -23.7998046875 24 16 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" e l l i p s i s hyphen v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" E l l i p s i s hyphen V -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" E l l i p s i s hyphen v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" E L L I P S I S hyphen V -EndChar - -StartChar: rss-square -Encoding: 61763 61763 299 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.509765625 416 448 394.509765625 448 368 c 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 400 416 l 2 -112 32 m 0 - 138.509765625 32 160 53.490234375 160 80 c 0 - 160 106.509765625 138.509765625 128 112 128 c 0 - 85.490234375 128 64 106.509765625 64 80 c 0 - 64 53.490234375 85.490234375 32 112 32 c 0 -269.533203125 32 m 2 - 276.068359375 32 281.309570312 37.4677734375 280.958007812 43.994140625 c 0 - 274.991210938 154.421875 186.540039062 242.984375 75.994140625 248.958007812 c 0 - 69.4677734375 249.309570312 64 244.068359375 64 237.533203125 c 2 - 64 203.198242188 l 2 - 64 197.188476562 68.6357421875 192.147460938 74.6328125 191.756835938 c 0 - 154.512695312 186.553710938 218.541992188 122.68359375 223.755859375 42.6337890625 c 0 - 224.147460938 36.6357421875 229.186523438 32 235.198242188 32 c 2 - 269.533203125 32 l 2 -372.559570312 32 m 2 - 379.013671875 32 384.223632812 37.337890625 383.9921875 43.787109375 c 0 - 377.997070312 210.80078125 243.6171875 345.966796875 75.787109375 351.9921875 c 0 - 69.337890625 352.223632812 64 347.013671875 64 340.559570312 c 2 - 64 306.225585938 l 2 - 64 300.065429688 68.8818359375 295.05078125 75.0390625 294.797851562 c 0 - 211.594726562 289.19921875 321.201171875 179.573242188 326.798828125 43.0380859375 c 0 - 327.05078125 36.8818359375 332.065429688 32 338.225585938 32 c 2 - 372.559570312 32 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" r s s hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" R s s hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" R s s hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" R S S hyphen S Q U A R E -EndChar - -StartChar: play-circle -Encoding: 61764 61764 300 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -371.700195312 168 m 2 - 388.099609375 177.099609375 388.099609375 200.799804688 371.700195312 210 c 2 - 195.700195312 317 l 2 - 179.799804688 325.799804688 160 314.400390625 160 296 c 2 - 160 88 l 2 - 160 69.5 179.900390625 58.2001953125 195.700195312 67 c 2 - 371.700195312 168 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" p l a y hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P l a y hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P L A Y hyphen C I R C L E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P l a y hyphen C i r c l e -EndChar - -StartChar: minus-square -Encoding: 61766 61766 301 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.5 416 448 394.5 448 368 c 2 - 448 16 l 2 - 448 -10.5 426.5 -32 400 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 400 416 l 2 -92 152 m 2 - 356 152 l 2 - 362.599609375 152 368 157.400390625 368 164 c 2 - 368 220 l 2 - 368 226.599609375 362.599609375 232 356 232 c 2 - 92 232 l 2 - 85.400390625 232 80 226.599609375 80 220 c 2 - 80 164 l 2 - 80 157.400390625 85.400390625 152 92 152 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" m i n u s hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" M i n u s hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" M i n u s hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" M I N U S hyphen S Q U A R E -EndChar - -StartChar: check-square -Encoding: 61770 61770 302 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 -32 m 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 400 416 l 2 - 426.509765625 416 448 394.509765625 448 368 c 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 -195.314453125 66.05859375 m 2 - 379.314453125 250.05859375 l 2 - 385.561523438 256.306640625 385.561523438 266.438476562 379.314453125 272.685546875 c 2 - 356.686523438 295.313476562 l 2 - 350.439453125 301.560546875 340.307617188 301.561523438 334.05859375 295.313476562 c 2 - 184 145.254882812 l 1 - 113.94140625 215.314453125 l 2 - 107.693359375 221.561523438 97.5615234375 221.561523438 91.3134765625 215.314453125 c 2 - 68.685546875 192.686523438 l 2 - 62.4384765625 186.439453125 62.4384765625 176.307617188 68.685546875 170.059570312 c 2 - 172.685546875 66.0595703125 l 2 - 178.934570312 59.8095703125 189.065429688 59.8095703125 195.314453125 66.05859375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" c h e c k hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" C h e c k hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" C h e c k hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" C H E C K hyphen S Q U A R E -EndChar - -StartChar: pen-square -Encoding: 61771 61771 303 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 -32 m 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 400 416 l 2 - 426.5 416 448 394.5 448 368 c 2 - 448 16 l 2 - 448 -10.5 426.5 -32 400 -32 c 2 -238.099609375 270.099609375 m 2 - 102.400390625 134.400390625 l 1 - 96.099609375 77.2998046875 l 2 - 95.2998046875 69.7001953125 101.700195312 63.2001953125 109.400390625 64 c 2 - 166.5 70.2998046875 l 1 - 302.200195312 206 l 2 - 304.5 208.299804688 304.5 212.099609375 302.200195312 214.5 c 2 - 246.700195312 270 l 2 - 244.200195312 272.400390625 240.400390625 272.400390625 238.099609375 270.099609375 c 2 -345 282.900390625 m 2 - 314.900390625 313 l 2 - 305.5 322.400390625 290.299804688 322.400390625 281 313 c 2 - 257.900390625 289.900390625 l 2 - 255.599609375 287.599609375 255.599609375 283.799804688 257.900390625 281.400390625 c 2 - 313.400390625 225.900390625 l 2 - 315.700195312 223.599609375 319.5 223.599609375 321.900390625 225.900390625 c 2 - 345 249 l 2 - 354.299804688 258.299804688 354.299804688 273.5 345 282.900390625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" p e n hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" P e n hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" P e n hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" P E N hyphen S Q U A R E -EndChar - -StartChar: share-square -Encoding: 61773 61773 304 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -568.482421875 270.551757812 m 2 - 424.478515625 134.567382812 l 2 - 409.299804688 120.232421875 384 130.860351562 384 152.014648438 c 2 - 384 223.977539062 l 1 - 239.424804688 223.0078125 178.43359375 188.865234375 219.224609375 52.625 c 0 - 223.708007812 37.65234375 206.37890625 26.0576171875 194.21875 35.294921875 c 0 - 155.251953125 64.89453125 120 121.51171875 120 178.661132812 c 0 - 120 322.59765625 237.598632812 351.161132812 384 351.97265625 c 1 - 384 423.98828125 l 2 - 384 445.162109375 409.317382812 455.755859375 424.478515625 441.435546875 c 2 - 568.482421875 305.448242188 l 2 - 578.501953125 295.985351562 578.509765625 280.0234375 568.482421875 270.551757812 c 2 -384 68.8720703125 m 2 - 384 76.216796875 390.530273438 81.77734375 397.799804688 80.7314453125 c 0 - 400.611328125 80.326171875 405.198242188 79.9970703125 408.0390625 79.9970703125 c 0 - 414.84375 79.9970703125 425.573242188 81.8388671875 431.989257812 84.1083984375 c 0 - 439.802734375 86.8720703125 448 81.09375 448 72.8056640625 c 2 - 448 -16 l 2 - 448 -42.509765625 426.509765625 -64 400 -64 c 2 - 48 -64 l 2 - 21.490234375 -64 0 -42.509765625 0 -16 c 2 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 169.033203125 384 l 2 - 181.583984375 384 185.708007812 367.169921875 174.578125 361.369140625 c 0 - 155.80078125 351.583007812 138.516601562 339.260742188 123.564453125 323.693359375 c 0 - 121.611328125 321.65625 117.737304688 320.001953125 114.916015625 320 c 2 - 64 320 l 1 - 64 0 l 1 - 384 0 l 1 - 384 68.8720703125 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" s h a r e hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" S h a r e hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" S h a r e hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" S H A R E hyphen S Q U A R E -EndChar - -StartChar: compass -Encoding: 61774 61774 305 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -225.379882812 214.629882812 m 0 - 237.870117188 227.120117188 258.129882812 227.120117188 270.629882812 214.629882812 c 0 - 283.129882812 202.139648438 283.129882812 181.879882812 270.629882812 169.379882812 c 0 - 258.139648438 156.879882812 237.870117188 156.879882812 225.379882812 169.379882812 c 0 - 212.879882812 181.870117188 212.879882812 202.129882812 225.379882812 214.629882812 c 0 -248 440 m 0 - 384.969726562 440 496 328.969726562 496 192 c 0 - 496 55.0302734375 384.969726562 -56 248 -56 c 0 - 111.030273438 -56 0 55.0302734375 0 192 c 0 - 0 328.969726562 111.030273438 440 248 440 c 0 -374.139648438 291.950195312 m 2 - 381.75 308.599609375 364.599609375 325.75 347.950195312 318.150390625 c 2 - 203.610351562 252.1796875 l 2 - 197.635742188 249.44921875 190.5703125 242.383789062 187.83984375 236.41015625 c 2 - 121.860351562 92.0595703125 l 2 - 114.25 75.41015625 131.41015625 58.25 148.059570312 65.8603515625 c 2 - 292.400390625 131.830078125 l 2 - 298.374023438 134.560546875 305.439453125 141.625976562 308.169921875 147.599609375 c 2 - 374.139648438 291.950195312 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" c o m p a s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" C o m p a s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" C O M P A S S -EndChar - -StartChar: caret-square-down -Encoding: 61776 61776 306 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 368 m 2 - 448 16 l 2 - 448 -10.5 426.5 -32 400 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 400 416 l 2 - 426.5 416 448 394.5 448 368 c 2 -92.5 227.5 m 2 - 215.5 104.5 l 2 - 220.200195312 99.7998046875 227.799804688 99.7998046875 232.5 104.5 c 2 - 355.5 227.5 l 2 - 363.099609375 235.099609375 357.700195312 248 347 248 c 2 - 101 248 l 2 - 90.2998046875 248 84.900390625 235.099609375 92.5 227.5 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" c a r e t hyphen s q u a r e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" C a r e t hyphen S q u a r e hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" C a r e t hyphen s q u a r e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" C A R E T hyphen S Q U A R E hyphen D O W N -EndChar - -StartChar: caret-square-up -Encoding: 61777 61777 307 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 16 m 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 400 416 l 2 - 426.509765625 416 448 394.509765625 448 368 c 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 -355.514648438 156.485351562 m 2 - 232.485351562 279.514648438 l 2 - 227.798828125 284.201171875 220.201171875 284.201171875 215.513671875 279.514648438 c 2 - 92.4853515625 156.485351562 l 2 - 84.9248046875 148.924804688 90.279296875 136 100.969726562 136 c 2 - 347.029296875 136 l 2 - 357.719726562 136 363.07421875 148.92578125 355.514648438 156.485351562 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" c a r e t hyphen s q u a r e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" C a r e t hyphen S q u a r e hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" C a r e t hyphen s q u a r e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" C A R E T hyphen S Q U A R E hyphen U P -EndChar - -StartChar: caret-square-right -Encoding: 61778 61778 308 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -48 416 m 2 - 400 416 l 2 - 426.509765625 416 448 394.509765625 448 368 c 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 -188.485351562 60.4853515625 m 2 - 311.513671875 183.513671875 l 2 - 316.200195312 188.200195312 316.200195312 195.797851562 311.513671875 200.485351562 c 2 - 188.485351562 323.514648438 l 2 - 180.924804688 331.075195312 168 325.720703125 168 315.030273438 c 2 - 168 68.970703125 l 2 - 168 58.2802734375 180.92578125 52.92578125 188.485351562 60.4853515625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" c a r e t hyphen s q u a r e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" C a r e t hyphen S q u a r e hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" C a r e t hyphen s q u a r e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" C A R E T hyphen S Q U A R E hyphen R I G H T -EndChar - -StartChar: euro-sign -Encoding: 61779 61779 309 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -310.706054688 34.2353515625 m 2 - 319.524414062 -10.2548828125 l 2 - 320.762695312 -16.50390625 316.903320312 -22.6171875 310.736328125 -24.2119140625 c 0 - 298.197265625 -27.4560546875 275.935546875 -32 249.634765625 -32 c 0 - 145.263671875 -32 67.138671875 33.3076171875 42.1142578125 123.639648438 c 1 - 12 123.639648438 l 2 - 5.373046875 123.639648438 0 129.012695312 0 135.639648438 c 2 - 0 164 l 2 - 0 170.626953125 5.373046875 176 12 176 c 2 - 33.3876953125 176 l 1 - 32.3876953125 188.958007812 32.5595703125 204.637695312 33.5693359375 218.245117188 c 1 - 12 218.245117188 l 2 - 5.373046875 218.245117188 0 223.618164062 0 230.245117188 c 2 - 0 260 l 2 - 0 266.626953125 5.373046875 272 12 272 c 2 - 45.0751953125 272 l 1 - 74.0302734375 355.748046875 152.451171875 416 249.634765625 416 c 0 - 270.709960938 416 290.216796875 413.087890625 302.321289062 410.79296875 c 0 - 309.181640625 409.4921875 313.46875 402.6171875 311.647460938 395.875976562 c 2 - 299.65625 351.5078125 l 2 - 298.000976562 345.3828125 291.870117188 341.6171875 285.654296875 342.884765625 c 0 - 276.3671875 344.780273438 262.2890625 347.030273438 247.802734375 347.030273438 c 0 - 192.874023438 347.030273438 150.817382812 316.991210938 130.18359375 272 c 1 - 268.461914062 272 l 2 - 276.124023438 272 281.823242188 264.91796875 280.184570312 257.43359375 c 2 - 273.672851562 227.678710938 l 2 - 272.533203125 222.471679688 267.28125 218.245117188 261.950195312 218.245117188 c 1 - 261.950195312 218.245117188 l 1 - 115.357421875 218.245117188 l 1 - 113.805664062 204.287109375 114.009765625 190.328125 115.219726562 176 c 1 - 249.45703125 176 l 2 - 257.146484375 176 262.850585938 168.87109375 261.165039062 161.369140625 c 2 - 254.791992188 133.008789062 l 2 - 253.629882812 127.836914062 248.384765625 123.639648438 243.083984375 123.639648438 c 2 - 129.39453125 123.639648438 l 1 - 148.926757812 72.9814453125 194.092773438 38.19140625 250.856445312 38.19140625 c 0 - 268.860351562 38.19140625 285.58984375 41.1650390625 296.282226562 43.603515625 c 0 - 302.87109375 45.107421875 309.391601562 40.865234375 310.706054688 34.2353515625 c 2 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" e u r o hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" E u r o hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" E U R O hyphen S I G N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" E u r o hyphen S i g n -EndChar - -StartChar: pound-sign -Encoding: 61780 61780 310 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -308 96 m 2 - 314.626953125 96 320 90.626953125 320 84 c 2 - 320 -20 l 2 - 320 -26.626953125 314.626953125 -32 308 -32 c 2 - 12 -32 l 2 - 5.373046875 -32 0 -26.626953125 0 -20 c 2 - 0 20 l 2 - 0 26.626953125 5.373046875 32 12 32 c 2 - 48 32 l 1 - 48 160 l 1 - 20 160 l 2 - 13.373046875 160 8 165.373046875 8 172 c 2 - 8 212 l 2 - 8 218.626953125 13.373046875 224 20 224 c 2 - 48 224 l 1 - 48 290.0390625 l 2 - 48 363.2578125 106.026367188 416 187.930664062 416 c 0 - 236.576171875 416 273.124023438 393.440429688 289.505859375 381.072265625 c 0 - 294.904296875 376.99609375 295.858398438 369.266601562 291.625 363.991210938 c 2 - 263.131835938 328.477539062 l 2 - 259.33203125 323.7421875 252.594726562 322.580078125 247.444335938 325.79296875 c 0 - 235.669921875 333.13671875 213.450195312 344.641601562 189.791992188 344.641601562 c 0 - 152.561523438 344.641601562 128 319.822265625 128 287.555664062 c 2 - 128 224 l 1 - 212 224 l 2 - 218.626953125 224 224 218.626953125 224 212 c 2 - 224 172 l 2 - 224 165.373046875 218.626953125 160 212 160 c 2 - 128 160 l 1 - 128 33.15234375 l 1 - 250.504882812 33.15234375 l 1 - 250.504882812 84 l 2 - 250.504882812 90.626953125 255.877929688 96 262.504882812 96 c 2 - 308 96 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" p o u n d hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" P o u n d hyphen S i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" P o u n d hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" P O U N D hyphen S I G N -EndChar - -StartChar: dollar-sign -Encoding: 61781 61781 311 -Width: 288 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -209.200195312 214.599609375 m 2 - 267.099609375 197.700195312 303.200195312 134.5 281.700195312 72.900390625 c 0 - 266.299804688 28.7998046875 222.599609375 1.099609375 176 0.2001953125 c 1 - 176 -48 l 2 - 176 -56.7998046875 168.799804688 -64 160 -64 c 2 - 128 -64 l 2 - 119.200195312 -64 112 -56.7998046875 112 -48 c 2 - 112 0 l 1 - 80.599609375 0.099609375 50 10.7998046875 25.5 30 c 0 - 17.599609375 36.099609375 16.599609375 47.599609375 23.7001953125 54.5 c 2 - 58.5 88.5 l 2 - 63.7001953125 93.599609375 71.900390625 94.599609375 78 90.5 c 0 - 88 83.7001953125 100 80 112.200195312 80 c 2 - 178.5 80 l 2 - 194.799804688 80 208 93.2001953125 208 109.5 c 0 - 208 122.5 199.299804688 134.099609375 186.799804688 137.799804688 c 2 - 84.2998046875 167.799804688 l 2 - 39.900390625 180.799804688 4.7001953125 218.299804688 0.5 264.400390625 c 0 - -5.400390625 329.299804688 45.7998046875 384 109.5 384 c 2 - 112 384 l 1 - 112 432 l 2 - 112 440.799804688 119.200195312 448 128 448 c 2 - 160 448 l 2 - 168.799804688 448 176 440.799804688 176 432 c 2 - 176 384 l 1 - 207.400390625 383.900390625 238 373.200195312 262.5 354 c 0 - 270.400390625 347.900390625 271.400390625 336.400390625 264.299804688 329.5 c 2 - 229.5 295.5 l 2 - 224.299804688 290.400390625 216.099609375 289.400390625 210 293.5 c 0 - 200 300.299804688 188 304 175.799804688 304 c 2 - 109.5 304 l 2 - 93.2001953125 304 80 290.799804688 80 274.5 c 0 - 80 261.5 88.7001953125 249.799804688 101.200195312 246.200195312 c 2 - 209.200195312 214.599609375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" d o l l a r hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" D o l l a r hyphen S i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" D o l l a r hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" D O L L A R hyphen S I G N -EndChar - -StartChar: rupee-sign -Encoding: 61782 61782 312 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -308 352 m 2 - 235.057617188 352 l 1 - 241.030273438 342.24609375 245.82421875 331.541015625 249.309570312 320 c 1 - 308 320 l 2 - 314.626953125 320 320 314.626953125 320 308 c 2 - 320 268 l 2 - 320 261.373046875 314.626953125 256 308 256 c 2 - 255.189453125 256 l 1 - 248.014648438 181.489257812 193.370117188 130.43359375 116.87109375 128.09375 c 1 - 267.752929688 -11.181640625 l 2 - 275.780273438 -18.591796875 270.538085938 -32 259.614257812 -32 c 2 - 177.051757812 -32 l 2 - 174.461914062 -32 170.81640625 -30.57421875 168.913085938 -28.818359375 c 2 - 3.861328125 123.538085938 l 2 - 1.400390625 125.809570312 0 129.006835938 0 132.356445312 c 2 - 0 185.368164062 l 2 - 0 191.995117188 5.373046875 197.368164062 12 197.368164062 c 2 - 96 197.368164062 l 2 - 137.795898438 197.368164062 164.540039062 219.9140625 170.756835938 256 c 1 - 12 256 l 2 - 5.373046875 256 0 261.373046875 0 268 c 2 - 0 308 l 2 - 0 314.626953125 5.373046875 320 12 320 c 2 - 158.25 320 l 1 - 145.541015625 337.293945312 124.587890625 347.251953125 97.2802734375 347.251953125 c 2 - 12 347.251953125 l 2 - 5.373046875 347.251953125 0 352.625 0 359.251953125 c 2 - 0 404 l 2 - 0 410.626953125 5.373046875 416 12 416 c 2 - 308 416 l 2 - 314.626953125 416 320 410.626953125 320 404 c 2 - 320 364 l 2 - 320 357.373046875 314.626953125 352 308 352 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" r u p e e hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" R u p e e hyphen S i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" R u p e e hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" R U P E E hyphen S I G N -EndChar - -StartChar: yen-sign -Encoding: 61783 61783 313 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -351.200195312 416 m 2 - 360.299804688 416 366.099609375 406.299804688 361.799804688 398.400390625 c 2 - 281.700195312 248 l 1 - 340 248 l 2 - 346.599609375 248 352 242.599609375 352 236 c 2 - 352 204 l 2 - 352 197.400390625 346.599609375 192 340 192 c 2 - 251.799804688 192 l 1 - 232 154.799804688 l 1 - 232 128 l 1 - 340 128 l 2 - 346.599609375 128 352 122.599609375 352 116 c 2 - 352 84 l 2 - 352 77.400390625 346.599609375 72 340 72 c 2 - 232 72 l 1 - 232 -20 l 2 - 232 -26.599609375 226.599609375 -32 220 -32 c 2 - 164 -32 l 2 - 157.400390625 -32 152 -26.599609375 152 -20 c 2 - 152 72 l 1 - 44 72 l 2 - 37.400390625 72 32 77.400390625 32 84 c 2 - 32 116 l 2 - 32 122.599609375 37.400390625 128 44 128 c 2 - 152 128 l 1 - 152 154.799804688 l 1 - 132.200195312 192 l 1 - 44 192 l 2 - 37.400390625 192 32 197.400390625 32 204 c 2 - 32 236 l 2 - 32 242.599609375 37.400390625 248 44 248 c 2 - 102.299804688 248 l 1 - 22.2001953125 398.400390625 l 2 - 18 406.299804688 23.7001953125 416 32.7998046875 416 c 2 - 98 416 l 2 - 102.599609375 416 106.799804688 413.400390625 108.799804688 409.299804688 c 2 - 164.200195312 296.099609375 l 2 - 178.700195312 261.400390625 191.299804688 224.200195312 191.299804688 224.200195312 c 1 - 192.599609375 224.200195312 l 1 - 192.599609375 224.200195312 205.200195312 261.400390625 219.700195312 296.099609375 c 2 - 275.099609375 409.299804688 l 2 - 277.099609375 413.400390625 281.299804688 416 285.900390625 416 c 2 - 351.200195312 416 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" y e n hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" Y e n hyphen S i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" Y e n hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" Y E N hyphen S I G N -EndChar - -StartChar: ruble-sign -Encoding: 61784 61784 314 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -239.360351562 128 m 2 - 146.559570312 128 l 1 - 146.559570312 96 l 1 - 308 96 l 2 - 314.626953125 96 320 90.626953125 320 84 c 2 - 320 44 l 2 - 320 37.373046875 314.626953125 32 308 32 c 2 - 146.559570312 32 l 1 - 146.559570312 -20 l 2 - 146.559570312 -26.626953125 141.186523438 -32 134.559570312 -32 c 2 - 76 -32 l 2 - 69.373046875 -32 64 -26.626953125 64 -20 c 2 - 64 32 l 1 - 12 32 l 2 - 5.373046875 32 0 37.373046875 0 44 c 2 - 0 84 l 2 - 0 90.626953125 5.373046875 96 12 96 c 2 - 64 96 l 1 - 64 128 l 1 - 12 128 l 2 - 5.373046875 128 0 133.373046875 0 140 c 2 - 0 185.368164062 l 2 - 0 191.995117188 5.373046875 197.368164062 12 197.368164062 c 2 - 64 197.368164062 l 1 - 64 404 l 2 - 64 410.626953125 69.373046875 416 76 416 c 2 - 239.360351562 416 l 2 - 324.48046875 416 384 358.400390625 384 272.928710938 c 0 - 384 187.458007812 324.48046875 128 239.360351562 128 c 2 -146.559570312 347.251953125 m 1 - 146.559570312 197.368164062 l 1 - 224 197.368164062 l 2 - 272 197.368164062 300.16015625 227.096679688 300.16015625 272.928710938 c 0 - 300.16015625 318.141601562 272 347.251953125 225.280273438 347.251953125 c 2 - 146.559570312 347.251953125 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" r u b l e hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" R u b l e hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" R U B L E hyphen S I G N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" R u b l e hyphen S i g n -EndChar - -StartChar: won-sign -Encoding: 61785 61785 315 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -564 256 m 2 - 501.299804688 256 l 1 - 493.900390625 224 l 1 - 564 224 l 2 - 570.599609375 224 576 218.599609375 576 212 c 2 - 576 172 l 2 - 576 165.400390625 570.599609375 160 564 160 c 2 - 479.099609375 160 l 1 - 437 -22.7001953125 l 2 - 435.700195312 -28.099609375 430.900390625 -32 425.299804688 -32 c 2 - 368.5 -32 l 2 - 362.900390625 -32 358.099609375 -28.099609375 356.799804688 -22.7001953125 c 2 - 314.400390625 160 l 1 - 259.299804688 160 l 1 - 217 -22.7001953125 l 2 - 215.700195312 -28.099609375 210.900390625 -32 205.299804688 -32 c 2 - 148.5 -32 l 2 - 142.900390625 -32 138 -28.099609375 136.799804688 -22.599609375 c 2 - 95.900390625 160 l 1 - 12 160 l 2 - 5.400390625 160 0 165.400390625 0 172 c 2 - 0 212 l 2 - 0 218.599609375 5.400390625 224 12 224 c 2 - 81.5 224 l 1 - 74.2998046875 256 l 1 - 12 256 l 2 - 5.400390625 256 0 261.400390625 0 268 c 2 - 0 308 l 2 - 0 314.599609375 5.400390625 320 12 320 c 2 - 60 320 l 1 - 41.900390625 400.700195312 l 2 - 40.2001953125 408.200195312 45.900390625 415.299804688 53.599609375 415.299804688 c 2 - 95.7001953125 415.299804688 l 2 - 101.400390625 415.299804688 106.400390625 411.299804688 107.5 405.700195312 c 2 - 125 320 l 1 - 233.700195312 320 l 1 - 253.700195312 406 l 2 - 255 411.5 259.799804688 415.299804688 265.400390625 415.299804688 c 2 - 309.400390625 415.299804688 l 2 - 315 415.299804688 319.799804688 411.5 321.099609375 406 c 2 - 340.799804688 320 l 1 - 450.700195312 320 l 1 - 465.099609375 405.799804688 l 2 - 466.200195312 411.299804688 471.099609375 415.299804688 476.799804688 415.299804688 c 2 - 522.900390625 415.299804688 l 2 - 530.599609375 415.299804688 536.299804688 408.099609375 534.599609375 400.599609375 c 2 - 516 320 l 1 - 564 320 l 2 - 570.599609375 320 576 314.599609375 576 308 c 2 - 576 268 l 2 - 576 261.400390625 570.599609375 256 564 256 c 2 -183.799804688 106 m 2 - 196.400390625 160 l 1 - 157.599609375 160 l 1 - 168.599609375 106 l 2 - 173.700195312 80.7998046875 175.400390625 58.7998046875 175.400390625 58.7998046875 c 1 - 176.5 58.7998046875 l 2 - 177 58.7998046875 177.599609375 80.2001953125 183.799804688 106 c 2 -211.299804688 224 m 1 - 218.799804688 256 l 1 - 138 256 l 1 - 144.5 224 l 1 - 211.299804688 224 l 1 -274.200195312 224 m 1 - 299.599609375 224 l 1 - 297.599609375 232.599609375 l 2 - 295.700195312 240.599609375 294.099609375 248.599609375 292.799804688 256 c 1 - 281 256 l 1 - 279.700195312 248.599609375 278.099609375 240.599609375 276.200195312 232.599609375 c 2 - 274.200195312 224 l 1 -405.099609375 106 m 2 - 416.599609375 160 l 1 - 377.5 160 l 1 - 389.900390625 106 l 2 - 396.099609375 80.2001953125 396.599609375 58.7998046875 397.200195312 58.7998046875 c 2 - 398.299804688 58.7998046875 l 1 - 398.299804688 58.7998046875 400 80.7998046875 405.099609375 106 c 2 -430.299804688 224 m 1 - 437.200195312 256 l 1 - 355.599609375 256 l 1 - 362.900390625 224 l 1 - 430.299804688 224 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" w o n hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" W o n hyphen S i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" W o n hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" W O N hyphen S I G N -EndChar - -StartChar: file -Encoding: 61787 61787 316 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -384 326.099609375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" f i l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" F i l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" F I L E -EndChar - -StartChar: file-alt -Encoding: 61788 61788 317 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -288 76 m 2 - 288 84 l 2 - 288 90.599609375 282.599609375 96 276 96 c 2 - 108 96 l 2 - 101.400390625 96 96 90.599609375 96 84 c 2 - 96 76 l 2 - 96 69.400390625 101.400390625 64 108 64 c 2 - 276 64 l 2 - 282.599609375 64 288 69.400390625 288 76 c 2 -288 140 m 2 - 288 148 l 2 - 288 154.599609375 282.599609375 160 276 160 c 2 - 108 160 l 2 - 101.400390625 160 96 154.599609375 96 148 c 2 - 96 140 l 2 - 96 133.400390625 101.400390625 128 108 128 c 2 - 276 128 l 2 - 282.599609375 128 288 133.400390625 288 140 c 2 -288 212 m 2 - 288 218.599609375 282.599609375 224 276 224 c 2 - 108 224 l 2 - 101.400390625 224 96 218.599609375 96 212 c 2 - 96 204 l 2 - 96 197.400390625 101.400390625 192 108 192 c 2 - 276 192 l 2 - 282.599609375 192 288 197.400390625 288 204 c 2 - 288 212 l 2 -384 326.099609375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" f i l e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" F i l e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" F I L E hyphen A L T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" F i l e hyphen A l t -EndChar - -StartChar: sort-alpha-down -Encoding: 61789 61789 318 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -176 96 m 2 - 190.219726562 96 197.349609375 78.740234375 187.330078125 68.6904296875 c 2 - 107.330078125 -27.3095703125 l 2 - 104.743164062 -29.89453125 99.6767578125 -31.9921875 96.01953125 -31.9921875 c 0 - 92.36328125 -31.9921875 87.296875 -29.89453125 84.7099609375 -27.3095703125 c 2 - 4.7099609375 68.6904296875 l 2 - -5.3603515625 78.759765625 1.8095703125 96 16 96 c 2 - 64 96 l 1 - 64 400 l 2 - 64 408.83203125 71.16796875 416 80 416 c 2 - 112 416 l 2 - 120.83203125 416 128 408.83203125 128 400 c 2 - 128 96 l 1 - 176 96 l 2 -416 160 m 2 - 424.83203125 160 432 152.83203125 432 144 c 2 - 432 126.370117188 l 1 - 432 126.3671875 l 2 - 432 118.434570312 427.188476562 107.719726562 421.259765625 102.450195312 c 2 - 360 32 l 1 - 416 32 l 2 - 424.83203125 32 432 24.83203125 432 16 c 2 - 432 -16 l 2 - 432 -24.83203125 424.83203125 -32 416 -32 c 2 - 288 -32 l 2 - 279.16796875 -32 272 -24.83203125 272 -16 c 2 - 272 1.6298828125 l 1 - 272 1.6328125 l 2 - 272 9.5654296875 276.811523438 20.2802734375 282.740234375 25.5498046875 c 2 - 344 96 l 1 - 288 96 l 2 - 279.16796875 96 272 103.16796875 272 112 c 2 - 272 144 l 2 - 272 152.83203125 279.16796875 160 288 160 c 2 - 416 160 l 2 -447.059570312 245.379882812 m 2 - 447.57421875 243.939453125 447.991210938 241.529296875 447.991210938 240 c 0 - 447.991210938 231.172851562 440.827148438 224.004882812 432 224 c 2 - 407.16015625 224 l 1 - 407.115234375 224 l 2 - 400.6875 224 393.866210938 228.963867188 391.889648438 235.080078125 c 2 - 387.48046875 248 l 1 - 316.48046875 248 l 1 - 312.059570312 235.080078125 l 2 - 310.083984375 228.963867188 303.262695312 224 296.834960938 224 c 2 - 296.830078125 224 l 1 - 272 224 l 2 - 263.172851562 224.004882812 256.008789062 231.172851562 256.008789062 240 c 0 - 256.008789062 241.529296875 256.42578125 243.939453125 256.940429688 245.379882812 c 2 - 316.209960938 405.379882812 l 2 - 318.302734375 411.2421875 325.053710938 416 331.278320312 416 c 2 - 331.280273438 416 l 1 - 372.719726562 416 l 1 - 372.721679688 416 l 2 - 378.946289062 416 385.697265625 411.2421875 387.790039062 405.379882812 c 2 - 447.059570312 245.379882812 l 2 -335.610351562 304 m 1 - 368.389648438 304 l 1 - 352 352 l 1 - 335.610351562 304 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" s o r t hyphen a l p h a hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" S o r t hyphen A l p h a hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" S o r t hyphen a l p h a hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" S O R T hyphen A L P H A hyphen D O W N -EndChar - -StartChar: sort-alpha-up -Encoding: 61790 61790 319 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -16 288 m 2 - 1.7802734375 288 -5.349609375 305.259765625 4.6904296875 315.309570312 c 2 - 84.6904296875 411.309570312 l 2 - 87.2763671875 413.89453125 92.34375 415.9921875 96 415.9921875 c 0 - 99.65625 415.9921875 104.723632812 413.89453125 107.309570312 411.309570312 c 2 - 187.309570312 315.309570312 l 2 - 197.379882812 305.240234375 190.209960938 288 176 288 c 2 - 128 288 l 1 - 128 -16 l 2 - 128 -24.83203125 120.83203125 -32 112 -32 c 2 - 80 -32 l 2 - 71.16796875 -32 64 -24.83203125 64 -16 c 2 - 64 288 l 1 - 16 288 l 2 -416 160 m 2 - 424.83203125 160 432 152.83203125 432 144 c 2 - 432 126.370117188 l 1 - 432 126.3671875 l 2 - 432 118.434570312 427.188476562 107.719726562 421.259765625 102.450195312 c 2 - 360 32 l 1 - 416 32 l 2 - 424.83203125 32 432 24.83203125 432 16 c 2 - 432 -16 l 2 - 432 -24.83203125 424.83203125 -32 416 -32 c 2 - 288 -32 l 2 - 279.16796875 -32 272 -24.83203125 272 -16 c 2 - 272 1.6298828125 l 1 - 272 1.6328125 l 2 - 272 9.5654296875 276.811523438 20.2802734375 282.740234375 25.5498046875 c 2 - 344 96 l 1 - 288 96 l 2 - 279.16796875 96 272 103.16796875 272 112 c 2 - 272 144 l 2 - 272 152.83203125 279.16796875 160 288 160 c 2 - 416 160 l 2 -447.059570312 245.379882812 m 2 - 447.57421875 243.939453125 447.991210938 241.529296875 447.991210938 240 c 0 - 447.991210938 231.172851562 440.827148438 224.004882812 432 224 c 2 - 407.16015625 224 l 1 - 407.115234375 224 l 2 - 400.6875 224 393.866210938 228.963867188 391.889648438 235.080078125 c 2 - 387.48046875 248 l 1 - 316.48046875 248 l 1 - 312.059570312 235.080078125 l 2 - 310.083984375 228.963867188 303.262695312 224 296.834960938 224 c 2 - 296.830078125 224 l 1 - 272 224 l 2 - 263.172851562 224.004882812 256.008789062 231.172851562 256.008789062 240 c 0 - 256.008789062 241.529296875 256.42578125 243.939453125 256.940429688 245.379882812 c 2 - 316.209960938 405.379882812 l 2 - 318.302734375 411.2421875 325.053710938 416 331.278320312 416 c 2 - 331.280273438 416 l 1 - 372.719726562 416 l 1 - 372.721679688 416 l 2 - 378.946289062 416 385.697265625 411.2421875 387.790039062 405.379882812 c 2 - 447.059570312 245.379882812 l 2 -335.610351562 304 m 1 - 368.389648438 304 l 1 - 352 352 l 1 - 335.610351562 304 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" s o r t hyphen a l p h a hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S o r t hyphen A l p h a hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S o r t hyphen a l p h a hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S O R T hyphen A L P H A hyphen U P -EndChar - -StartChar: sort-amount-down -Encoding: 61792 61792 320 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -304 32 m 2 - 312.83203125 32 320 24.83203125 320 16 c 2 - 320 -16 l 2 - 320 -24.83203125 312.83203125 -32 304 -32 c 2 - 240 -32 l 2 - 231.16796875 -32 224 -24.83203125 224 -16 c 2 - 224 16 l 2 - 224 24.83203125 231.16796875 32 240 32 c 2 - 304 32 l 2 -176 96 m 2 - 190.219726562 96 197.349609375 78.740234375 187.330078125 68.6904296875 c 2 - 107.330078125 -27.3095703125 l 2 - 104.743164062 -29.89453125 99.6767578125 -31.9921875 96.01953125 -31.9921875 c 0 - 92.36328125 -31.9921875 87.296875 -29.89453125 84.7099609375 -27.3095703125 c 2 - 4.7099609375 68.6904296875 l 2 - -5.3701171875 78.759765625 1.8095703125 96 16 96 c 2 - 64 96 l 1 - 64 400 l 2 - 64 408.83203125 71.16796875 416 80 416 c 2 - 112 416 l 2 - 120.83203125 416 128 408.83203125 128 400 c 2 - 128 96 l 1 - 176 96 l 2 -432 288 m 2 - 440.83203125 288 448 280.83203125 448 272 c 2 - 448 240 l 2 - 448 231.16796875 440.83203125 224 432 224 c 2 - 240 224 l 2 - 231.16796875 224 224 231.16796875 224 240 c 2 - 224 272 l 2 - 224 280.83203125 231.16796875 288 240 288 c 2 - 432 288 l 2 -368 160 m 2 - 376.83203125 160 384 152.83203125 384 144 c 2 - 384 112 l 2 - 384 103.16796875 376.83203125 96 368 96 c 2 - 240 96 l 2 - 231.16796875 96 224 103.16796875 224 112 c 2 - 224 144 l 2 - 224 152.83203125 231.16796875 160 240 160 c 2 - 368 160 l 2 -496 416 m 2 - 504.83203125 416 512 408.83203125 512 400 c 2 - 512 368 l 2 - 512 359.16796875 504.83203125 352 496 352 c 2 - 240 352 l 2 - 231.16796875 352 224 359.16796875 224 368 c 2 - 224 400 l 2 - 224 408.83203125 231.16796875 416 240 416 c 2 - 496 416 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" s o r t hyphen a m o u n t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" S o r t hyphen A m o u n t hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" S o r t hyphen a m o u n t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" S O R T hyphen A M O U N T hyphen D O W N -EndChar - -StartChar: sort-amount-up -Encoding: 61793 61793 321 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -304 32 m 2 - 312.83203125 32 320 24.83203125 320 16 c 2 - 320 -16 l 2 - 320 -24.83203125 312.83203125 -32 304 -32 c 2 - 240 -32 l 2 - 231.16796875 -32 224 -24.83203125 224 -16 c 2 - 224 16 l 2 - 224 24.83203125 231.16796875 32 240 32 c 2 - 304 32 l 2 -16 288 m 2 - 1.76953125 288 -5.349609375 305.259765625 4.6904296875 315.309570312 c 2 - 84.6904296875 411.309570312 l 2 - 87.2763671875 413.89453125 92.34375 415.9921875 96 415.9921875 c 0 - 99.65625 415.9921875 104.723632812 413.89453125 107.309570312 411.309570312 c 2 - 187.309570312 315.309570312 l 2 - 197.379882812 305.240234375 190.209960938 288 176 288 c 2 - 128 288 l 1 - 128 -16 l 2 - 128 -24.83203125 120.83203125 -32 112 -32 c 2 - 80 -32 l 2 - 71.16796875 -32 64 -24.83203125 64 -16 c 2 - 64 288 l 1 - 16 288 l 2 -432 288 m 2 - 440.83203125 288 448 280.83203125 448 272 c 2 - 448 240 l 2 - 448 231.16796875 440.83203125 224 432 224 c 2 - 240 224 l 2 - 231.16796875 224 224 231.16796875 224 240 c 2 - 224 272 l 2 - 224 280.83203125 231.16796875 288 240 288 c 2 - 432 288 l 2 -368 160 m 2 - 376.83203125 160 384 152.83203125 384 144 c 2 - 384 112 l 2 - 384 103.16796875 376.83203125 96 368 96 c 2 - 240 96 l 2 - 231.16796875 96 224 103.16796875 224 112 c 2 - 224 144 l 2 - 224 152.83203125 231.16796875 160 240 160 c 2 - 368 160 l 2 -496 416 m 2 - 504.83203125 416 512 408.83203125 512 400 c 2 - 512 368 l 2 - 512 359.16796875 504.83203125 352 496 352 c 2 - 240 352 l 2 - 231.16796875 352 224 359.16796875 224 368 c 2 - 224 400 l 2 - 224 408.83203125 231.16796875 416 240 416 c 2 - 496 416 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" s o r t hyphen a m o u n t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" S o r t hyphen A m o u n t hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" S o r t hyphen a m o u n t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" S O R T hyphen A M O U N T hyphen U P -EndChar - -StartChar: sort-numeric-down -Encoding: 61794 61794 322 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -304 352 m 2 - 295.17578125 352.0078125 288.013671875 359.17578125 288.013671875 368 c 0 - 288.013671875 370.08984375 288.7734375 373.301757812 289.709960938 375.169921875 c 2 - 305.709960938 407.169921875 l 2 - 308.151367188 412.040039062 314.552734375 415.995117188 320 416 c 2 - 368 416 l 2 - 376.83203125 416 384 408.83203125 384 400 c 2 - 384 288 l 1 - 400 288 l 2 - 408.83203125 288 416 280.83203125 416 272 c 2 - 416 240 l 2 - 416 231.16796875 408.83203125 224 400 224 c 2 - 304 224 l 2 - 295.16796875 224 288 231.16796875 288 240 c 2 - 288 272 l 2 - 288 280.83203125 295.16796875 288 304 288 c 2 - 320 288 l 1 - 320 352 l 1 - 304 352 l 2 -330.150390625 189.08984375 m 0 - 383.600585938 203.33984375 432 163.209960938 432.01953125 112 c 2 - 432.01953125 101.23046875 l 2 - 432.01953125 30.83984375 403.76953125 -6.009765625 345.76953125 -30.76953125 c 0 - 337.400390625 -34.349609375 327.740234375 -29.490234375 324.870117188 -20.8603515625 c 2 - 314.969726562 -0.8603515625 l 2 - 312.349609375 7.009765625 315.580078125 16.080078125 323.150390625 19.48046875 c 0 - 329.4296875 22.1943359375 338.770507812 27.978515625 344 32.3896484375 c 1 - 296.360351562 37.150390625 260.900390625 83.8701171875 275.150390625 134.919921875 c 0 - 281.958007812 158.37109375 306.59765625 182.639648438 330.150390625 189.08984375 c 0 -352 92 m 0 - 363.040039062 92 372 100.959960938 372 112 c 0 - 372 123.040039062 363.040039062 132 352 132 c 0 - 340.959960938 132 332 123.040039062 332 112 c 0 - 332 100.959960938 340.959960938 92 352 92 c 0 -176 96 m 2 - 190.219726562 96 197.349609375 78.740234375 187.330078125 68.6904296875 c 2 - 107.330078125 -27.3095703125 l 2 - 104.743164062 -29.89453125 99.6767578125 -31.9921875 96.01953125 -31.9921875 c 0 - 92.36328125 -31.9921875 87.296875 -29.89453125 84.7099609375 -27.3095703125 c 2 - 4.7099609375 68.6904296875 l 2 - -5.3603515625 78.759765625 1.8095703125 96 16 96 c 2 - 64 96 l 1 - 64 400 l 2 - 64 408.83203125 71.16796875 416 80 416 c 2 - 112 416 l 2 - 120.83203125 416 128 408.83203125 128 400 c 2 - 128 96 l 1 - 176 96 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" s o r t hyphen n u m e r i c hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" S o r t hyphen N u m e r i c hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" S o r t hyphen n u m e r i c hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" S O R T hyphen N U M E R I C hyphen D O W N -EndChar - -StartChar: sort-numeric-up -Encoding: 61795 61795 323 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -330.169921875 189.08984375 m 0 - 383.620117188 203.33984375 432 163.209960938 432.01953125 112 c 2 - 432.01953125 101.23046875 l 2 - 432.01953125 30.83984375 403.76953125 -6.009765625 345.76953125 -30.76953125 c 0 - 337.400390625 -34.349609375 327.740234375 -29.490234375 324.870117188 -20.8603515625 c 2 - 314.969726562 -0.8603515625 l 2 - 312.349609375 7.009765625 315.580078125 16.080078125 323.150390625 19.48046875 c 0 - 329.4296875 22.1943359375 338.770507812 27.978515625 344 32.3896484375 c 1 - 296.360351562 37.150390625 260.900390625 83.8701171875 275.169921875 134.919921875 c 0 - 281.977539062 158.37109375 306.618164062 182.639648438 330.169921875 189.08984375 c 0 -352 92 m 0 - 363.040039062 92 372 100.959960938 372 112 c 0 - 372 123.040039062 363.040039062 132 352 132 c 0 - 340.959960938 132 332 123.040039062 332 112 c 0 - 332 100.959960938 340.959960938 92 352 92 c 0 -304 352 m 2 - 295.17578125 352.0078125 288.013671875 359.17578125 288.013671875 368 c 0 - 288.013671875 370.08984375 288.7734375 373.301757812 289.709960938 375.169921875 c 2 - 305.709960938 407.169921875 l 2 - 308.151367188 412.040039062 314.552734375 415.995117188 320 416 c 2 - 368 416 l 2 - 376.83203125 416 384 408.83203125 384 400 c 2 - 384 288 l 1 - 400 288 l 2 - 408.83203125 288 416 280.83203125 416 272 c 2 - 416 240 l 2 - 416 231.16796875 408.83203125 224 400 224 c 2 - 304 224 l 2 - 295.16796875 224 288 231.16796875 288 240 c 2 - 288 272 l 2 - 288 280.83203125 295.16796875 288 304 288 c 2 - 320 288 l 1 - 320 352 l 1 - 304 352 l 2 -107.309570312 411.309570312 m 2 - 187.309570312 315.309570312 l 2 - 197.379882812 305.240234375 190.209960938 288 176 288 c 2 - 128 288 l 1 - 128 -16 l 2 - 128 -24.83203125 120.83203125 -32 112 -32 c 2 - 80 -32 l 2 - 71.16796875 -32 64 -24.83203125 64 -16 c 2 - 64 288 l 1 - 16 288 l 2 - 1.7802734375 288 -5.349609375 305.259765625 4.6904296875 315.309570312 c 2 - 84.6904296875 411.309570312 l 2 - 87.2763671875 413.89453125 92.34375 415.9921875 96 415.9921875 c 0 - 99.65625 415.9921875 104.723632812 413.89453125 107.309570312 411.309570312 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" s o r t hyphen n u m e r i c hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" S o r t hyphen N u m e r i c hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" S o r t hyphen n u m e r i c hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" S O R T hyphen N U M E R I C hyphen U P -EndChar - -StartChar: thumbs-up -Encoding: 61796 61796 324 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -104 224 m 2 - 117.254882812 224 128 213.254882812 128 200 c 2 - 128 -40 l 2 - 128 -53.2548828125 117.254882812 -64 104 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 200 l 2 - 0 213.254882812 10.7451171875 224 24 224 c 2 - 104 224 l 2 -64 -24 m 0 - 77.2548828125 -24 88 -13.2548828125 88 0 c 0 - 88 13.2548828125 77.2548828125 24 64 24 c 0 - 50.7451171875 24 40 13.2548828125 40 0 c 0 - 40 -13.2548828125 50.7451171875 -24 64 -24 c 0 -384 366.547851562 m 0 - 384 324.131835938 358.030273438 300.33984375 350.72265625 272 c 1 - 452.446289062 272 l 2 - 485.842773438 272 511.842773438 244.25390625 511.999023438 213.90234375 c 0 - 512.083007812 195.963867188 504.453125 176.653320312 492.559570312 164.705078125 c 2 - 492.450195312 164.594726562 l 1 - 502.286132812 141.2578125 500.686523438 108.557617188 483.141601562 85.1259765625 c 1 - 491.823242188 59.2314453125 483.073242188 27.421875 466.759765625 10.369140625 c 1 - 471.057617188 -7.228515625 469.00390625 -22.2060546875 460.612304688 -34.2626953125 c 0 - 440.202148438 -63.5869140625 389.616210938 -64 346.838867188 -64 c 2 - 343.994140625 -63.9990234375 l 2 - 295.70703125 -63.982421875 256.188476562 -46.4013671875 224.43359375 -32.2744140625 c 0 - 208.4765625 -25.1748046875 187.61328125 -16.38671875 171.783203125 -16.095703125 c 0 - 165.243164062 -15.9755859375 160 -10.638671875 160 -4.09765625 c 2 - 160 209.671875 l 2 - 160 212.872070312 161.282226562 215.943359375 163.557617188 218.193359375 c 0 - 203.171875 257.336914062 220.206054688 298.780273438 252.674804688 331.303710938 c 0 - 267.478515625 346.135742188 272.86328125 368.540039062 278.068359375 390.206054688 c 0 - 282.514648438 408.70703125 291.817382812 448 312 448 c 0 - 336 448 384 440 384 366.547851562 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" t h u m b s hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" T h u m b s hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" T h u m b s hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" T H U M B S hyphen U P -EndChar - -StartChar: thumbs-down -Encoding: 61797 61797 325 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 392 m 2 - 0 405.254882812 10.7451171875 416 24 416 c 2 - 104 416 l 2 - 117.254882812 416 128 405.254882812 128 392 c 2 - 128 152 l 2 - 128 138.745117188 117.254882812 128 104 128 c 2 - 24 128 l 2 - 10.7451171875 128 0 138.745117188 0 152 c 2 - 0 392 l 2 -40 192 m 0 - 40 178.745117188 50.7451171875 168 64 168 c 0 - 77.2548828125 168 88 178.745117188 88 192 c 0 - 88 205.254882812 77.2548828125 216 64 216 c 0 - 50.7451171875 216 40 205.254882812 40 192 c 0 -312 -64 m 0 - 291.817382812 -64 282.514648438 -24.70703125 278.069335938 -6.205078125 c 0 - 272.86328125 15.4609375 267.48046875 37.865234375 252.67578125 52.697265625 c 0 - 220.20703125 85.220703125 203.172851562 126.6640625 163.55859375 165.807617188 c 0 - 161.594726562 167.749023438 160.000976562 171.56640625 160.000976562 174.328125 c 2 - 160.000976562 174.329101562 l 1 - 160.000976562 388.098632812 l 2 - 160.000976562 394.639648438 165.244140625 399.9765625 171.784179688 400.096679688 c 0 - 187.615234375 400.38671875 208.477539062 409.17578125 224.434570312 416.275390625 c 0 - 256.189453125 430.40234375 295.708984375 447.983398438 343.995117188 448 c 2 - 346.838867188 448 l 2 - 389.616210938 448 440.202148438 447.586914062 460.61328125 418.262695312 c 0 - 469.004882812 406.206054688 471.05859375 391.228515625 466.760742188 373.630859375 c 1 - 483.073242188 356.578125 491.82421875 324.767578125 483.142578125 298.874023438 c 1 - 500.686523438 275.442382812 502.286132812 242.7421875 492.451171875 219.405273438 c 1 - 492.560546875 219.294921875 l 2 - 504.454101562 207.345703125 512.083984375 188.036132812 512 170.09765625 c 0 - 511.84375 139.74609375 485.842773438 112 452.447265625 112 c 2 - 350.72265625 112 l 1 - 358.030273438 83.66015625 384 59.8681640625 384 17.4521484375 c 0 - 384 -56 336 -64 312 -64 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" t h u m b s hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" T h u m b s hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" T h u m b s hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" T H U M B S hyphen D O W N -EndChar - -StartChar: female -Encoding: 61826 61826 326 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128 448 m 0 - 163.345703125 448 192 419.345703125 192 384 c 0 - 192 348.654296875 163.345703125 320 128 320 c 0 - 92.654296875 320 64 348.654296875 64 384 c 0 - 64 419.345703125 92.654296875 448 128 448 c 0 -247.283203125 93.8212890625 m 2 - 251.071289062 78.6708984375 239.590820312 64 224 64 c 2 - 168 64 l 1 - 168 -40 l 2 - 168 -53.2548828125 157.254882812 -64 144 -64 c 2 - 112 -64 l 2 - 98.7451171875 -64 88 -53.2548828125 88 -40 c 2 - 88 64 l 1 - 32 64 l 2 - 16.3828125 64 4.9345703125 78.6953125 8.716796875 93.8212890625 c 2 - 56.716796875 285.821289062 l 2 - 59.2255859375 295.85546875 69.65625 304 80 304 c 2 - 91.3603515625 304 l 1 - 115.049804688 293.106445312 141.928710938 293.556640625 164.639648438 304 c 1 - 176 304 l 2 - 186.34375 304 196.774414062 295.85546875 199.283203125 285.821289062 c 2 - 247.283203125 93.8212890625 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" f e m a l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" F e m a l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" F E M A L E -EndChar - -StartChar: male -Encoding: 61827 61827 327 -Width: 192 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 448 m 0 - 131.345703125 448 160 419.345703125 160 384 c 0 - 160 348.654296875 131.345703125 320 96 320 c 0 - 60.654296875 320 32 348.654296875 32 384 c 0 - 32 419.345703125 60.654296875 448 96 448 c 0 -144 304 m 2 - 170.509765625 304 192 282.509765625 192 256 c 2 - 192 120 l 2 - 192 106.745117188 181.254882812 96 168 96 c 2 - 152 96 l 1 - 152 -40 l 2 - 152 -53.2548828125 141.254882812 -64 128 -64 c 2 - 64 -64 l 2 - 50.7451171875 -64 40 -53.2548828125 40 -40 c 2 - 40 96 l 1 - 24 96 l 2 - 10.7451171875 96 0 106.745117188 0 120 c 2 - 0 256 l 2 - 0 282.509765625 21.490234375 304 48 304 c 2 - 59.3603515625 304 l 1 - 83.0498046875 293.106445312 109.928710938 293.556640625 132.639648438 304 c 1 - 144 304 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" m a l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" M a l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" M A L E -EndChar - -StartChar: sun -Encoding: 61829 61829 328 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 288 m 0 - 308.900390625 288 352 244.900390625 352 192 c 0 - 352 139.099609375 308.900390625 96 256 96 c 0 - 203.099609375 96 160 139.099609375 160 192 c 0 - 160 244.900390625 203.099609375 288 256 288 c 0 -502.400390625 207.5 m 2 - 515.200195312 201.099609375 515.200195312 182.900390625 502.200195312 176.400390625 c 2 - 407.5 129.099609375 l 1 - 441 28.7001953125 l 2 - 445.599609375 15.2001953125 432.700195312 2.2998046875 419.099609375 6.7998046875 c 2 - 318.700195312 40.2998046875 l 1 - 271.400390625 -54.400390625 l 2 - 265 -67.2001953125 246.799804688 -67.2001953125 240.400390625 -54.400390625 c 2 - 193.099609375 40.2998046875 l 1 - 92.7001953125 6.7998046875 l 2 - 79.2001953125 2.2001953125 66.2998046875 15.099609375 70.7998046875 28.7001953125 c 2 - 104.299804688 129.200195312 l 1 - 9.599609375 176.5 l 2 - -3.2001953125 182.900390625 -3.2001953125 201.099609375 9.599609375 207.5 c 2 - 104.299804688 254.900390625 l 1 - 70.7998046875 355.299804688 l 2 - 66.2001953125 368.799804688 79.099609375 381.700195312 92.7001953125 377.200195312 c 2 - 193.200195312 343.700195312 l 1 - 240.5 438.400390625 l 2 - 246.900390625 451.200195312 265.099609375 451.200195312 271.5 438.400390625 c 2 - 318.900390625 343.599609375 l 1 - 419.299804688 377.099609375 l 2 - 432.799804688 381.700195312 445.700195312 368.799804688 441.200195312 355.200195312 c 2 - 407.700195312 254.799804688 l 1 - 502.400390625 207.5 l 2 -346.5 101.5 m 0 - 396.400390625 151.400390625 396.400390625 232.599609375 346.5 282.5 c 0 - 296.599609375 332.400390625 215.400390625 332.400390625 165.5 282.5 c 0 - 115.599609375 232.599609375 115.599609375 151.400390625 165.5 101.5 c 0 - 215.400390625 51.599609375 296.599609375 51.599609375 346.5 101.5 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" s u n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" S u n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" S U N -EndChar - -StartChar: moon -Encoding: 61830 61830 329 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -283.2109375 -64 m 0 - 141.721679688 -64 27.2109375 50.69140625 27.2109375 192 c 0 - 27.2109375 333.489257812 141.90234375 448 283.2109375 448 c 0 - 296.228515625 447.998046875 317.18359375 446.081054688 329.986328125 443.719726562 c 0 - 340.9921875 441.686523438 343.427734375 427.001953125 333.7421875 421.490234375 c 0 - 270.90625 385.731445312 232.244140625 319.318359375 232.244140625 247.095703125 c 0 - 232.244140625 121.717773438 346.302734375 26.48828125 470.505859375 50.1416015625 c 0 - 481.428710938 52.2216796875 489.135742188 39.5 482.068359375 30.7919921875 c 0 - 434.290039062 -28.0751953125 362.172851562 -64 283.2109375 -64 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" m o o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" M o o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" M O O N -EndChar - -StartChar: archive -Encoding: 61831 61831 330 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 0 m 2 - 32 288 l 1 - 480 288 l 1 - 480 0 l 2 - 480 -17.7001953125 465.700195312 -32 448 -32 c 2 - 64 -32 l 2 - 46.2998046875 -32 32 -17.7001953125 32 0 c 2 -192 212 m 2 - 192 204 l 2 - 192 197.400390625 197.400390625 192 204 192 c 2 - 308 192 l 2 - 314.599609375 192 320 197.400390625 320 204 c 2 - 320 212 l 2 - 320 218.599609375 314.599609375 224 308 224 c 2 - 204 224 l 2 - 197.400390625 224 192 218.599609375 192 212 c 2 -480 416 m 2 - 497.700195312 416 512 401.700195312 512 384 c 2 - 512 336 l 2 - 512 327.200195312 504.799804688 320 496 320 c 2 - 16 320 l 2 - 7.2001953125 320 0 327.200195312 0 336 c 2 - 0 384 l 2 - 0 401.700195312 14.2998046875 416 32 416 c 2 - 480 416 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" a r c h i v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" A R C H I V E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" A r c h i v e -EndChar - -StartChar: bug -Encoding: 61832 61832 331 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -511.98828125 159.099609375 m 0 - 511.509765625 141.669921875 496.771484375 128 479.334960938 128 c 2 - 424 128 l 1 - 424 112 l 2 - 424 90.1357421875 419.118164062 69.416015625 410.400390625 50.85546875 c 1 - 470.627929688 -9.373046875 l 2 - 483.124023438 -21.8701171875 483.124023438 -42.130859375 470.627929688 -54.6279296875 c 0 - 458.129882812 -67.125 437.869140625 -67.1240234375 425.372070312 -54.6279296875 c 2 - 370.635742188 0.1083984375 l 1 - 345.885742188 -19.96484375 314.350585938 -32 280 -32 c 1 - 280 212 l 2 - 280 218.626953125 274.626953125 224 268 224 c 2 - 244 224 l 2 - 237.373046875 224 232 218.626953125 232 212 c 2 - 232 -32 l 1 - 197.649414062 -32 166.114257812 -19.96484375 141.364257812 0.1083984375 c 1 - 86.6279296875 -54.6279296875 l 2 - 74.1298828125 -67.125 53.869140625 -67.1240234375 41.3720703125 -54.6279296875 c 0 - 28.8759765625 -42.130859375 28.8759765625 -21.8701171875 41.3720703125 -9.373046875 c 2 - 101.599609375 50.85546875 l 1 - 92.8818359375 69.416015625 88 90.1357421875 88 112 c 2 - 88 128 l 1 - 32.666015625 128 l 2 - 15.23046875 128 0.4912109375 141.669921875 0.0126953125 159.099609375 c 0 - -0.484375 177.18359375 14.0283203125 192 32 192 c 2 - 88 192 l 1 - 88 250.745117188 l 1 - 41.3720703125 297.373046875 l 2 - 28.8759765625 309.870117188 28.8759765625 330.130859375 41.3720703125 342.627929688 c 0 - 53.8701171875 355.125 74.1298828125 355.125 86.6279296875 342.627929688 c 2 - 141.254882812 288 l 1 - 370.744140625 288 l 1 - 425.37109375 342.626953125 l 2 - 437.869140625 355.124023438 458.12890625 355.124023438 470.626953125 342.626953125 c 0 - 483.123046875 330.129882812 483.123046875 309.869140625 470.626953125 297.372070312 c 2 - 424 250.745117188 l 1 - 424 192 l 1 - 480 192 l 2 - 497.971679688 192 512.484375 177.18359375 511.98828125 159.099609375 c 0 -257 448 m 0 - 318.856445312 448 369 397.856445312 369 336 c 1 - 145 336 l 1 - 145 397.856445312 195.143554688 448 257 448 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" b u g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" B u g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" B U G -EndChar - -StartChar: caret-square-left -Encoding: 61841 61841 332 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 -32 m 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 400 416 l 2 - 426.509765625 416 448 394.509765625 448 368 c 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 -259.514648438 323.514648438 m 2 - 136.485351562 200.485351562 l 2 - 131.798828125 195.798828125 131.798828125 188.201171875 136.485351562 183.513671875 c 2 - 259.513671875 60.4853515625 l 2 - 267.07421875 52.9248046875 279.999023438 58.279296875 279.999023438 68.9697265625 c 2 - 279.999023438 315.029296875 l 2 - 280 325.719726562 267.07421875 331.07421875 259.514648438 323.514648438 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" c a r e t hyphen s q u a r e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" C a r e t hyphen S q u a r e hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" C a r e t hyphen s q u a r e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" C A R E T hyphen S Q U A R E hyphen L E F T -EndChar - -StartChar: dot-circle -Encoding: 61842 61842 333 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 392.966796875 440 504 328.966796875 504 192 c 0 - 504 55.033203125 392.966796875 -56 256 -56 c 0 - 119.033203125 -56 8 55.033203125 8 192 c 0 - 8 328.966796875 119.033203125 440 256 440 c 0 -336 192 m 0 - 336 236.112304688 300.112304688 272 256 272 c 0 - 211.887695312 272 176 236.112304688 176 192 c 0 - 176 147.887695312 211.887695312 112 256 112 c 0 - 300.112304688 112 336 147.887695312 336 192 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" d o t hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" D o t hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" D O T hyphen C I R C L E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" D o t hyphen C i r c l e -EndChar - -StartChar: wheelchair -Encoding: 61843 61843 334 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496.100585938 62.3310546875 m 2 - 510.328125 33.66796875 l 2 - 514.256835938 25.7529296875 511.025390625 16.15234375 503.110351562 12.22265625 c 2 - 437.64453125 -20.6630859375 l 2 - 421.595703125 -28.6298828125 402.088867188 -21.857421875 394.456054688 -5.6083984375 c 2 - 331.678710938 128 l 1 - 192 128 l 2 - 176.075195312 128 162.57421875 139.709960938 160.321289062 155.474609375 c 0 - 126.432617188 392.692382812 128.379882812 377.956054688 128 384 c 0 - 128 420.358398438 158.318359375 449.634765625 195.051757812 447.928710938 c 0 - 228.323242188 446.383789062 255.099609375 419.024414062 255.9765625 385.727539062 c 0 - 256.844726562 352.794921875 232.825195312 325.3046875 201.369140625 320.689453125 c 1 - 206.0390625 287.999023438 l 1 - 336 287.999023438 l 2 - 344.836914062 287.999023438 352 280.8359375 352 271.999023438 c 2 - 352 239.999023438 l 2 - 352 231.162109375 344.836914062 223.999023438 336 223.999023438 c 2 - 215.181640625 223.999023438 l 1 - 219.75390625 191.999023438 l 1 - 352 191.999023438 l 2 - 363.216796875 191.999023438 376.192382812 183.758789062 380.961914062 173.607421875 c 2 - 438.4765625 51.2001953125 l 1 - 474.655273438 69.548828125 l 2 - 482.5703125 73.4775390625 492.171875 70.24609375 496.100585938 62.3310546875 c 2 -311.358398438 96 m 1 - 337.110351562 41.1923828125 l 1 - 309.805664062 -20.6923828125 247.870117188 -64 176 -64 c 0 - 78.953125 -64 0 14.953125 0 112 c 0 - 0 186.037109375 45.9560546875 249.536132812 110.8359375 275.489257812 c 1 - 113.48046875 257.015625 116.612304688 235.12109375 120.32421875 209.15625 c 1 - 86.6943359375 189.80859375 64 153.504882812 64 112 c 0 - 64 50.2431640625 114.243164062 0 176 0 c 0 - 232.32421875 0 279.064453125 41.7958984375 286.8515625 96 c 1 - 311.358398438 96 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" w h e e l c h a i r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" W H E E L C H A I R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" W h e e l c h a i r -EndChar - -StartChar: lira-sign -Encoding: 61845 61845 335 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -371.994140625 192 m 2 - 378.780273438 192 384.251953125 186.374023438 383.991210938 179.591796875 c 0 - 378.837890625 45.833984375 289.673828125 -32 155.583007812 -32 c 2 - 76 -32 l 2 - 69.373046875 -32 64 -26.626953125 64 -20 c 2 - 64 173.442382812 l 1 - 14.6025390625 162.46484375 l 2 - 7.109375 160.798828125 0 166.501953125 0 174.178710938 c 2 - 0 215.155273438 l 2 - 0 220.46875 4.2099609375 225.716796875 9.3974609375 226.869140625 c 2 - 64 239.002929688 l 1 - 64 269.442382812 l 1 - 14.6025390625 258.46484375 l 2 - 7.109375 256.798828125 0 262.501953125 0 270.178710938 c 2 - 0 311.155273438 l 2 - 0 316.46875 4.2099609375 321.716796875 9.3974609375 322.869140625 c 2 - 64 335.002929688 l 1 - 64 404 l 2 - 64 410.626953125 69.373046875 416 76 416 c 2 - 132 416 l 2 - 138.626953125 416 144 410.626953125 144 404 c 2 - 144 352.78125 l 1 - 273.397460938 381.53515625 l 2 - 280.890625 383.201171875 288 377.498046875 288 369.821289062 c 2 - 288 328.845703125 l 2 - 288 323.532226562 283.790039062 318.284179688 278.602539062 317.131835938 c 2 - 144 287.219726562 l 1 - 144 256.78125 l 1 - 273.397460938 285.53515625 l 2 - 280.890625 287.201171875 288 281.498046875 288 273.821289062 c 2 - 288 232.844726562 l 2 - 288 227.53125 283.790039062 222.283203125 278.602539062 221.130859375 c 2 - 144 191.21875 l 1 - 144 32 l 1 - 230.178710938 32 312 80 312 180.75390625 c 0 - 312 187.087890625 317.639648438 192 323.974609375 192 c 2 - 371.994140625 192 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" l i r a hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" L i r a hyphen S i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" L i r a hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" L I R A hyphen S I G N -EndChar - -StartChar: space-shuttle -Encoding: 61847 61847 336 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -592.603515625 239.755859375 m 0 - 622.282226562 225.844726562 640 207.9921875 640 192 c 0 - 640 176.0078125 622.282226562 158.155273438 592.603515625 144.244140625 c 0 - 559.735351562 128.8359375 515.77734375 120 472 120 c 2 - 186.326171875 120 l 1 - 181.374023438 113.4453125 175.741210938 108.022460938 169.606445312 104 c 1 - 376 104 l 1 - 229.157226562 73.7470703125 219.403320312 -32 96.0029296875 -32 c 2 - 96 -32 l 1 - 96 96 l 1 - 80 96 l 1 - 80 -32 l 1 - 53.490234375 -32 32 -3.345703125 32 32 c 2 - 32 96 l 1 - 8.8193359375 96 0 106.016601562 0 120 c 2 - 0 160 l 2 - 0 173.967773438 8.802734375 184 32 184 c 1 - 32 200 l 1 - 8.8193359375 200 0 210.016601562 0 224 c 2 - 0 264 l 2 - 0 277.967773438 8.802734375 288 32 288 c 1 - 32 352 l 2 - 32 387.345703125 53.490234375 416 80 416 c 1 - 80 288 l 1 - 96 288 l 1 - 96 416 l 1 - 96.0029296875 416 l 2 - 219.403320312 416 229.157226562 310.252929688 376 280 c 1 - 169.607421875 280 l 1 - 175.7421875 275.977539062 181.375 270.5546875 186.327148438 264 c 1 - 472 264 l 2 - 515.77734375 264 559.735351562 255.1640625 592.603515625 239.755859375 c 0 -488 152 m 0 - 519.942382812 152 519.909179688 232 488 232 c 0 - 483.583984375 232 480 228.416015625 480 224 c 2 - 480 160 l 2 - 480 155.583984375 483.583984375 152 488 152 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" s p a c e hyphen s h u t t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" S p a c e hyphen S h u t t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" S p a c e hyphen s h u t t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" S P A C E hyphen S H U T T L E -EndChar - -StartChar: envelope-square -Encoding: 61849 61849 337 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.509765625 416 448 394.509765625 448 368 c 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 400 416 l 2 -178.1171875 185.896484375 m 0 - 188.6328125 178.227539062 209.497070312 159.783203125 224 160.000976562 c 0 - 238.491210938 159.775390625 259.3828125 178.240234375 269.8828125 185.89453125 c 0 - 360.56640625 251.708984375 359.62890625 251.864257812 384 270.833007812 c 1 - 384 296 l 2 - 384 309.254882812 373.254882812 320 360 320 c 2 - 88 320 l 2 - 74.7451171875 320 64 309.254882812 64 296 c 2 - 64 270.833007812 l 1 - 88.3525390625 251.87890625 87.4287109375 251.712890625 178.1171875 185.896484375 c 0 -384 230.224609375 m 1 - 370.041992188 219.431640625 350.674804688 204.991210938 288.716796875 160.026367188 c 0 - 275.034179688 150.041992188 250.883789062 127.8671875 223.997070312 128.000976562 c 0 - 197.278320312 127.866210938 173.46484375 149.669921875 159.302734375 160.010742188 c 0 - 97.3291015625 204.989257812 77.9580078125 219.430664062 64 230.224609375 c 1 - 64 88 l 2 - 64 74.7451171875 74.7451171875 64 88 64 c 2 - 360 64 l 2 - 373.254882812 64 384 74.7451171875 384 88 c 2 - 384 230.224609375 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" e n v e l o p e hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" E n v e l o p e hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" E n v e l o p e hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" E N V E L O P E hyphen S Q U A R E -EndChar - -StartChar: university -Encoding: 61852 61852 338 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 320 m 2 - 496 304 l 2 - 496 299.583984375 492.416015625 296 488 296 c 2 - 464 296 l 1 - 464 284 l 2 - 464 277.373046875 458.626953125 272 452 272 c 2 - 60 272 l 2 - 53.373046875 272 48 277.373046875 48 284 c 2 - 48 296 l 1 - 24 296 l 2 - 19.583984375 296 16 299.583984375 16 304 c 2 - 16 320 l 2 - 16 322.952148438 18.2138671875 326.263671875 20.94140625 327.391601562 c 2 - 252.94140625 415.391601562 l 2 - 253.751953125 415.727539062 255.122070312 416 256 416 c 0 - 256.877929688 416 258.248046875 415.727539062 259.05859375 415.391601562 c 2 - 491.05859375 327.391601562 l 2 - 493.786132812 326.263671875 496 322.952148438 496 320 c 2 -472 16 m 2 - 485.254882812 16 496 5.2548828125 496 -8 c 2 - 496 -24 l 2 - 496 -28.416015625 492.416015625 -32 488 -32 c 2 - 24 -32 l 2 - 19.583984375 -32 16 -28.416015625 16 -24 c 2 - 16 -8 l 2 - 16 5.2548828125 26.7451171875 16 40 16 c 2 - 472 16 l 2 -96 256 m 1 - 160 256 l 1 - 160 64 l 1 - 224 64 l 1 - 224 256 l 1 - 288 256 l 1 - 288 64 l 1 - 352 64 l 1 - 352 256 l 1 - 416 256 l 1 - 416 64 l 1 - 452 64 l 2 - 458.626953125 64 464 58.626953125 464 52 c 2 - 464 32 l 1 - 48 32 l 1 - 48 52 l 2 - 48 58.626953125 53.373046875 64 60 64 c 2 - 96 64 l 1 - 96 256 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" u n i v e r s i t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U n i v e r s i t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U N I V E R S I T Y -EndChar - -StartChar: graduation-cap -Encoding: 61853 61853 339 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -622.33984375 294.799804688 m 2 - 645.889648438 287.559570312 645.889648438 256.440429688 622.33984375 249.200195312 c 2 - 343.389648438 163.5 l 2 - 323.040039062 157.25 305.66015625 160.719726562 296.599609375 163.5 c 2 - 101.030273438 223.58984375 l 1 - 88.7802734375 215.169921875 81.099609375 201.889648438 80.33984375 186.870117188 c 1 - 89.5302734375 181.25 96 171.5703125 96 160 c 0 - 96 149.219726562 90.3203125 140.150390625 82.1396484375 134.349609375 c 1 - 107.669921875 19.4697265625 l 2 - 109.889648438 9.48046875 102.290039062 0 92.0498046875 0 c 2 - 35.9404296875 0 l 2 - 25.7099609375 0 18.1103515625 9.48046875 20.330078125 19.4697265625 c 2 - 45.8603515625 134.349609375 l 1 - 37.6796875 140.150390625 32 149.219726562 32 160 c 0 - 32 171.889648438 38.7802734375 181.849609375 48.41015625 187.370117188 c 1 - 49.0595703125 204.990234375 55.6201171875 221.080078125 66.2900390625 234.26953125 c 1 - 17.66015625 249.209960938 l 2 - -5.8798828125 256.440429688 -5.8798828125 287.5703125 17.66015625 294.799804688 c 2 - 296.610351562 380.5 l 2 - 311.799804688 385.169921875 328.200195312 385.169921875 343.400390625 380.5 c 2 - 622.33984375 294.799804688 l 2 -352.790039062 132.91015625 m 2 - 497.8203125 177.469726562 l 1 - 512 64 l 1 - 512 28.650390625 426.040039062 0 320 0 c 0 - 213.959960938 0 128 28.650390625 128 64 c 1 - 142.1796875 177.459960938 l 1 - 287.200195312 132.91015625 l 2 - 299.950195312 128.990234375 324.259765625 124.150390625 352.790039062 132.91015625 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" g r a d u a t i o n hyphen c a p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" G r a d u a t i o n hyphen C a p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" G r a d u a t i o n hyphen c a p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" G R A D U A T I O N hyphen C A P -EndChar - -StartChar: language -Encoding: 61867 61867 340 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -152.099609375 211.799804688 m 2 - 163 174.299804688 l 1 - 124.900390625 174.299804688 l 1 - 136 211.799804688 l 2 - 139.5 223.900390625 143.799804688 245 143.799804688 245 c 1 - 144.299804688 245 l 1 - 144.299804688 245 148.599609375 223.900390625 152.099609375 211.799804688 c 2 -616 352 m 2 - 629.299804688 352 640 341.299804688 640 328 c 2 - 640 56 l 2 - 640 42.7001953125 629.299804688 32 616 32 c 2 - 336 32 l 1 - 336 352 l 1 - 616 352 l 2 -592 232 m 2 - 592 248 l 2 - 592 254.599609375 586.599609375 260 580 260 c 2 - 516 260 l 1 - 516 276 l 2 - 516 282.599609375 510.599609375 288 504 288 c 2 - 488 288 l 2 - 481.400390625 288 476 282.599609375 476 276 c 2 - 476 260 l 1 - 412 260 l 2 - 405.400390625 260 400 254.599609375 400 248 c 2 - 400 232 l 2 - 400 225.400390625 405.400390625 220 412 220 c 2 - 526.299804688 220 l 1 - 520.099609375 205.700195312 509.799804688 191 496.299804688 176.799804688 c 1 - 489.700195312 183.700195312 483.900390625 190.700195312 478.900390625 197.700195312 c 0 - 475.299804688 202.799804688 468.299804688 204.299804688 462.900390625 201.099609375 c 2 - 455.599609375 196.799804688 l 1 - 449.099609375 192.900390625 l 2 - 443.200195312 189.400390625 441.400390625 181.5 445.400390625 175.799804688 c 0 - 451.5 167.099609375 458.5 158.5 466.400390625 150.099609375 c 1 - 458.299804688 143.799804688 449.599609375 137.799804688 440.299804688 132.099609375 c 0 - 434.700195312 128.700195312 432.900390625 121.5 436.099609375 115.900390625 c 2 - 444 102 l 2 - 447.400390625 96.099609375 454.900390625 94.2001953125 460.700195312 97.7001953125 c 0 - 473.400390625 105.5 485.200195312 113.900390625 496.099609375 122.599609375 c 1 - 507 113.799804688 518.900390625 105.5 531.5 97.7001953125 c 0 - 537.299804688 94.2001953125 544.799804688 96.099609375 548.200195312 102 c 2 - 556.099609375 115.900390625 l 2 - 559.299804688 121.599609375 557.5 128.700195312 552 132.099609375 c 0 - 543 137.599609375 534.299804688 143.700195312 525.900390625 150.099609375 c 1 - 546.900390625 172.599609375 561.700195312 196.400390625 568.599609375 220 c 1 - 580 220 l 2 - 586.599609375 220 592 225.400390625 592 232 c 2 -0 328 m 2 - 0 341.299804688 10.7001953125 352 24 352 c 2 - 304 352 l 1 - 304 32 l 1 - 24 32 l 2 - 10.7001953125 32 0 42.7001953125 0 56 c 2 - 0 328 l 2 -58.900390625 111.900390625 m 2 - 56.2998046875 104.099609375 62.099609375 96 70.2998046875 96 c 2 - 93.2001953125 96 l 2 - 98.5 96 103.200195312 99.599609375 104.700195312 104.700195312 c 2 - 113.799804688 136.5 l 1 - 174 136.5 l 1 - 183.400390625 104.599609375 l 2 - 184.801757812 99.8564453125 189.953125 96.0029296875 194.900390625 96 c 2 - 217.799804688 96 l 2 - 226.099609375 96 231.799804688 104.099609375 229.200195312 111.900390625 c 2 - 171.700195312 281 l 2 - 170 285.799804688 165.400390625 289.099609375 160.299804688 289.099609375 c 2 - 127.799804688 289.099609375 l 2 - 122.599609375 289.099609375 118.099609375 285.900390625 116.400390625 281 c 2 - 58.900390625 111.900390625 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" l a n g u a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" L a n g u a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" L A N G U A G E -EndChar - -StartChar: fax -Encoding: 61868 61868 341 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480 288 m 1 - 497.6640625 288 512 273.6640625 512 256 c 2 - 512 -32 l 2 - 512 -49.6640625 497.6640625 -64 480 -64 c 2 - 160 -64 l 2 - 142.3359375 -64 128 -49.6640625 128 -32 c 2 - 128 416 l 2 - 128 433.6640625 142.3359375 448 160 448 c 2 - 402.75 448 l 2 - 410.063476562 447.999023438 420.197265625 443.80078125 425.370117188 438.629882812 c 2 - 470.620117188 393.379882812 l 2 - 475.796875 388.20703125 479.999023438 378.068359375 480 370.75 c 2 - 480 288 l 1 -288 16 m 2 - 288 48 l 2 - 288 56.83203125 280.83203125 64 272 64 c 2 - 240 64 l 2 - 231.16796875 64 224 56.83203125 224 48 c 2 - 224 16 l 2 - 224 7.16796875 231.16796875 0 240 0 c 2 - 272 0 l 2 - 280.83203125 0 288 7.16796875 288 16 c 2 -288 144 m 2 - 288 176 l 2 - 288 184.83203125 280.83203125 192 272 192 c 2 - 240 192 l 2 - 231.16796875 192 224 184.83203125 224 176 c 2 - 224 144 l 2 - 224 135.16796875 231.16796875 128 240 128 c 2 - 272 128 l 2 - 280.83203125 128 288 135.16796875 288 144 c 2 -416 16 m 2 - 416 48 l 2 - 416 56.83203125 408.83203125 64 400 64 c 2 - 368 64 l 2 - 359.16796875 64 352 56.83203125 352 48 c 2 - 352 16 l 2 - 352 7.16796875 359.16796875 0 368 0 c 2 - 400 0 l 2 - 408.83203125 0 416 7.16796875 416 16 c 2 -416 144 m 2 - 416 176 l 2 - 416 184.83203125 408.83203125 192 400 192 c 2 - 368 192 l 2 - 359.16796875 192 352 184.83203125 352 176 c 2 - 352 144 l 2 - 352 135.16796875 359.16796875 128 368 128 c 2 - 400 128 l 2 - 408.83203125 128 416 135.16796875 416 144 c 2 -416 256 m 1 - 416 320 l 1 - 368 320 l 2 - 359.16796875 320 352 327.16796875 352 336 c 2 - 352 384 l 1 - 192 384 l 1 - 192 256 l 1 - 416 256 l 1 -64 320 m 2 - 81.6640625 320 96 305.6640625 96 288 c 2 - 96 -32 l 2 - 96 -49.6640625 81.6640625 -64 64 -64 c 2 - 32 -64 l 2 - 14.3359375 -64 0 -49.6640625 0 -32 c 2 - 0 288 l 2 - 0 305.6640625 14.3359375 320 32 320 c 2 - 64 320 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" f a x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" F a x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" F A X -EndChar - -StartChar: building -Encoding: 61869 61869 342 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -436 -32 m 2 - 442.626953125 -32 448 -37.373046875 448 -44 c 2 - 448 -64 l 1 - 0 -64 l 1 - 0 -44 l 2 - 0 -37.373046875 5.373046875 -32 12 -32 c 2 - 32 -32 l 1 - 32 424 l 2 - 32 437.254882812 42.7451171875 448 56 448 c 2 - 392 448 l 2 - 405.254882812 448 416 437.254882812 416 424 c 2 - 416 -32 l 1 - 436 -32 l 2 -128 372 m 2 - 128 332 l 2 - 128 325.373046875 133.373046875 320 140 320 c 2 - 180 320 l 2 - 186.626953125 320 192 325.373046875 192 332 c 2 - 192 372 l 2 - 192 378.626953125 186.626953125 384 180 384 c 2 - 140 384 l 2 - 133.373046875 384 128 378.626953125 128 372 c 2 -128 276 m 2 - 128 236 l 2 - 128 229.373046875 133.373046875 224 140 224 c 2 - 180 224 l 2 - 186.626953125 224 192 229.373046875 192 236 c 2 - 192 276 l 2 - 192 282.626953125 186.626953125 288 180 288 c 2 - 140 288 l 2 - 133.373046875 288 128 282.626953125 128 276 c 2 -180 128 m 2 - 186.626953125 128 192 133.373046875 192 140 c 2 - 192 180 l 2 - 192 186.626953125 186.626953125 192 180 192 c 2 - 140 192 l 2 - 133.373046875 192 128 186.626953125 128 180 c 2 - 128 140 l 2 - 128 133.373046875 133.373046875 128 140 128 c 2 - 180 128 l 2 -256 -32 m 1 - 256 52 l 2 - 256 58.626953125 250.626953125 64 244 64 c 2 - 204 64 l 2 - 197.373046875 64 192 58.626953125 192 52 c 2 - 192 -32 l 1 - 256 -32 l 1 -320 140 m 2 - 320 180 l 2 - 320 186.626953125 314.626953125 192 308 192 c 2 - 268 192 l 2 - 261.373046875 192 256 186.626953125 256 180 c 2 - 256 140 l 2 - 256 133.373046875 261.373046875 128 268 128 c 2 - 308 128 l 2 - 314.626953125 128 320 133.373046875 320 140 c 2 -320 236 m 2 - 320 276 l 2 - 320 282.626953125 314.626953125 288 308 288 c 2 - 268 288 l 2 - 261.373046875 288 256 282.626953125 256 276 c 2 - 256 236 l 2 - 256 229.373046875 261.373046875 224 268 224 c 2 - 308 224 l 2 - 314.626953125 224 320 229.373046875 320 236 c 2 -320 332 m 2 - 320 372 l 2 - 320 378.626953125 314.626953125 384 308 384 c 2 - 268 384 l 2 - 261.373046875 384 256 378.626953125 256 372 c 2 - 256 332 l 2 - 256 325.373046875 261.373046875 320 268 320 c 2 - 308 320 l 2 - 314.626953125 320 320 325.373046875 320 332 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" b u i l d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" B u i l d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" B U I L D I N G -EndChar - -StartChar: child -Encoding: 61870 61870 343 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -120 376 m 0 - 120 415.764648438 152.235351562 448 192 448 c 0 - 231.764648438 448 264 415.764648438 264 376 c 0 - 264 336.236328125 231.764648438 304 192 304 c 0 - 152.235351562 304 120 336.236328125 120 376 c 0 -374.626953125 374.626953125 m 0 - 387.124023438 362.129882812 387.124023438 341.870117188 374.626953125 329.373046875 c 2 - 280 234.74609375 l 1 - 280 -32 l 2 - 280 -49.6728515625 265.672851562 -64 248 -64 c 2 - 232 -64 l 2 - 214.327148438 -64 200 -49.6728515625 200 -32 c 2 - 200 80 l 1 - 184 80 l 1 - 184 -32 l 2 - 184 -49.6728515625 169.672851562 -64 152 -64 c 2 - 136 -64 l 2 - 118.327148438 -64 104 -49.6728515625 104 -32 c 2 - 104 234.74609375 l 1 - 9.373046875 329.372070312 l 2 - -3.1240234375 341.869140625 -3.1240234375 362.129882812 9.373046875 374.626953125 c 0 - 21.869140625 387.124023438 42.130859375 387.124023438 54.626953125 374.626953125 c 2 - 141.25390625 288 l 1 - 242.745117188 288 l 1 - 329.373046875 374.626953125 l 2 - 341.869140625 387.124023438 362.130859375 387.124023438 374.626953125 374.626953125 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" c h i l d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" C h i l d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" C H I L D -EndChar - -StartChar: paw -Encoding: 61872 61872 344 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 224 m 0 - 335.41015625 224 448 101.240234375 448 23.75 c 0 - 448 -11.150390625 421.190429688 -32 376.259765625 -32 c 0 - 327.849609375 -32 295.509765625 -6.919921875 256 -6.919921875 c 0 - 216.830078125 -6.919921875 184.580078125 -32 135.740234375 -32 c 0 - 90.8095703125 -32 64 -11.150390625 64 23.75 c 0 - 64 101.240234375 176.58984375 224 256 224 c 0 -108.719726562 236.610351562 m 0 - 119.120117188 201.959960938 103.950195312 168.23046875 74.830078125 161.26953125 c 0 - 45.7099609375 154.309570312 13.669921875 176.75 3.26953125 211.400390625 c 0 - -7.1298828125 246.049804688 8.0400390625 279.780273438 37.16015625 286.740234375 c 0 - 66.2802734375 293.700195312 98.3203125 271.259765625 108.719726562 236.610351562 c 0 -193.440429688 257.389648438 m 0 - 162.509765625 249.240234375 127.8203125 277.83984375 115.98046875 321.259765625 c 0 - 104.139648438 364.6796875 119.620117188 406.48046875 150.559570312 414.620117188 c 0 - 181.5 422.759765625 216.1796875 394.169921875 228.01953125 350.75 c 0 - 239.860351562 307.330078125 224.379882812 265.530273438 193.440429688 257.389648438 c 0 -474.830078125 286.73046875 m 0 - 503.950195312 279.76953125 519.120117188 246.040039062 508.719726562 211.389648438 c 0 - 498.309570312 176.740234375 466.280273438 154.299804688 437.16015625 161.259765625 c 0 - 408.040039062 168.219726562 392.870117188 201.950195312 403.26953125 236.599609375 c 0 - 413.6796875 271.25 445.709960938 293.690429688 474.830078125 286.73046875 c 0 -318.559570312 257.389648438 m 0 - 287.620117188 265.530273438 272.139648438 307.330078125 283.98046875 350.75 c 0 - 295.8203125 394.169921875 330.5 422.76953125 361.440429688 414.620117188 c 0 - 392.379882812 406.469726562 407.860351562 364.6796875 396.01953125 321.259765625 c 0 - 384.1796875 277.83984375 349.5 249.25 318.559570312 257.389648438 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" p a w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" P a w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" P A W -EndChar - -StartChar: cube -Encoding: 61874 61874 345 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -239.099609375 441.700195312 m 2 - 250 445.799804688 262 445.799804688 272.799804688 441.599609375 c 2 - 480.799804688 363.599609375 l 2 - 499.5 356.599609375 511.900390625 338.700195312 511.900390625 318.700195312 c 2 - 511.900390625 93.599609375 l 2 - 511.900390625 75.5 501.700195312 58.7998046875 485.400390625 50.7001953125 c 2 - 277.400390625 -53.2998046875 l 2 - 263.900390625 -60.099609375 248 -60.099609375 234.5 -53.2998046875 c 2 - 26.5 50.7001953125 l 2 - 10.2998046875 58.7998046875 0 75.400390625 0 93.599609375 c 2 - 0 318.700195312 l 2 - 0 338.700195312 12.400390625 356.700195312 31.099609375 363.700195312 c 2 - 239.099609375 441.700195312 l 2 -256 379.599609375 m 1 - 64 307.599609375 l 1 - 64 306.5 l 1 - 256 228.5 l 1 - 448 306.5 l 1 - 448 307.599609375 l 1 - 256 379.599609375 l 1 -288 23.599609375 m 1 - 448 103.599609375 l 1 - 448 237.5 l 1 - 288 172.5 l 1 - 288 23.599609375 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" c u b e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C u b e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C U B E -EndChar - -StartChar: cubes -Encoding: 61875 61875 346 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -488.599609375 197.799804688 m 2 - 502.700195312 192.5 512 179.099609375 512 164.099609375 c 2 - 512 54 l 2 - 512 40.400390625 504.299804688 27.900390625 492.099609375 21.7998046875 c 2 - 392.099609375 -28.2001953125 l 2 - 382 -33.2998046875 370 -33.2998046875 359.900390625 -28.2001953125 c 2 - 256 23.7998046875 l 1 - 152.099609375 -28.2001953125 l 2 - 142 -33.2998046875 130 -33.2998046875 119.900390625 -28.2001953125 c 2 - 19.900390625 21.7998046875 l 2 - 7.7001953125 27.900390625 0 40.400390625 0 54 c 2 - 0 164.099609375 l 2 - 0 179.099609375 9.2998046875 192.5 23.2998046875 197.799804688 c 2 - 119.900390625 234 l 1 - 119.900390625 342.5 l 2 - 119.900390625 357.5 129.200195312 370.900390625 143.299804688 376.200195312 c 2 - 243.299804688 413.700195312 l 2 - 251.5 416.799804688 260.5 416.799804688 268.599609375 413.700195312 c 2 - 368.599609375 376.200195312 l 2 - 382.700195312 370.900390625 392 357.5 392 342.5 c 2 - 392 234 l 1 - 488.599609375 197.799804688 l 2 -358 233.200195312 m 1 - 358 306.5 l 1 - 273 269.5 l 1 - 273 201.299804688 l 1 - 358 233.200195312 l 1 -154 343.900390625 m 1 - 154 343.299804688 l 1 - 256 301.900390625 l 1 - 358 343.299804688 l 1 - 358 343.900390625 l 1 - 256 382.099609375 l 1 - 154 343.900390625 l 1 -238 52.7998046875 m 1 - 238 128.200195312 l 1 - 153 89.400390625 l 1 - 153 10.2998046875 l 1 - 238 52.7998046875 l 1 -238 164.799804688 m 1 - 238 165.400390625 l 1 - 136 203.599609375 l 1 - 34 165.400390625 l 1 - 34 164.799804688 l 1 - 136 123.400390625 l 1 - 238 164.799804688 l 1 -478 52.7998046875 m 1 - 478 128.200195312 l 1 - 393 89.400390625 l 1 - 393 10.2998046875 l 1 - 478 52.7998046875 l 1 -478 164.799804688 m 1 - 478 165.400390625 l 1 - 376 203.599609375 l 1 - 274 165.400390625 l 1 - 274 164.799804688 l 1 - 376 123.400390625 l 1 - 478 164.799804688 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" c u b e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C u b e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C U B E S -EndChar - -StartChar: recycle -Encoding: 61880 61880 347 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -184.560546875 186.096679688 m 2 - 187.79296875 172.099609375 172.438476562 161.461914062 160.493164062 168.928710938 c 2 - 119.756835938 194.383789062 l 1 - 68.8896484375 112.982421875 l 2 - 55.6064453125 91.7265625 70.9599609375 64 96.01171875 64 c 2 - 148 64 l 2 - 154.626953125 64 160 58.626953125 160 52 c 2 - 160 12 l 2 - 160 5.373046875 154.626953125 0 148 0 c 2 - 96.115234375 0 l 2 - 20.78125 0 -25.1865234375 83.0478515625 14.70703125 146.879882812 c 2 - 65.529296875 228.267578125 l 1 - 24.8037109375 253.715820312 l 2 - 12.72265625 261.262695312 15.837890625 279.676757812 29.6826171875 282.874023438 c 2 - 139.919921875 308.32421875 l 2 - 148.53125 310.311523438 157.12109375 304.943359375 159.109375 296.333984375 c 2 - 184.560546875 186.096679688 l 2 -283.122070312 369.01171875 m 2 - 270.837890625 388.666015625 241.577148438 389.331054688 228.865234375 368.990234375 c 2 - 210.904296875 340.247070312 l 2 - 207.391601562 334.626953125 199.98828125 332.91796875 194.368164062 336.4296875 c 2 - 160.44921875 357.625 l 2 - 154.829101562 361.13671875 153.119140625 368.538085938 156.62890625 374.158203125 c 2 - 174.591796875 402.923828125 l 2 - 212.19921875 463.094726562 299.88671875 462.95703125 337.408203125 402.923828125 c 2 - 378.670898438 336.841796875 l 1 - 419.358398438 362.265625 l 2 - 431.435546875 369.817382812 446.623046875 358.942382812 443.42578125 345.09765625 c 2 - 417.975585938 234.861328125 l 2 - 416.001953125 226.30859375 407.458984375 220.872070312 398.787109375 222.87109375 c 2 - 288.549804688 248.321289062 l 2 - 274.670898438 251.526367188 271.620117188 269.951171875 283.670898438 277.478515625 c 2 - 324.411132812 302.935546875 l 1 - 283.122070312 369.01171875 l 2 -497.288085938 146.879882812 m 2 - 537.21484375 82.9970703125 491.154296875 0 415.879882812 0 c 2 - 320 0 l 1 - 320 -47.9892578125 l 2 - 320 -62.2998046875 302.689453125 -69.3076171875 292.686523438 -59.3037109375 c 2 - 212.686523438 20.6845703125 l 2 - 206.438476562 26.9326171875 206.438476562 37.064453125 212.686523438 43.3115234375 c 2 - 292.686523438 123.29296875 l 2 - 302.7578125 133.36328125 320 126.193359375 320 111.98046875 c 2 - 320 63.9990234375 l 1 - 415.984375 63.9990234375 l 2 - 441.063476562 63.9990234375 456.376953125 91.748046875 443.120117188 112.958984375 c 2 - 415.555664062 157.071289062 l 2 - 412.043945312 162.692382812 413.75390625 170.094726562 419.374023438 173.607421875 c 2 - 453.235351562 194.765625 l 2 - 458.857421875 198.279296875 466.26171875 196.568359375 469.7734375 190.9453125 c 2 - 497.288085938 146.879882812 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" r e c y c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" R E C Y C L E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" R e c y c l e -EndChar - -StartChar: car -Encoding: 61881 61881 348 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -499.990234375 272 m 2 - 507.799804688 272 513.530273438 264.66015625 511.639648438 257.08984375 c 2 - 505.639648438 233.08984375 l 2 - 504.309570312 227.75 499.509765625 224 494 224 c 2 - 473.9296875 224 l 1 - 487.349609375 212.26953125 496 195.219726562 496 176 c 2 - 496 128 l 2 - 496 111.870117188 489.83984375 97.3203125 480 86.0703125 c 1 - 480 32 l 2 - 480 14.330078125 465.669921875 0 448 0 c 2 - 416 0 l 2 - 398.330078125 0 384 14.330078125 384 32 c 2 - 384 64 l 1 - 128 64 l 1 - 128 32 l 2 - 128 14.330078125 113.669921875 0 96 0 c 2 - 64 0 l 2 - 46.330078125 0 32 14.330078125 32 32 c 2 - 32 86.0703125 l 1 - 22.16015625 97.330078125 16 111.879882812 16 128 c 2 - 16 176 l 2 - 16 195.219726562 24.650390625 212.26953125 38.080078125 224 c 1 - 18.009765625 224 l 2 - 12.5 224 7.7001953125 227.75 6.3701171875 233.08984375 c 2 - 0.3701171875 257.08984375 l 2 - -1.5302734375 264.66015625 4.2001953125 272 12.009765625 272 c 2 - 71.8701171875 272 l 1 - 88.509765625 313.599609375 l 2 - 105.620117188 356.370117188 146.440429688 384 192.5 384 c 2 - 319.5 384 l 2 - 365.5703125 384 406.379882812 356.370117188 423.48046875 313.599609375 c 2 - 440.120117188 272 l 1 - 499.990234375 272 l 2 -147.9296875 289.830078125 m 2 - 128 240 l 1 - 384 240 l 1 - 364.0703125 289.830078125 l 2 - 356.780273438 308.049804688 339.129882812 320 319.5 320 c 2 - 192.5 320 l 2 - 172.870117188 320 155.219726562 308.049804688 147.9296875 289.830078125 c 2 -96 128.200195312 m 0 - 115.200195312 128.200195312 144 125.009765625 144 144.150390625 c 0 - 144 163.290039062 115.200195312 192 96 192 c 0 - 76.7998046875 192 64 179.240234375 64 160.099609375 c 0 - 64 140.959960938 76.7998046875 128.200195312 96 128.200195312 c 0 -416 128.200195312 m 0 - 435.200195312 128.200195312 448 140.959960938 448 160.099609375 c 0 - 448 179.240234375 435.200195312 192 416 192 c 0 - 396.799804688 192 368 163.290039062 368 144.150390625 c 0 - 368 125.009765625 396.799804688 128.200195312 416 128.200195312 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" c a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" C a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" C A R -EndChar - -StartChar: taxi -Encoding: 61882 61882 349 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -462 206.360351562 m 1 - 490.58984375 199.959960938 512 174.530273438 512 144 c 2 - 512 96 l 2 - 512 72.3798828125 499.049804688 51.9697265625 480 40.8798828125 c 1 - 480 0 l 2 - 480 -17.669921875 465.669921875 -32 448 -32 c 2 - 416 -32 l 2 - 398.330078125 -32 384 -17.669921875 384 0 c 2 - 384 32 l 1 - 128 32 l 1 - 128 0 l 2 - 128 -17.669921875 113.669921875 -32 96 -32 c 2 - 64 -32 l 2 - 46.330078125 -32 32 -17.669921875 32 0 c 2 - 32 40.8798828125 l 1 - 12.9501953125 51.9599609375 0 72.3701171875 0 96 c 2 - 0 144 l 2 - 0 174.530273438 21.41015625 199.959960938 50 206.360351562 c 1 - 72 291.200195312 l 2 - 81.599609375 326.400390625 113.599609375 352 148.799804688 352 c 2 - 160 352 l 1 - 160 384 l 2 - 160 401.669921875 174.330078125 416 192 416 c 2 - 320 416 l 2 - 337.669921875 416 352 401.669921875 352 384 c 2 - 352 352 l 1 - 363.200195312 352 l 2 - 398.400390625 352 430.400390625 326.400390625 440 291.200195312 c 2 - 462 206.360351562 l 1 -96 96 m 0 - 113.669921875 96 128 110.330078125 128 128 c 0 - 128 145.669921875 113.669921875 160 96 160 c 0 - 78.330078125 160 64 145.669921875 64 128 c 0 - 64 110.330078125 78.330078125 96 96 96 c 0 -116.549804688 208 m 1 - 395.450195312 208 l 1 - 378.059570312 275.139648438 l 2 - 376.040039062 282.51953125 368.6796875 288 363.209960938 288 c 2 - 148.809570312 288 l 2 - 143.33984375 288 135.98046875 282.51953125 133.75 274.360351562 c 2 - 116.549804688 208 l 1 -416 96 m 0 - 433.669921875 96 448 110.330078125 448 128 c 0 - 448 145.669921875 433.669921875 160 416 160 c 0 - 398.330078125 160 384 145.669921875 384 128 c 0 - 384 110.330078125 398.330078125 96 416 96 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" t a x i -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" T a x i -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" T A X I -EndChar - -StartChar: tree -Encoding: 61883 61883 350 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -378.309570312 69.509765625 m 2 - 384.309570312 62.7197265625 385.669921875 53.419921875 381.870117188 45.25 c 0 - 378.120117188 37.2001953125 369.870117188 32 360.860351562 32 c 2 - 224 32 l 1 - 224 7.5498046875 l 1 - 254.290039062 -40.849609375 l 2 - 259.610351562 -51.490234375 251.870117188 -64.009765625 239.98046875 -64.009765625 c 2 - 144.01953125 -64.009765625 l 2 - 132.129882812 -64.009765625 124.389648438 -51.490234375 129.709960938 -40.849609375 c 2 - 160 7.5498046875 l 1 - 160 32 l 1 - 23.1396484375 32 l 2 - 14.1298828125 32 5.8798828125 37.2001953125 2.1298828125 45.25 c 0 - -1.669921875 53.419921875 -0.3095703125 62.7197265625 5.6904296875 69.509765625 c 2 - 85.580078125 160 l 1 - 54.9501953125 160 l 2 - 45.9296875 160 37.9697265625 165 34.169921875 173.049804688 c 0 - 30.3798828125 181.099609375 31.6298828125 190.309570312 37.4404296875 197.08984375 c 2 - 115.580078125 288 l 1 - 86.6904296875 288 l 2 - 77.58984375 288 69.3798828125 293.349609375 65.8203125 301.610351562 c 0 - 62.3095703125 309.740234375 63.9599609375 319.200195312 70.0595703125 325.690429688 c 2 - 180.33984375 443.169921875 l 2 - 186.379882812 449.620117188 197.629882812 449.620117188 203.66015625 443.169921875 c 2 - 313.9296875 325.690429688 l 2 - 320.030273438 319.200195312 321.690429688 309.740234375 318.169921875 301.610351562 c 0 - 314.610351562 293.349609375 306.41015625 288 297.309570312 288 c 2 - 268.419921875 288 l 1 - 346.549804688 197.110351562 l 2 - 352.379882812 190.3203125 353.629882812 181.099609375 349.830078125 173.059570312 c 0 - 346.030273438 165 338.059570312 160 329.049804688 160 c 2 - 298.419921875 160 l 1 - 378.309570312 69.509765625 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" t r e e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" T r e e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" T R E E -EndChar - -StartChar: database -Encoding: 61888 61888 351 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 374.857421875 m 2 - 448 329.142578125 l 2 - 448 288.857421875 347.666992188 256 224 256 c 0 - 100.333007812 256 0 288.857421875 0 329.142578125 c 2 - 0 374.857421875 l 2 - 0 415.142578125 100.333007812 448 224 448 c 0 - 347.666992188 448 448 415.142578125 448 374.857421875 c 2 -448 272 m 1 - 448 169.142578125 l 2 - 448 128.857421875 347.666992188 96 224 96 c 0 - 100.333007812 96 0 128.857421875 0 169.142578125 c 2 - 0 272 l 1 - 48.125 238.857421875 136.208007812 223.427734375 224 223.427734375 c 0 - 311.791992188 223.427734375 399.874023438 238.857421875 448 272 c 1 -448 112 m 1 - 448 9.142578125 l 2 - 448 -31.142578125 347.666992188 -64 224 -64 c 0 - 100.333007812 -64 0 -31.142578125 0 9.142578125 c 2 - 0 112 l 1 - 48.125 78.857421875 136.208007812 63.427734375 224 63.427734375 c 0 - 311.791992188 63.427734375 399.874023438 78.857421875 448 112 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" d a t a b a s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D a t a b a s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D A T A B A S E -EndChar - -StartChar: file-pdf -Encoding: 61889 61889 352 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -181.900390625 191.900390625 m 1 - 176.900390625 207.900390625 177 238.799804688 179.900390625 238.799804688 c 0 - 188.299804688 238.799804688 187.5 201.900390625 181.900390625 191.900390625 c 1 -180.200195312 144.700195312 m 1 - 189.799804688 127.299804688 202 113.5 214.700195312 103.900390625 c 1 - 190.799804688 99.2001953125 170.099609375 89 151.799804688 82 c 1 - 162.900390625 101.400390625 172.5 124.5 180.200195312 144.700195312 c 1 -86.099609375 19.900390625 m 0 - 91.900390625 35.599609375 114.299804688 53.7998046875 121 60.099609375 c 1 - 99.2998046875 25.2998046875 86.099609375 19.099609375 86.099609375 19.900390625 c 0 -248 288 m 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 - 224 298.799804688 234.799804688 288 248 288 c 2 -240 116.200195312 m 1 - 220 128.400390625 206.700195312 145.200195312 197.299804688 170 c 1 - 201.799804688 188.5 208.900390625 216.599609375 203.5 234.200195312 c 0 - 198.799804688 263.599609375 161.099609375 260.700195312 155.700195312 241 c 0 - 150.700195312 222.700195312 155.299804688 196.900390625 163.799804688 164 c 1 - 152.200195312 136.400390625 135.099609375 99.400390625 123 78.2001953125 c 0 - 122.900390625 78.2001953125 122.900390625 78.099609375 122.799804688 78.099609375 c 0 - 95.7001953125 64.2001953125 49.2001953125 33.599609375 68.2998046875 10.099609375 c 0 - 73.900390625 3.2001953125 84.2998046875 0.099609375 89.7998046875 0.099609375 c 0 - 107.700195312 0.099609375 125.5 18.099609375 150.900390625 61.900390625 c 1 - 176.700195312 70.400390625 205 81 229.900390625 85.099609375 c 1 - 251.599609375 73.2998046875 277 65.599609375 293.900390625 65.599609375 c 0 - 323.099609375 65.599609375 325.099609375 97.599609375 313.599609375 109 c 0 - 299.700195312 122.599609375 259.299804688 118.700195312 240 116.200195312 c 1 -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262 448 l 2 - 268.400390625 448 274.5 445.5 279 441 c 2 - 377 343 l 2 -302.900390625 87.7001953125 m 2 - 302.900390625 87.7001953125 297.200195312 80.900390625 260.099609375 96.7001953125 c 1 - 300.400390625 99.599609375 307 90.400390625 302.900390625 87.7001953125 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" f i l e hyphen p d f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" F i l e hyphen P d f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" F i l e hyphen p d f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" F I L E hyphen P D F -EndChar - -StartChar: file-word -Encoding: 61890 61890 353 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -281.099609375 192 m 2 - 275.5 192 270.599609375 188.099609375 269.599609375 182.5 c 0 - 245.400390625 71.099609375 247.799804688 64.5 248 53.2998046875 c 1 - 247.200195312 58.7001953125 242.400390625 82.2998046875 218.400390625 182.700195312 c 0 - 217.099609375 188.099609375 212.299804688 191.900390625 206.700195312 191.900390625 c 2 - 177.599609375 191.900390625 l 2 - 172 191.900390625 167.200195312 188.200195312 165.900390625 182.799804688 c 0 - 143.799804688 92.7998046875 138.099609375 70.2998046875 136.5 60.099609375 c 1 - 135.599609375 72.7998046875 131.099609375 104.299804688 115.5 182.299804688 c 0 - 114.400390625 188 109.400390625 192 103.700195312 192 c 2 - 79.2001953125 192 l 2 - 71.5 192 65.7998046875 184.900390625 67.5 177.400390625 c 2 - 105.299804688 9.400390625 l 2 - 106.5 3.900390625 111.400390625 0 117 0 c 2 - 154.099609375 0 l 2 - 159.599609375 0 164.400390625 3.7998046875 165.700195312 9.099609375 c 0 - 188.900390625 102.200195312 190.200195312 105.299804688 191.299804688 119.599609375 c 1 - 191.799804688 119.599609375 l 1 - 196.599609375 90.2998046875 191.599609375 112.599609375 217.400390625 9.099609375 c 0 - 218.700195312 3.7998046875 223.5 0 229 0 c 2 - 267 0 l 2 - 272.599609375 0 277.5 3.7998046875 278.700195312 9.2998046875 c 2 - 316.700195312 177.299804688 l 2 - 318.400390625 184.900390625 312.700195312 192 305 192 c 2 - 281.099609375 192 l 2 -384 326.099609375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" f i l e hyphen w o r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" F i l e hyphen W o r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" F i l e hyphen w o r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" F I L E hyphen W O R D -EndChar - -StartChar: file-excel -Encoding: 61891 61891 354 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -284.099609375 205.5 m 2 - 289.200195312 213.5 283.5 224 274 223.900390625 c 2 - 239.200195312 223.900390625 l 2 - 234.799804688 223.900390625 230.700195312 221.5 228.599609375 217.599609375 c 0 - 198.099609375 160.799804688 192 149.099609375 192 149.099609375 c 1 - 175.400390625 184 181.5 168.799804688 155.400390625 217.599609375 c 0 - 153.299804688 221.5 149.200195312 223.900390625 144.799804688 223.900390625 c 2 - 110 223.900390625 l 2 - 100.5 223.900390625 94.7001953125 213.400390625 99.900390625 205.400390625 c 2 - 160.200195312 111.900390625 l 1 - 99.900390625 18.400390625 l 2 - 94.7998046875 10.400390625 100.5 -0.099609375 110 -0.099609375 c 2 - 144.900390625 -0.099609375 l 2 - 149.299804688 -0.099609375 153.299804688 2.2998046875 155.400390625 6.2001953125 c 0 - 182 55 185.599609375 60.2001953125 192 75 c 1 - 192 75 208.900390625 42.5 228.5 6.2998046875 c 0 - 230.599609375 2.400390625 234.700195312 0 239.099609375 0 c 2 - 274 0 l 2 - 283.5 0 289.200195312 10.5 284.099609375 18.5 c 2 - 224 112 l 1 - 284.099609375 205.5 l 2 -384 326.099609375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" f i l e hyphen e x c e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" F i l e hyphen E x c e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" F i l e hyphen e x c e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" F I L E hyphen E X C E L -EndChar - -StartChar: file-powerpoint -Encoding: 61892 61892 355 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -193.700195312 176.799804688 m 2 - 202.5 176.799804688 209.200195312 174.099609375 214 168.700195312 c 0 - 223.599609375 157.799804688 223.799804688 136 213.799804688 124.599609375 c 0 - 208.900390625 119 201.900390625 116.099609375 192.700195312 116.099609375 c 2 - 165.799804688 116.099609375 l 1 - 165.799804688 176.799804688 l 1 - 193.700195312 176.799804688 l 2 -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262 448 l 2 - 268.400390625 448 274.5 445.5 279 441 c 2 - 377 343 l 2 -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -277 146.799804688 m 0 - 277 191 248.599609375 223.799804688 204.099609375 223.799804688 c 2 - 123.099609375 223.799804688 l 2 - 116.5 223.799804688 111.099609375 218.400390625 111.099609375 211.799804688 c 2 - 111.099609375 12 l 2 - 111.099609375 5.400390625 116.5 0 123.099609375 0 c 2 - 153.900390625 0 l 2 - 160.5 0 165.900390625 5.400390625 165.900390625 12 c 2 - 165.900390625 69.2001953125 l 1 - 188.200195312 69.2001953125 277 56.5 277 146.799804688 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" f i l e hyphen p o w e r p o i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" F i l e hyphen P o w e r p o i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" F i l e hyphen p o w e r p o i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" F I L E hyphen P O W E R P O I N T -EndChar - -StartChar: file-image -Encoding: 61893 61893 356 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 326.05859375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.05859375 448 l 2 - 267.545898438 448 275.1484375 444.850585938 279.029296875 440.970703125 c 2 - 376.969726562 343.030273438 l 2 - 380.850585938 339.149414062 384 331.546875 384 326.05859375 c 2 -248 288 m 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2548828125 373.254882812 -64 360 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 - 224 298.799804688 234.799804688 288 248 288 c 2 -112.544921875 272 m 0 - 86.0361328125 272 64.544921875 250.509765625 64.544921875 224 c 0 - 64.544921875 197.490234375 86.03515625 176 112.544921875 176 c 0 - 139.0546875 176 160.544921875 197.490234375 160.544921875 224 c 0 - 160.544921875 250.509765625 139.0546875 272 112.544921875 272 c 0 -320.544921875 32 m 1 - 320.544921875 144 l 1 - 281.03125 183.514648438 l 2 - 276.34375 188.201171875 268.74609375 188.201171875 264.059570312 183.514648438 c 2 - 160.544921875 80 l 1 - 121.030273438 119.514648438 l 2 - 116.34375 124.201171875 109.231445312 124.685546875 104.544921875 120 c 2 - 65.0302734375 80.4853515625 l 1 - 64.544921875 32 l 1 - 320.544921875 32 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" f i l e hyphen i m a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" F i l e hyphen i m a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" F I L E hyphen I M A G E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" F i l e hyphen I m a g e -EndChar - -StartChar: file-archive -Encoding: 61894 61894 357 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 -128.400390625 112 m 0 - 146.299804688 112 160.900390625 99.900390625 160.900390625 85 c 0 - 160.900390625 70.099609375 146.400390625 58 128.5 58 c 0 - 110.599609375 58 96 70 96 85 c 0 - 96 99.900390625 110.5 112 128.400390625 112 c 0 -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 128.400390625 448 l 1 - 128.400390625 416 l 1 - 160.400390625 416 l 1 - 160.400390625 448 l 1 - 224 448 l 1 - 224 312 l 2 -95.900390625 416 m 1 - 95.900390625 384 l 1 - 127.900390625 384 l 1 - 127.900390625 416 l 1 - 95.900390625 416 l 1 -128.200195312 32 m 0 - 161.200195312 32 186 62.2001953125 179.599609375 94.599609375 c 2 - 162.299804688 182.299804688 l 2 - 161.200195312 187.900390625 156.200195312 192 150.5 192 c 2 - 128.400390625 192 l 1 - 128.400390625 224 l 1 - 160.400390625 224 l 1 - 160.400390625 256 l 1 - 128.400390625 256 l 1 - 128.400390625 288 l 1 - 160.400390625 288 l 1 - 160.400390625 320 l 1 - 128.400390625 320 l 1 - 128.400390625 352 l 1 - 160.400390625 352 l 1 - 160.400390625 384 l 1 - 128.400390625 384 l 1 - 128.400390625 352 l 1 - 96.400390625 352 l 1 - 96.400390625 320 l 1 - 128.400390625 320 l 1 - 128.400390625 288 l 1 - 96.400390625 288 l 1 - 96.400390625 256 l 1 - 128.400390625 256 l 1 - 128.400390625 224 l 1 - 96.400390625 224 l 1 - 96.400390625 192 l 1 - 76.7998046875 94.900390625 l 2 - 70.2001953125 62.400390625 95 32 128.200195312 32 c 0 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" f i l e hyphen a r c h i v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" F i l e hyphen A r c h i v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" F i l e hyphen a r c h i v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" F I L E hyphen A R C H I V E -EndChar - -StartChar: file-audio -Encoding: 61895 61895 358 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -160 44 m 2 - 160 180 l 2 - 160 190.700195312 147.099609375 196.099609375 139.5 188.5 c 2 - 104 152 l 1 - 76 152 l 2 - 69.400390625 152 64 146.599609375 64 140 c 2 - 64 84 l 2 - 64 77.400390625 69.400390625 72 76 72 c 2 - 104 72 l 1 - 139.5 35.5 l 2 - 147.099609375 28 160 33.2998046875 160 44 c 2 -193.200195312 91.599609375 m 0 - 170.700195312 68.5 205.799804688 35.7998046875 227.599609375 58.099609375 c 0 - 254.799804688 86.099609375 254.799804688 130.599609375 227.599609375 158.5 c 0 - 205.400390625 181.200195312 171.099609375 147.799804688 193.200195312 125 c 0 - 202.299804688 115.700195312 202.299804688 100.900390625 193.200195312 91.599609375 c 0 -279.200195312 208.700195312 m 0 - 257.099609375 231.5 222.700195312 198 244.799804688 175.200195312 c 0 - 281.099609375 137.900390625 281 78.599609375 244.799804688 41.400390625 c 0 - 222.200195312 18.2001953125 257.400390625 -14.5 279.200195312 7.900390625 c 0 - 333.599609375 63.900390625 333.599609375 152.799804688 279.200195312 208.700195312 c 0 -384 326.099609375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" f i l e hyphen a u d i o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" F i l e hyphen A u d i o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" F i l e hyphen a u d i o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" F I L E hyphen A U D I O -EndChar - -StartChar: file-video -Encoding: 61896 61896 359 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 326.05859375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.05859375 448 l 2 - 268.423828125 448 274.529296875 445.470703125 279.030273438 440.970703125 c 2 - 376.970703125 343.030273438 l 2 - 380.850585938 339.149414062 384 331.546875 384 326.05859375 c 2 -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2548828125 373.254882812 -64 360 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -320 167.984375 m 2 - 320 189.4453125 294.040039062 199.963867188 279.029296875 184.954101562 c 2 - 224 129.94140625 l 1 - 224 168 l 2 - 224 181.254882812 213.254882812 192 200 192 c 2 - 88 192 l 2 - 74.7451171875 192 64 181.254882812 64 168 c 2 - 64 56 l 2 - 64 42.7451171875 74.7451171875 32 88 32 c 2 - 200 32 l 2 - 213.254882812 32 224 42.7451171875 224 56 c 2 - 224 94.05859375 l 1 - 279.029296875 39.0498046875 l 2 - 294.056640625 24.0234375 320 34.576171875 320 56.021484375 c 2 - 320 167.984375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" f i l e hyphen v i d e o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" F i l e hyphen V i d e o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" F i l e hyphen v i d e o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" F I L E hyphen V I D E O -EndChar - -StartChar: file-code -Encoding: 61897 61897 360 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 326.05859375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.05859375 448 l 2 - 268.423828125 448 274.529296875 445.470703125 279.030273438 440.970703125 c 2 - 376.970703125 343.030273438 l 2 - 380.850585938 339.149414062 384 331.546875 384 326.05859375 c 2 -248 288 m 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2548828125 373.254882812 -64 360 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 - 224 298.799804688 234.799804688 288 248 288 c 2 -123.206054688 47.4951171875 m 2 - 142.78515625 68.37890625 l 2 - 143.590820312 69.2392578125 144.245117188 70.8935546875 144.245117188 72.072265625 c 0 - 144.245117188 73.419921875 143.424804688 75.2353515625 142.413085938 76.1259765625 c 2 - 101.650390625 112 l 1 - 142.413085938 147.874023438 l 2 - 143.424804688 148.764648438 144.245117188 150.580078125 144.245117188 151.927734375 c 0 - 144.245117188 153.106445312 143.590820312 154.760742188 142.78515625 155.62109375 c 2 - 123.206054688 176.505859375 l 2 - 122.323242188 177.448242188 120.557617188 178.212890625 119.266601562 178.212890625 c 0 - 118.087890625 178.212890625 116.432617188 177.55859375 115.573242188 176.751953125 c 2 - 50.70703125 115.940429688 l 2 - 49.7646484375 115.056640625 49 113.291992188 49 112.000976562 c 0 - 49 110.708984375 49.7646484375 108.944335938 50.70703125 108.060546875 c 2 - 115.573242188 47.2490234375 l 2 - 116.432617188 46.4423828125 118.087890625 45.7880859375 119.266601562 45.7880859375 c 0 - 120.557617188 45.7880859375 122.323242188 46.552734375 123.206054688 47.4951171875 c 2 -174.500976562 -2.984375 m 2 - 174.908203125 -3.1025390625 175.583007812 -3.1982421875 176.006835938 -3.1982421875 c 0 - 178.24609375 -3.1982421875 180.568359375 -1.453125 181.19140625 0.697265625 c 2 - 242.630859375 212.323242188 l 2 - 242.749023438 212.73046875 242.845703125 213.405273438 242.845703125 213.829101562 c 0 - 242.845703125 216.067382812 241.100585938 218.390625 238.951171875 219.014648438 c 2 - 211.499023438 226.985351562 l 2 - 211.091796875 227.102539062 210.41796875 227.19921875 209.994140625 227.19921875 c 0 - 207.755859375 227.19921875 205.431640625 225.454101562 204.806640625 223.303710938 c 2 - 143.3671875 11.677734375 l 2 - 143.249023438 11.271484375 143.153320312 10.5966796875 143.153320312 10.173828125 c 0 - 143.153320312 7.9345703125 144.8984375 5.6103515625 147.047851562 4.986328125 c 2 - 174.500976562 -2.984375 l 2 -335.29296875 108.060546875 m 2 - 336.235351562 108.944335938 337 110.708984375 337 112.000976562 c 0 - 337 113.291992188 336.235351562 115.056640625 335.293945312 115.940429688 c 2 - 270.427734375 176.751953125 l 2 - 269.568359375 177.55859375 267.913085938 178.212890625 266.734375 178.212890625 c 0 - 265.443359375 178.212890625 263.678710938 177.448242188 262.794921875 176.505859375 c 2 - 243.21484375 155.62109375 l 2 - 242.409179688 154.760742188 241.754882812 153.106445312 241.754882812 151.927734375 c 0 - 241.754882812 150.580078125 242.575195312 148.764648438 243.586914062 147.874023438 c 2 - 284.349609375 112 l 1 - 243.5859375 76.126953125 l 2 - 242.57421875 75.236328125 241.75390625 73.4208984375 241.75390625 72.0732421875 c 0 - 241.75390625 70.89453125 242.408203125 69.240234375 243.213867188 68.3798828125 c 2 - 262.793945312 47.4951171875 l 2 - 263.676757812 46.552734375 265.442382812 45.7880859375 266.733398438 45.7880859375 c 0 - 267.912109375 45.7880859375 269.567382812 46.4423828125 270.426757812 47.2490234375 c 2 - 335.29296875 108.060546875 l 2 -EndSplineSet -Validated: 524805 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" f i l e hyphen c o d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" F i l e hyphen c o d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" F I L E hyphen C O D E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" F i l e hyphen C o d e -EndChar - -StartChar: life-ring -Encoding: 61901 61901 361 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 392.966796875 440 504 328.966796875 504 192 c 0 - 504 55.033203125 392.966796875 -56 256 -56 c 0 - 119.033203125 -56 8 55.033203125 8 192 c 0 - 8 328.966796875 119.033203125 440 256 440 c 0 -429.696289062 320.44140625 m 1 - 419.055664062 334.78125 398.78125 355.055664062 384.44140625 365.696289062 c 1 - 321.041992188 302.296875 l 1 - 339.626953125 291.293945312 355.309570312 275.600585938 366.296875 257.041992188 c 1 - 429.696289062 320.44140625 l 1 -256 96 m 0 - 309.018554688 96 352 138.981445312 352 192 c 0 - 352 245.018554688 309.018554688 288 256 288 c 0 - 202.981445312 288 160 245.018554688 160 192 c 0 - 160 138.981445312 202.981445312 96 256 96 c 0 -127.55859375 365.696289062 m 1 - 113.21875 355.055664062 92.9443359375 334.78125 82.3037109375 320.44140625 c 1 - 145.703125 257.041992188 l 1 - 156.706054688 275.626953125 172.399414062 291.309570312 190.958007812 302.296875 c 1 - 127.55859375 365.696289062 l 1 -82.3037109375 63.55859375 m 1 - 92.9443359375 49.21875 113.21875 28.9443359375 127.55859375 18.3037109375 c 1 - 190.958007812 81.703125 l 1 - 172.373046875 92.7060546875 156.690429688 108.399414062 145.703125 126.958007812 c 1 - 82.3037109375 63.55859375 l 1 -384.44140625 18.3037109375 m 1 - 398.78125 28.9443359375 419.055664062 49.21875 429.696289062 63.55859375 c 1 - 366.296875 126.958007812 l 1 - 355.293945312 108.373046875 339.600585938 92.6904296875 321.041992188 81.703125 c 1 - 384.44140625 18.3037109375 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" l i f e hyphen r i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" L i f e hyphen R i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" L i f e hyphen r i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" L I F E hyphen R I N G -EndChar - -StartChar: circle-notch -Encoding: 61902 61902 362 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 408.944335938 m 2 - 288 424.543945312 302.677734375 436.111328125 317.7890625 432.236328125 c 0 - 424.860351562 404.779296875 504 307.6328125 504 192 c 0 - 504 55.2119140625 393.254882812 -55.7109375 256.534179688 -55.9990234375 c 0 - 119.48046875 -56.2880859375 8.72265625 53.6162109375 8.0029296875 190.66796875 c 0 - 7.3935546875 306.793945312 86.6025390625 404.517578125 193.954101562 432.169921875 c 0 - 209.166015625 436.088867188 224 424.64453125 224 408.935546875 c 2 - 224 392.288085938 l 2 - 224 381.483398438 216.71875 372.125976562 206.311523438 369.21875 c 0 - 128.786132812 347.564453125 72 276.469726562 72 192 c 0 - 72 90.294921875 154.310546875 8 256 8 c 0 - 357.705078125 8 440 90.310546875 440 192 c 0 - 440 276.482421875 383.204101562 347.56640625 305.685546875 369.21875 c 0 - 295.28125 372.125976562 288 381.481445312 288 392.28515625 c 2 - 288 408.944335938 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" c i r c l e hyphen n o t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C i r c l e hyphen N o t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C i r c l e hyphen n o t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C I R C L E hyphen N O T C H -EndChar - -StartChar: paper-plane -Encoding: 61912 61912 363 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -476 444.799804688 m 2 - 493.299804688 454.799804688 515 440.200195312 511.599609375 420 c 2 - 439.599609375 -12 l 2 - 437 -27.2998046875 420.799804688 -36.2001953125 406.599609375 -30.2001953125 c 2 - 282 22 l 1 - 218.5 -55.2998046875 l 2 - 204.5 -72.400390625 176 -63.099609375 176 -39.5 c 2 - 176 41 l 1 - 416.900390625 334.5 l 2 - 421.599609375 340.200195312 413.799804688 347.700195312 408.299804688 342.799804688 c 2 - 121 89.599609375 l 1 - 14.7001953125 134.200195312 l 2 - -3.2998046875 141.799804688 -5.599609375 167 12.5 177.400390625 c 2 - 476 444.799804688 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" p a p e r hyphen p l a n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" P a p e r hyphen p l a n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" P A P E R hyphen P L A N E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" P a p e r hyphen P l a n e -EndChar - -StartChar: history -Encoding: 61914 61914 364 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504 192.46875 m 0 - 504.252929688 55.8291015625 392.8203125 -55.9033203125 256.1796875 -55.9990234375 c 0 - 197.165039062 -56.041015625 142.95703125 -35.46875 100.358398438 -1.087890625 c 0 - 89.28125 7.8515625 88.453125 24.453125 98.5185546875 34.5185546875 c 2 - 109.786132812 45.7861328125 l 2 - 118.39453125 54.39453125 132.138671875 55.3369140625 141.676757812 47.76953125 c 0 - 173.061523438 22.865234375 212.78125 8 256 8 c 0 - 357.705078125 8 440 90.310546875 440 192 c 0 - 440 293.705078125 357.689453125 376 256 376 c 0 - 207.185546875 376 162.850585938 357.03125 129.931640625 326.068359375 c 1 - 180.685546875 275.314453125 l 2 - 190.765625 265.234375 183.626953125 248 169.373046875 248 c 2 - 24 248 l 2 - 15.1630859375 248 8 255.163085938 8 264 c 2 - 8 409.373046875 l 2 - 8 423.626953125 25.234375 430.765625 35.314453125 420.686523438 c 2 - 84.685546875 371.315429688 l 1 - 129.208984375 413.864257812 189.551757812 440 256 440 c 0 - 392.809570312 440 503.747070312 329.219726562 504 192.46875 c 0 -323.087890625 113.684570312 m 2 - 314.950195312 103.221679688 299.872070312 101.337890625 289.409179688 109.474609375 c 2 - 224 160.348632812 l 1 - 224 296 l 2 - 224 309.254882812 234.745117188 320 248 320 c 2 - 264 320 l 2 - 277.254882812 320 288 309.254882812 288 296 c 2 - 288 191.651367188 l 1 - 328.701171875 159.994140625 l 2 - 339.1640625 151.857421875 341.048828125 136.778320312 332.911132812 126.315429688 c 2 - 323.087890625 113.684570312 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" h i s t o r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" H i s t o r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" H I S T O R Y -EndChar - -StartChar: heading -Encoding: 61916 61916 365 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 352 m 1 - 448 32 l 1 - 480 32 l 2 - 488.83203125 32 496 24.83203125 496 16 c 2 - 496 -16 l 2 - 496 -24.83203125 488.83203125 -32 480 -32 c 2 - 320 -32 l 2 - 311.16796875 -32 304 -24.83203125 304 -16 c 2 - 304 16 l 2 - 304 24.83203125 311.16796875 32 320 32 c 2 - 352 32 l 1 - 352 160 l 1 - 160 160 l 1 - 160 32 l 1 - 192 32 l 2 - 200.83203125 32 208 24.83203125 208 16 c 2 - 208 -16 l 2 - 208 -24.83203125 200.83203125 -32 192 -32 c 2 - 32 -32 l 2 - 23.16796875 -32 16 -24.83203125 16 -16 c 2 - 16 16 l 2 - 16 24.83203125 23.16796875 32 32 32 c 2 - 64 32 l 1 - 64 352 l 1 - 32 352 l 2 - 23.16796875 352 16 359.16796875 16 368 c 2 - 16 400 l 2 - 16 408.83203125 23.16796875 416 32 416 c 2 - 192 416 l 2 - 200.83203125 416 208 408.83203125 208 400 c 2 - 208 368 l 2 - 208 359.16796875 200.83203125 352 192 352 c 2 - 160 352 l 1 - 160 224 l 1 - 352 224 l 1 - 352 352 l 1 - 320 352 l 2 - 311.16796875 352 304 359.16796875 304 368 c 2 - 304 400 l 2 - 304 408.83203125 311.16796875 416 320 416 c 2 - 480 416 l 2 - 488.83203125 416 496 408.83203125 496 400 c 2 - 496 368 l 2 - 496 359.16796875 488.83203125 352 480 352 c 2 - 448 352 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" h e a d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" H e a d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" H E A D I N G -EndChar - -StartChar: paragraph -Encoding: 61917 61917 366 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 400 m 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 384 352 l 1 - 384 -16 l 2 - 384 -24.83203125 376.83203125 -32 368 -32 c 2 - 336 -32 l 2 - 327.16796875 -32 320 -24.83203125 320 -16 c 2 - 320 352 l 1 - 288 352 l 1 - 288 -16 l 2 - 288 -24.83203125 280.83203125 -32 272 -32 c 2 - 240 -32 l 2 - 231.16796875 -32 224 -24.83203125 224 -16 c 2 - 224 96 l 1 - 192 96 l 2 - 103.6796875 96 32 167.6796875 32 256 c 0 - 32 344.3203125 103.6796875 416 192 416 c 2 - 432 416 l 2 - 440.83203125 416 448 408.83203125 448 400 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" p a r a g r a p h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" P a r a g r a p h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" P A R A G R A P H -EndChar - -StartChar: sliders-h -Encoding: 61918 61918 367 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 64 m 2 - 504.799804688 64 512 56.7998046875 512 48 c 2 - 512 16 l 2 - 512 7.2001953125 504.799804688 0 496 0 c 2 - 160 0 l 1 - 160 -16 l 2 - 160 -24.7998046875 152.799804688 -32 144 -32 c 2 - 112 -32 l 2 - 103.200195312 -32 96 -24.7998046875 96 -16 c 2 - 96 0 l 1 - 16 0 l 2 - 7.2001953125 0 0 7.2001953125 0 16 c 2 - 0 48 l 2 - 0 56.7998046875 7.2001953125 64 16 64 c 2 - 96 64 l 1 - 96 80 l 2 - 96 88.7998046875 103.200195312 96 112 96 c 2 - 144 96 l 2 - 152.799804688 96 160 88.7998046875 160 80 c 2 - 160 64 l 1 - 496 64 l 2 -496 224 m 2 - 504.799804688 224 512 216.799804688 512 208 c 2 - 512 176 l 2 - 512 167.200195312 504.799804688 160 496 160 c 2 - 416 160 l 1 - 416 144 l 2 - 416 135.200195312 408.799804688 128 400 128 c 2 - 368 128 l 2 - 359.200195312 128 352 135.200195312 352 144 c 2 - 352 160 l 1 - 16 160 l 2 - 7.2001953125 160 0 167.200195312 0 176 c 2 - 0 208 l 2 - 0 216.799804688 7.2001953125 224 16 224 c 2 - 352 224 l 1 - 352 240 l 2 - 352 248.799804688 359.200195312 256 368 256 c 2 - 400 256 l 2 - 408.799804688 256 416 248.799804688 416 240 c 2 - 416 224 l 1 - 496 224 l 2 -496 384 m 2 - 504.799804688 384 512 376.799804688 512 368 c 2 - 512 336 l 2 - 512 327.200195312 504.799804688 320 496 320 c 2 - 288 320 l 1 - 288 304 l 2 - 288 295.200195312 280.799804688 288 272 288 c 2 - 240 288 l 2 - 231.200195312 288 224 295.200195312 224 304 c 2 - 224 320 l 1 - 16 320 l 2 - 7.2001953125 320 0 327.200195312 0 336 c 2 - 0 368 l 2 - 0 376.799804688 7.2001953125 384 16 384 c 2 - 224 384 l 1 - 224 400 l 2 - 224 408.799804688 231.200195312 416 240 416 c 2 - 272 416 l 2 - 280.799804688 416 288 408.799804688 288 400 c 2 - 288 384 l 1 - 496 384 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" s l i d e r s hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S l i d e r s hyphen H -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S l i d e r s hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S L I D E R S hyphen H -EndChar - -StartChar: share-alt -Encoding: 61920 61920 368 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -352 128 m 0 - 405.018554688 128 448 85.0185546875 448 32 c 0 - 448 -21.0185546875 405.018554688 -64 352 -64 c 0 - 298.981445312 -64 256 -21.0185546875 256 32 c 2 - 256 32.0283203125 l 2 - 256 37.8408203125 257.01953125 47.1650390625 258.276367188 52.8408203125 c 1 - 155.790039062 116.89453125 l 1 - 139.38671875 103.819335938 118.608398438 96 96 96 c 0 - 42.9814453125 96 0 138.981445312 0 192 c 0 - 0 245.018554688 42.9814453125 288 96 288 c 0 - 118.608398438 288 139.38671875 280.180664062 155.790039062 267.10546875 c 1 - 258.276367188 331.159179688 l 1 - 256.790039062 337.870117188 256 344.841796875 256 352 c 0 - 256 405.018554688 298.981445312 448 352 448 c 0 - 405.018554688 448 448 405.018554688 448 352 c 0 - 448 298.981445312 405.018554688 256 352 256 c 0 - 329.391601562 256 308.61328125 263.819335938 292.209960938 276.896484375 c 1 - 189.723632812 212.841796875 l 1 - 190.98046875 207.158203125 192 197.821289062 192 192.000976562 c 0 - 192 186.1796875 190.98046875 176.842773438 189.723632812 171.159179688 c 1 - 292.209960938 107.10546875 l 1 - 308.61328125 120.180664062 329.391601562 128 352 128 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" s h a r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S h a r e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S h a r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S H A R E hyphen A L T -EndChar - -StartChar: share-alt-square -Encoding: 61921 61921 369 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 368 m 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 400 416 l 2 - 426.509765625 416 448 394.509765625 448 368 c 2 -304 152 m 0 - 289.438476562 152 276.176757812 146.439453125 266.216796875 137.329101562 c 1 - 198.258789062 178.103515625 l 2 - 199.219726562 181.87890625 200 188.104492188 200 192.000976562 c 0 - 200 195.896484375 199.219726562 202.122070312 198.258789062 205.897460938 c 2 - 266.216796875 246.671875 l 1 - 276.176757812 237.560546875 289.438476562 232 304 232 c 0 - 334.927734375 232 360 257.072265625 360 288 c 0 - 360 318.927734375 334.927734375 344 304 344 c 0 - 273.072265625 344 248 318.927734375 248 288 c 0 - 248 283.203125 248.60546875 278.546875 249.740234375 274.102539062 c 1 - 181.782226562 233.328125 l 1 - 171.823242188 242.439453125 158.561523438 248 144 248 c 0 - 113.072265625 248 88 222.927734375 88 192 c 0 - 88 161.072265625 113.072265625 136 144 136 c 0 - 158.561523438 136 171.823242188 141.560546875 181.783203125 150.670898438 c 1 - 249.741210938 109.896484375 l 2 - 248.780273438 106.129882812 248.000976562 99.919921875 248.000976562 96.0341796875 c 2 - 248.000976562 95.9990234375 l 2 - 248.000976562 65.0712890625 273.073242188 39.9990234375 304.000976562 39.9990234375 c 0 - 334.928710938 39.9990234375 360.000976562 65.0712890625 360.000976562 95.9990234375 c 0 - 360 126.927734375 334.927734375 152 304 152 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" s h a r e hyphen a l t hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" S h a r e hyphen A l t hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" S h a r e hyphen a l t hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" S H A R E hyphen A L T hyphen S Q U A R E -EndChar - -StartChar: bomb -Encoding: 61922 61922 370 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -440.5 359.5 m 1 - 388.5 307.5 l 1 - 415 281 l 2 - 424.400390625 271.599609375 424.400390625 256.400390625 415 247.099609375 c 2 - 397.599609375 229.700195312 l 1 - 409.400390625 203.599609375 416 174.599609375 416 144.099609375 c 0 - 416 29.2001953125 322.900390625 -63.900390625 208 -63.900390625 c 0 - 93.099609375 -63.900390625 0 29.099609375 0 144 c 0 - 0 258.900390625 93.099609375 352 208 352 c 0 - 238.5 352 267.5 345.400390625 293.599609375 333.599609375 c 1 - 311 351 l 2 - 320.400390625 360.400390625 335.599609375 360.400390625 344.900390625 351 c 2 - 371.400390625 324.5 l 1 - 423.400390625 376.5 l 1 - 440.5 359.5 l 1 -500 388 m 2 - 506.599609375 388 512 382.599609375 512 376 c 0 - 512 369.400390625 506.599609375 364 500 364 c 2 - 476 364 l 2 - 469.400390625 364 464 369.400390625 464 376 c 0 - 464 382.599609375 469.400390625 388 476 388 c 2 - 500 388 l 2 -440 448 m 0 - 446.599609375 448 452 442.599609375 452 436 c 2 - 452 412 l 2 - 452 405.400390625 446.599609375 400 440 400 c 0 - 433.400390625 400 428 405.400390625 428 412 c 2 - 428 436 l 2 - 428 442.599609375 433.400390625 448 440 448 c 0 -473.900390625 393 m 2 - 469.299804688 388.299804688 461.700195312 388.299804688 456.900390625 393 c 0 - 452.200195312 397.700195312 452.200195312 405.299804688 456.900390625 410 c 2 - 473.900390625 427 l 2 - 478.599609375 431.700195312 486.200195312 431.700195312 490.900390625 427 c 0 - 495.599609375 422.299804688 495.599609375 414.700195312 490.900390625 410 c 2 - 473.900390625 393 l 2 -406.099609375 393 m 2 - 389.099609375 410 l 2 - 384.400390625 414.700195312 384.400390625 422.299804688 389.099609375 427 c 0 - 393.799804688 431.700195312 401.400390625 431.700195312 406.099609375 427 c 2 - 423.099609375 410 l 2 - 427.799804688 405.299804688 427.799804688 397.700195312 423.099609375 393 c 0 - 418.400390625 388.299804688 410.799804688 388.299804688 406.099609375 393 c 2 -473.900390625 359 m 2 - 490.900390625 342 l 2 - 495.599609375 337.299804688 495.599609375 329.700195312 490.900390625 325 c 0 - 486.200195312 320.299804688 478.599609375 320.299804688 473.900390625 325 c 2 - 456.900390625 342 l 2 - 452.200195312 346.700195312 452.200195312 354.299804688 456.900390625 359 c 0 - 461.599609375 363.700195312 469.200195312 363.700195312 473.900390625 359 c 2 -112 176 m 0 - 112 211.299804688 140.700195312 240 176 240 c 0 - 184.799804688 240 192 247.200195312 192 256 c 0 - 192 264.799804688 184.799804688 272 176 272 c 0 - 123.099609375 272 80 228.900390625 80 176 c 0 - 80 167.200195312 87.2001953125 160 96 160 c 0 - 104.799804688 160 112 167.200195312 112 176 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" b o m b -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" B o m b -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" B O M B -EndChar - -StartChar: futbol -Encoding: 61923 61923 371 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504 192 m 0 - 504 55.033203125 392.966796875 -56 256 -56 c 0 - 119.033203125 -56 8 55.033203125 8 192 c 0 - 8 328.966796875 119.033203125 440 256 440 c 0 - 392.966796875 440 504 328.966796875 504 192 c 0 -456 192 m 2 - 455.997070312 192.282226562 l 1 - 429.932617188 169.541015625 l 1 - 367.25390625 228.041015625 l 1 - 383.708007812 312.396484375 l 1 - 418.010742188 309.32421875 l 1 - 393.122070312 343.540039062 358.006835938 369.413085938 317.301757812 382.46484375 c 1 - 330.953125 350.526367188 l 1 - 256 309 l 1 - 181.046875 350.525390625 l 1 - 194.698242188 382.463867188 l 1 - 154.067382812 369.435546875 118.91796875 343.59375 93.9892578125 309.323242188 c 1 - 128.553710938 312.396484375 l 1 - 144.74609375 228.041015625 l 1 - 82.068359375 169.541015625 l 1 - 56.00390625 192.282226562 l 1 - 56.0009765625 192 l 2 - 56.0009765625 148.985351562 69.498046875 108.047851562 94.47265625 74.0087890625 c 1 - 102.176757812 107.90625 l 1 - 187.315429688 97.458984375 l 1 - 223.616210938 19.6328125 l 1 - 193.713867188 1.8466796875 l 1 - 233.916015625 -11.275390625 278.00390625 -11.30078125 318.286132812 1.8466796875 c 1 - 288.383789062 19.6328125 l 1 - 324.684570312 97.458984375 l 1 - 409.823242188 107.90625 l 1 - 417.52734375 74.0087890625 l 1 - 442.502929688 108.047851562 456 148.985351562 456 192 c 2 -207.8984375 122.428710938 m 1 - 178.00390625 213.741210938 l 1 - 256 270.267578125 l 1 - 333.99609375 213.741210938 l 1 - 304.374023438 122.428710938 l 1 - 207.8984375 122.428710938 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" f u t b o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" F u t b o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" F U T B O L -EndChar - -StartChar: tty -Encoding: 61924 61924 372 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -5.3701171875 344.177734375 m 0 - 143.90234375 482.709960938 368.305664062 482.50390625 506.631835938 344.177734375 c 0 - 512.709960938 338.099609375 513.706054688 328.681640625 509.21484375 321.497070312 c 2 - 466.000976562 252.359375 l 2 - 463.028320312 247.602539062 456.063476562 243.7421875 450.455078125 243.7421875 c 0 - 448.505859375 243.7421875 445.455078125 244.330078125 443.64453125 245.053710938 c 2 - 357.22265625 279.623046875 l 2 - 350.861328125 282.16796875 345.698242188 289.794921875 345.698242188 296.646484375 c 0 - 345.698242188 297.150390625 345.739257812 297.966796875 345.7890625 298.46875 c 2 - 351.741210938 358 l 1 - 289.595703125 380.454101562 221.10546875 379.986328125 160.2578125 358 c 1 - 166.2109375 298.467773438 l 2 - 166.26171875 297.965820312 166.301757812 297.147460938 166.301757812 296.642578125 c 0 - 166.301757812 289.791015625 161.138671875 282.166015625 154.77734375 279.622070312 c 2 - 68.353515625 245.053710938 l 2 - 66.5439453125 244.330078125 63.494140625 243.7421875 61.544921875 243.7421875 c 0 - 55.935546875 243.7421875 48.970703125 247.602539062 45.998046875 252.359375 c 2 - 2.787109375 321.498046875 l 2 - 1.2490234375 323.958984375 0 328.3125 0 331.21484375 c 0 - 0 335.40625 2.40625 341.213867188 5.3701171875 344.177734375 c 0 -96 140 m 2 - 96 133.373046875 90.626953125 128 84 128 c 2 - 44 128 l 2 - 37.373046875 128 32 133.373046875 32 140 c 2 - 32 180 l 2 - 32 186.626953125 37.373046875 192 44 192 c 2 - 84 192 l 2 - 90.626953125 192 96 186.626953125 96 180 c 2 - 96 140 l 2 -192 140 m 2 - 192 133.373046875 186.626953125 128 180 128 c 2 - 140 128 l 2 - 133.373046875 128 128 133.373046875 128 140 c 2 - 128 180 l 2 - 128 186.626953125 133.373046875 192 140 192 c 2 - 180 192 l 2 - 186.626953125 192 192 186.626953125 192 180 c 2 - 192 140 l 2 -288 140 m 2 - 288 133.373046875 282.626953125 128 276 128 c 2 - 236 128 l 2 - 229.373046875 128 224 133.373046875 224 140 c 2 - 224 180 l 2 - 224 186.626953125 229.373046875 192 236 192 c 2 - 276 192 l 2 - 282.626953125 192 288 186.626953125 288 180 c 2 - 288 140 l 2 -384 140 m 2 - 384 133.373046875 378.626953125 128 372 128 c 2 - 332 128 l 2 - 325.373046875 128 320 133.373046875 320 140 c 2 - 320 180 l 2 - 320 186.626953125 325.373046875 192 332 192 c 2 - 372 192 l 2 - 378.626953125 192 384 186.626953125 384 180 c 2 - 384 140 l 2 -480 140 m 2 - 480 133.373046875 474.626953125 128 468 128 c 2 - 428 128 l 2 - 421.373046875 128 416 133.373046875 416 140 c 2 - 416 180 l 2 - 416 186.626953125 421.373046875 192 428 192 c 2 - 468 192 l 2 - 474.626953125 192 480 186.626953125 480 180 c 2 - 480 140 l 2 -144 44 m 2 - 144 37.373046875 138.626953125 32 132 32 c 2 - 92 32 l 2 - 85.373046875 32 80 37.373046875 80 44 c 2 - 80 84 l 2 - 80 90.626953125 85.373046875 96 92 96 c 2 - 132 96 l 2 - 138.626953125 96 144 90.626953125 144 84 c 2 - 144 44 l 2 -240 44 m 2 - 240 37.373046875 234.626953125 32 228 32 c 2 - 188 32 l 2 - 181.373046875 32 176 37.373046875 176 44 c 2 - 176 84 l 2 - 176 90.626953125 181.373046875 96 188 96 c 2 - 228 96 l 2 - 234.626953125 96 240 90.626953125 240 84 c 2 - 240 44 l 2 -336 44 m 2 - 336 37.373046875 330.626953125 32 324 32 c 2 - 284 32 l 2 - 277.373046875 32 272 37.373046875 272 44 c 2 - 272 84 l 2 - 272 90.626953125 277.373046875 96 284 96 c 2 - 324 96 l 2 - 330.626953125 96 336 90.626953125 336 84 c 2 - 336 44 l 2 -432 44 m 2 - 432 37.373046875 426.626953125 32 420 32 c 2 - 380 32 l 2 - 373.373046875 32 368 37.373046875 368 44 c 2 - 368 84 l 2 - 368 90.626953125 373.373046875 96 380 96 c 2 - 420 96 l 2 - 426.626953125 96 432 90.626953125 432 84 c 2 - 432 44 l 2 -96 -52 m 2 - 96 -58.626953125 90.626953125 -64 84 -64 c 2 - 44 -64 l 2 - 37.373046875 -64 32 -58.626953125 32 -52 c 2 - 32 -12 l 2 - 32 -5.373046875 37.373046875 0 44 0 c 2 - 84 0 l 2 - 90.626953125 0 96 -5.373046875 96 -12 c 2 - 96 -52 l 2 -384 -52 m 2 - 384 -58.626953125 378.626953125 -64 372 -64 c 2 - 140 -64 l 2 - 133.373046875 -64 128 -58.626953125 128 -52 c 2 - 128 -12 l 2 - 128 -5.373046875 133.373046875 0 140 0 c 2 - 372 0 l 2 - 378.626953125 0 384 -5.373046875 384 -12 c 2 - 384 -52 l 2 -480 -52 m 2 - 480 -58.626953125 474.626953125 -64 468 -64 c 2 - 428 -64 l 2 - 421.373046875 -64 416 -58.626953125 416 -52 c 2 - 416 -12 l 2 - 416 -5.373046875 421.373046875 0 428 0 c 2 - 468 0 l 2 - 474.626953125 0 480 -5.373046875 480 -12 c 2 - 480 -52 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" t t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" T t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" T T Y -EndChar - -StartChar: binoculars -Encoding: 61925 61925 373 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 400 m 2 - 416 352 l 1 - 320 352 l 1 - 320 400 l 2 - 320 408.83984375 327.16015625 416 336 416 c 2 - 400 416 l 2 - 408.83984375 416 416 408.83984375 416 400 c 2 -63.91015625 288.009765625 m 0 - 64.3896484375 305.629882812 78.2099609375 320 95.83984375 320 c 2 - 192 320 l 1 - 192 160 l 1 - 160 160 l 1 - 160 0 l 2 - 160 -17.669921875 145.669921875 -32 128 -32 c 2 - 32 -32 l 2 - 14.330078125 -32 0 -17.669921875 0 0 c 2 - 0 44 l 2 - 3.4599609375 173.780273438 61.400390625 194.16015625 63.91015625 288.009765625 c 0 -448.08984375 288.009765625 m 0 - 450.599609375 194.16015625 508.540039062 173.780273438 512 44 c 2 - 512 0 l 2 - 512 -17.669921875 497.669921875 -32 480 -32 c 2 - 384 -32 l 2 - 366.330078125 -32 352 -17.669921875 352 0 c 2 - 352 160 l 1 - 320 160 l 1 - 320 320 l 1 - 416.16015625 320 l 2 - 433.790039062 320 447.610351562 305.629882812 448.08984375 288.009765625 c 0 -176 416 m 2 - 184.83984375 416 192 408.83984375 192 400 c 2 - 192 352 l 1 - 96 352 l 1 - 96 400 l 2 - 96 408.83984375 103.16015625 416 112 416 c 2 - 176 416 l 2 -224 160 m 1 - 224 320 l 1 - 288 320 l 1 - 288 160 l 1 - 224 160 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" b i n o c u l a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" B i n o c u l a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" B I N O C U L A R S -EndChar - -StartChar: plug -Encoding: 61926 61926 374 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 304 m 1 - 256 416 l 2 - 256 433.672851562 270.327148438 448 288 448 c 0 - 305.672851562 448 320 433.672851562 320 416 c 2 - 320 304 l 1 - 256 304 l 1 -368 288 m 2 - 376.836914062 288 384 280.836914062 384 272 c 2 - 384 240 l 2 - 384 231.163085938 376.836914062 224 368 224 c 2 - 352 224 l 1 - 352 192 l 2 - 352 114.59375 297.03125 50.029296875 224 35.2041015625 c 1 - 224 -64 l 1 - 160 -64 l 1 - 160 35.2041015625 l 1 - 86.96875 50.029296875 32 114.59375 32 192 c 2 - 32 224 l 1 - 16 224 l 2 - 7.1630859375 224 0 231.163085938 0 240 c 2 - 0 272 l 2 - 0 280.836914062 7.1630859375 288 16 288 c 2 - 368 288 l 2 -128 304 m 1 - 64 304 l 1 - 64 416 l 2 - 64 433.672851562 78.3271484375 448 96 448 c 0 - 113.672851562 448 128 433.672851562 128 416 c 2 - 128 304 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" p l u g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" P l u g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" P L U G -EndChar - -StartChar: newspaper -Encoding: 61930 61930 375 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -552 384 m 2 - 565.254882812 384 576 373.254882812 576 360 c 2 - 576 48 l 2 - 576 21.490234375 554.509765625 0 528 0 c 2 - 56 0 l 2 - 25.072265625 0 0 25.072265625 0 56 c 2 - 0 328 l 2 - 0 341.254882812 10.7451171875 352 24 352 c 2 - 64 352 l 1 - 64 360 l 2 - 64 373.254882812 74.7451171875 384 88 384 c 2 - 552 384 l 2 -56 48 m 0 - 60.416015625 48 64 51.583984375 64 56 c 2 - 64 304 l 1 - 48 304 l 1 - 48 56 l 2 - 48 51.583984375 51.583984375 48 56 48 c 0 -292 64 m 2 - 298.626953125 64 304 69.373046875 304 76 c 2 - 304 84 l 2 - 304 90.626953125 298.626953125 96 292 96 c 2 - 140 96 l 2 - 133.373046875 96 128 90.626953125 128 84 c 2 - 128 76 l 2 - 128 69.373046875 133.373046875 64 140 64 c 2 - 292 64 l 2 -500 64 m 2 - 506.626953125 64 512 69.373046875 512 76 c 2 - 512 84 l 2 - 512 90.626953125 506.626953125 96 500 96 c 2 - 348 96 l 2 - 341.373046875 96 336 90.626953125 336 84 c 2 - 336 76 l 2 - 336 69.373046875 341.373046875 64 348 64 c 2 - 500 64 l 2 -292 160 m 2 - 298.626953125 160 304 165.373046875 304 172 c 2 - 304 180 l 2 - 304 186.626953125 298.626953125 192 292 192 c 2 - 140 192 l 2 - 133.373046875 192 128 186.626953125 128 180 c 2 - 128 172 l 2 - 128 165.373046875 133.373046875 160 140 160 c 2 - 292 160 l 2 -500 160 m 2 - 506.626953125 160 512 165.373046875 512 172 c 2 - 512 180 l 2 - 512 186.626953125 506.626953125 192 500 192 c 2 - 348 192 l 2 - 341.373046875 192 336 186.626953125 336 180 c 2 - 336 172 l 2 - 336 165.373046875 341.373046875 160 348 160 c 2 - 500 160 l 2 -500 256 m 2 - 506.626953125 256 512 261.373046875 512 268 c 2 - 512 308 l 2 - 512 314.626953125 506.626953125 320 500 320 c 2 - 140 320 l 2 - 133.373046875 320 128 314.626953125 128 308 c 2 - 128 268 l 2 - 128 261.373046875 133.373046875 256 140 256 c 2 - 500 256 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" n e w s p a p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" N e w s p a p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" N E W S P A P E R -EndChar - -StartChar: wifi -Encoding: 61931 61931 376 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -634.91015625 293.120117188 m 0 - 641.5703125 286.959960938 641.700195312 276.530273438 635.26953125 270.139648438 c 2 - 601.030273438 236.169921875 l 2 - 594.889648438 230.080078125 585.009765625 229.940429688 578.629882812 235.790039062 c 0 - 432.6796875 369.5 207.299804688 369.469726562 61.3798828125 235.790039062 c 0 - 55 229.940429688 45.1201171875 230.0703125 38.98046875 236.169921875 c 2 - 4.740234375 270.139648438 l 2 - -1.7001953125 276.530273438 -1.5703125 286.959960938 5.08984375 293.120117188 c 0 - 182.190429688 456.9296875 457.740234375 456.990234375 634.91015625 293.120117188 c 0 -320 96 m 0 - 355.349609375 96 384 67.349609375 384 32 c 0 - 384 -3.349609375 355.349609375 -32 320 -32 c 0 - 284.650390625 -32 256 -3.349609375 256 32 c 0 - 256 67.349609375 284.650390625 96 320 96 c 0 -522.669921875 179.58984375 m 0 - 529.559570312 173.5 529.790039062 162.900390625 523.23046875 156.440429688 c 2 - 488.790039062 122.450195312 l 2 - 482.790039062 116.51953125 473.129882812 116.129882812 466.740234375 121.650390625 c 0 - 382.990234375 194.059570312 257.200195312 194.219726562 173.25 121.650390625 c 0 - 166.860351562 116.129882812 157.200195312 116.530273438 151.200195312 122.450195312 c 2 - 116.759765625 156.440429688 l 2 - 110.209960938 162.900390625 110.4296875 173.490234375 117.330078125 179.58984375 c 0 - 232.459960938 281.41015625 407.41015625 281.51953125 522.669921875 179.58984375 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" w i f i -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" W i f i -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" W I F I -EndChar - -StartChar: calculator -Encoding: 61932 61932 377 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 448 m 2 - 425.599609375 448 448 425.599609375 448 400 c 2 - 448 -16 l 2 - 448 -41.599609375 425.599609375 -64 400 -64 c 2 - 48 -64 l 2 - 22.400390625 -64 0 -41.599609375 0 -16 c 2 - 0 400 l 2 - 0 425.599609375 22.400390625 448 48 448 c 2 - 400 448 l 2 -128 12.7998046875 m 2 - 128 51.2001953125 l 2 - 128 57.599609375 121.599609375 64 115.200195312 64 c 2 - 76.7998046875 64 l 2 - 70.400390625 64 64 57.599609375 64 51.2001953125 c 2 - 64 12.7998046875 l 2 - 64 6.400390625 70.400390625 0 76.7998046875 0 c 2 - 115.200195312 0 l 2 - 121.599609375 0 128 6.400390625 128 12.7998046875 c 2 -128 140.799804688 m 2 - 128 179.200195312 l 2 - 128 185.599609375 121.599609375 192 115.200195312 192 c 2 - 76.7998046875 192 l 2 - 70.400390625 192 64 185.599609375 64 179.200195312 c 2 - 64 140.799804688 l 2 - 64 134.400390625 70.400390625 128 76.7998046875 128 c 2 - 115.200195312 128 l 2 - 121.599609375 128 128 134.400390625 128 140.799804688 c 2 -256 12.7998046875 m 2 - 256 51.2001953125 l 2 - 256 57.599609375 249.599609375 64 243.200195312 64 c 2 - 204.799804688 64 l 2 - 198.400390625 64 192 57.599609375 192 51.2001953125 c 2 - 192 12.7998046875 l 2 - 192 6.400390625 198.400390625 0 204.799804688 0 c 2 - 243.200195312 0 l 2 - 249.599609375 0 256 6.400390625 256 12.7998046875 c 2 -256 140.799804688 m 2 - 256 179.200195312 l 2 - 256 185.599609375 249.599609375 192 243.200195312 192 c 2 - 204.799804688 192 l 2 - 198.400390625 192 192 185.599609375 192 179.200195312 c 2 - 192 140.799804688 l 2 - 192 134.400390625 198.400390625 128 204.799804688 128 c 2 - 243.200195312 128 l 2 - 249.599609375 128 256 134.400390625 256 140.799804688 c 2 -384 12.7998046875 m 2 - 384 179.200195312 l 2 - 384 185.599609375 377.599609375 192 371.200195312 192 c 2 - 332.799804688 192 l 2 - 326.400390625 192 320 185.599609375 320 179.200195312 c 2 - 320 12.7998046875 l 2 - 320 6.400390625 326.400390625 0 332.799804688 0 c 2 - 371.200195312 0 l 2 - 377.599609375 0 384 6.400390625 384 12.7998046875 c 2 -384 268.799804688 m 2 - 384 371.200195312 l 2 - 384 377.599609375 377.599609375 384 371.200195312 384 c 2 - 76.7998046875 384 l 2 - 70.400390625 384 64 377.599609375 64 371.200195312 c 2 - 64 268.799804688 l 2 - 64 262.400390625 70.400390625 256 76.7998046875 256 c 2 - 371.200195312 256 l 2 - 377.599609375 256 384 262.400390625 384 268.799804688 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" c a l c u l a t o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C a l c u l a t o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C A L C U L A T O R -EndChar - -StartChar: bell-slash -Encoding: 61942 61942 378 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -633.8203125 -10.099609375 m 2 - 640.799804688 -15.5302734375 642.049804688 -25.580078125 636.629882812 -32.5498046875 c 2 - 616.990234375 -57.8203125 l 2 - 611.559570312 -64.7998046875 601.509765625 -66.0595703125 594.530273438 -60.6298828125 c 2 - 6.1796875 394.099609375 l 2 - -0.7998046875 399.530273438 -2.0498046875 409.580078125 3.3701171875 416.549804688 c 2 - 23.009765625 441.8203125 l 2 - 28.4296875 448.799804688 38.490234375 450.049804688 45.4697265625 444.629882812 c 2 - 190.4296875 332.58984375 l 1 - 213.360351562 364.08984375 247.690429688 386.780273438 288.01953125 395.16015625 c 1 - 288.01953125 416 l 2 - 288.01953125 433.669921875 302.33984375 448 320 448 c 0 - 337.66015625 448 351.98046875 433.669921875 351.98046875 416 c 2 - 351.98046875 395.169921875 l 1 - 425.440429688 379.91015625 479.919921875 317.709960938 479.919921875 240.009765625 c 0 - 479.919921875 137.709960938 516.0703125 106.48046875 535.389648438 85.7197265625 c 0 - 541.389648438 79.2802734375 544.049804688 71.5595703125 544 64.009765625 c 0 - 544 62.6103515625 543.389648438 61.330078125 543.200195312 59.9501953125 c 2 - 633.8203125 -10.099609375 l 2 -157.23046875 196.459960938 m 1 - 370.01953125 32 l 1 - 128.099609375 32 l 2 - 108.98046875 32 96.1103515625 47.599609375 96 64 c 0 - 95.9501953125 71.5498046875 98.6103515625 79.259765625 104.610351562 85.7099609375 c 0 - 120.8203125 103.129882812 148.620117188 128.5 157.23046875 196.459960938 c 1 -320 -64 m 0 - 284.6796875 -64 256.030273438 -35.349609375 256.030273438 0 c 1 - 383.969726562 0 l 1 - 383.969726562 -35.349609375 355.3203125 -64 320 -64 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" b e l l hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" B e l l hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" B E L L hyphen S L A S H -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" B e l l hyphen S l a s h -EndChar - -StartChar: trash -Encoding: 61944 61944 379 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 16 352 l 2 - 7.16796875 352 0 359.16796875 0 368 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 136 416 l 1 - 145.400390625 434.700195312 l 2 - 148.990234375 442.041992188 158.536132812 448 166.708984375 448 c 2 - 166.799804688 448 l 1 - 281.099609375 448 l 1 - 281.1171875 448 l 2 - 289.319335938 448 298.943359375 442.041992188 302.599609375 434.700195312 c 2 - 312 416 l 1 - 432 416 l 2 -53.2001953125 -19 m 2 - 32 320 l 1 - 416 320 l 1 - 394.799804688 -19 l 2 - 393.245117188 -43.8369140625 371.78515625 -63.9970703125 346.900390625 -64 c 2 - 101.099609375 -64 l 2 - 76.21484375 -63.9970703125 54.7548828125 -43.8369140625 53.2001953125 -19 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" t r a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" T r a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" T R A S H -EndChar - -StartChar: copyright -Encoding: 61945 61945 380 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 392.966796875 440 504 328.966796875 504 192 c 0 - 504 55.033203125 392.966796875 -56 256 -56 c 0 - 119.033203125 -56 8 55.033203125 8 192 c 0 - 8 328.966796875 119.033203125 440 256 440 c 0 -373.133789062 93.2470703125 m 0 - 374.715820312 95.103515625 376 98.5908203125 376 101.030273438 c 0 - 376 103.193359375 374.963867188 106.366210938 373.686523438 108.11328125 c 2 - 349.139648438 141.684570312 l 2 - 344.69140625 147.771484375 335.763671875 148.302734375 330.631835938 142.73828125 c 0 - 330.368164062 142.451171875 303.78515625 114.11328125 265.087890625 114.11328125 c 0 - 216.325195312 114.11328125 190.810546875 154.203125 190.810546875 193.8046875 c 0 - 190.810546875 236.311523438 218.611328125 269.88671875 264.7265625 269.88671875 c 0 - 300.078125 269.88671875 326.374023438 246.220703125 326.607421875 246.006835938 c 0 - 332.067382812 240.951171875 340.791992188 242.03515625 344.840820312 248.301757812 c 2 - 367.220703125 282.95703125 l 2 - 368.280273438 284.59765625 369.140625 287.514648438 369.140625 289.467773438 c 0 - 369.140625 292.045898438 367.725585938 295.6796875 365.983398438 297.580078125 c 0 - 364.526367188 299.168945312 329.517578125 336.484375 262.560546875 336.484375 c 0 - 180.802734375 336.484375 118.798828125 274.385742188 118.798828125 193.083007812 c 0 - 118.798828125 110.776367188 178.590820312 47.515625 263.283203125 47.515625 c 0 - 333.358398438 47.515625 371.541992188 91.3798828125 373.133789062 93.2470703125 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" c o p y r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" C o p y r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" C O P Y R I G H T -EndChar - -StartChar: at -Encoding: 61946 61946 381 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 394.0234375 440 504 352.346679688 504 216 c 0 - 504 140.202148438 462.609375 68.58984375 353.701171875 68.58984375 c 0 - 323.603515625 68.58984375 292.512695312 68.5888671875 282.991210938 102.693359375 c 1 - 265.369140625 79.9970703125 234.984375 64.3603515625 208 64.3603515625 c 0 - 148.78515625 64.3603515625 112 104.926757812 112 170.23046875 c 0 - 112 259.456054688 175.250976562 321.690429688 249.831054688 321.690429688 c 0 - 269.353515625 321.690429688 295.10546875 317.81640625 309.801757812 299.915039062 c 1 - 309.811523438 300.006835938 l 2 - 310.563476562 306.626953125 316.581054688 312 323.244140625 312 c 1 - 323.244140625 312 l 1 - 368.224609375 312 l 2 - 383.307617188 312 394.653320312 298.25 391.787109375 283.44140625 c 2 - 368.353515625 162.331054688 l 2 - 364.919921875 145.1640625 364.481445312 132.760742188 381.830078125 132.306640625 c 0 - 418.907226562 136.2578125 440 177.213867188 440 216 c 0 - 440 318.380859375 356.138671875 376 256 376 c 0 - 154.541992188 376 72 293.458007812 72 192 c 0 - 72 90.5419921875 154.541992188 8 256 8 c 0 - 291.314453125 8 325.919921875 18.2431640625 355.41015625 37.1572265625 c 0 - 365.603515625 43.6953125 379.112304688 41.3994140625 386.783203125 32.0283203125 c 2 - 396.959960938 19.5947265625 l 2 - 406.033203125 8.5107421875 403.413085938 -7.9619140625 391.408203125 -15.77734375 c 0 - 351.341796875 -41.8603515625 304.154296875 -56 256 -56 c 0 - 118.918945312 -56 8 54.94140625 8 192 c 0 - 8 329.081054688 118.94140625 440 256 440 c 0 -234.3203125 135.5703125 m 0 - 258.606445312 135.5703125 292.481445312 163.239257812 292.481445312 208.299804688 c 0 - 292.481445312 233.829101562 279.171875 249.0703125 256.879882812 249.0703125 c 0 - 229.029296875 249.0703125 198.25 221.333984375 198.25 176.340820312 c 0 - 198.25 151.193359375 212.071289062 135.5703125 234.3203125 135.5703125 c 0 -EndSplineSet -Validated: 524325 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" A t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" A T -EndChar - -StartChar: eye-dropper -Encoding: 61947 61947 382 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -50.75 114.75 m 2 - 177.379882812 241.360351562 l 1 - 305.379882812 113.360351562 l 1 - 178.740234375 -13.259765625 l 2 - 166.740234375 -25.259765625 150.459960938 -32 133.490234375 -32 c 2 - 88 -32 l 1 - 32 -64 l 1 - 0 -32 l 1 - 32 24 l 1 - 32 69.490234375 l 2 - 32 86.4697265625 38.75 102.75 50.75 114.75 c 2 -483.879882812 419.879882812 m 0 - 521.379882812 382.389648438 521.379882812 321.610351562 483.870117188 284.129882812 c 2 - 406.780273438 207.040039062 l 1 - 419.879882812 193.940429688 l 2 - 429.25 184.5703125 429.25 169.370117188 419.879882812 160 c 2 - 378.91015625 119.040039062 l 2 - 369.620117188 109.73046875 354.41015625 109.599609375 344.969726562 119.040039062 c 2 - 183.030273438 280.98046875 l 2 - 173.66015625 290.349609375 173.66015625 305.549804688 183.030273438 314.919921875 c 2 - 224 355.889648438 l 2 - 233.290039062 365.200195312 248.5 365.330078125 257.940429688 355.889648438 c 2 - 271.040039062 342.790039062 l 1 - 348.129882812 419.879882812 l 2 - 385.599609375 457.379882812 446.41015625 457.379882812 483.879882812 419.879882812 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" e y e hyphen d r o p p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" E y e hyphen D r o p p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" E y e hyphen d r o p p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" E Y E hyphen D R O P P E R -EndChar - -StartChar: paint-brush -Encoding: 61948 61948 383 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -167.01953125 138.66015625 m 1 - 255.030273438 65.3203125 l 2 - 255.349609375 62.26953125 256 59.2998046875 256 56.1904296875 c 0 - 256 -20.23046875 203.860351562 -64 128 -64 c 0 - 37.9296875 -64 0 8.3798828125 -0.009765625 90.73046875 c 1 - 9.7802734375 84.0498046875 44.1298828125 56.3798828125 55.240234375 56.3798828125 c 0 - 61.830078125 56.3798828125 67.48046875 60.150390625 69.830078125 66.3603515625 c 0 - 90.490234375 120.799804688 126.900390625 136.080078125 167.01953125 138.66015625 c 1 -457.889648438 448 m 0 - 486 448 512 427.360351562 512 398.450195312 c 0 - 512 382.309570312 505.48046875 366.809570312 498.099609375 352.459960938 c 0 - 385.049804688 141.469726562 349.049804688 96 286.940429688 96 c 0 - 279.190429688 96 271.759765625 97.23046875 264.549804688 99.0302734375 c 2 - 200.73046875 152.209960938 l 1 - 195.25 164.150390625 192 177.209960938 192 190.91015625 c 0 - 192 244.66015625 213.26953125 248.950195312 417.6796875 431.549804688 c 0 - 428.51953125 441.290039062 442.73046875 448 457.889648438 448 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" p a i n t hyphen b r u s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" P a i n t hyphen B r u s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" P a i n t hyphen b r u s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" P A I N T hyphen B R U S H -EndChar - -StartChar: birthday-cake -Encoding: 61949 61949 384 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 64 m 1 - 419.98046875 64 416.740234375 96 373.5 96 c 0 - 330.0703125 96 326.674804688 64 298.75 64 c 0 - 271.0546875 64 267.295898438 96 224 96 c 0 - 181.158203125 96 176.782226562 64 149.5 64 c 0 - 121.3515625 64 118.297851562 96 74.75 96 c 0 - 31.203125 96 28.0966796875 64 0 64 c 1 - 0 144 l 2 - 0 170.5 21.5 192 48 192 c 2 - 64 192 l 1 - 64 336 l 1 - 128 336 l 1 - 128 192 l 1 - 192 192 l 1 - 192 336 l 1 - 256 336 l 1 - 256 192 l 1 - 320 192 l 1 - 320 336 l 1 - 384 336 l 1 - 384 192 l 1 - 400 192 l 2 - 426.5 192 448 170.5 448 144 c 2 - 448 64 l 1 -448 -64 m 1 - 0 -64 l 1 - 0 32 l 1 - 43.3564453125 32 46.7666015625 64 74.75 64 c 0 - 102.701171875 64 106.002929688 32 149.5 32 c 0 - 192.342773438 32 196.716796875 64 224 64 c 0 - 252.1484375 64 255.201171875 32 298.75 32 c 0 - 342.107421875 32 345.516601562 64 373.5 64 c 0 - 400.98828125 64 404.751953125 32 448 32 c 1 - 448 -64 l 1 -96 352 m 0 - 78.25 352 64 366.25 64 384 c 0 - 64 415 96 407 96 448 c 1 - 108 448 128 418.5 128 392 c 0 - 128 365.5 113.75 352 96 352 c 0 -224 352 m 0 - 206.25 352 192 366.25 192 384 c 0 - 192 415 224 407 224 448 c 1 - 236 448 256 418.5 256 392 c 0 - 256 365.5 241.75 352 224 352 c 0 -352 352 m 0 - 334.25 352 320 366.25 320 384 c 0 - 320 415 352 407 352 448 c 1 - 364 448 384 418.5 384 392 c 0 - 384 365.5 369.75 352 352 352 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" b i r t h d a y hyphen c a k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B i r t h d a y hyphen C a k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B i r t h d a y hyphen c a k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B I R T H D A Y hyphen C A K E -EndChar - -StartChar: chart-area -Encoding: 61950 61950 385 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -500 64 m 2 - 506.599609375 64 512 58.599609375 512 52 c 2 - 512 12 l 2 - 512 5.400390625 506.599609375 0 500 0 c 2 - 12 0 l 2 - 5.400390625 0 0 5.400390625 0 12 c 2 - 0 372 l 2 - 0 378.599609375 5.400390625 384 12 384 c 2 - 52 384 l 2 - 58.599609375 384 64 378.599609375 64 372 c 2 - 64 64 l 1 - 500 64 l 2 -372.700195312 288.5 m 2 - 378.700195312 292.5 386.900390625 290.299804688 390.099609375 283.799804688 c 2 - 480 96 l 1 - 96 96 l 1 - 96 200 l 1 - 182.799804688 344.700195312 l 2 - 187.200195312 352 197.599609375 352.5 202.700195312 345.700195312 c 2 - 288 232 l 1 - 372.700195312 288.5 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" c h a r t hyphen a r e a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C h a r t hyphen A r e a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C h a r t hyphen a r e a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C H A R T hyphen A R E A -EndChar - -StartChar: chart-pie -Encoding: 61952 61952 386 -Width: 544 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -527.790039062 160 m 2 - 537.33984375 160 545.190429688 151.610351562 543.849609375 142.150390625 c 0 - 536.040039062 86.900390625 509.419921875 37.75 470.719726562 1.2900390625 c 0 - 464.509765625 -4.5595703125 454.5703125 -4.0703125 448.530273438 1.9697265625 c 2 - 290.5 160 l 1 - 527.790039062 160 l 2 -511.959960938 224.799804688 m 0 - 512.58984375 215.6796875 504.91015625 208 495.76953125 208 c 2 - 272 208 l 1 - 272 431.759765625 l 2 - 272 440.900390625 279.6796875 448.58984375 288.799804688 447.959960938 c 0 - 408.259765625 439.719726562 503.719726562 344.259765625 511.959960938 224.799804688 c 0 -224 160 m 1 - 379.860351562 4.1298828125 l 2 - 386.709960938 -2.7197265625 386.190429688 -14.349609375 378.290039062 -19.9501953125 c 0 - 340 -47.1103515625 293.4296875 -63.349609375 243.030273438 -63.98046875 c 0 - 114.830078125 -65.58984375 4.5 39.490234375 0.1396484375 167.629882812 c 0 - -4.099609375 292.400390625 86.990234375 396.509765625 206.16015625 413.349609375 c 0 - 215.610351562 414.690429688 224 406.83984375 224 397.290039062 c 2 - 224 160 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" c h a r t hyphen p i e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" C h a r t hyphen P i e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" C h a r t hyphen p i e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" C H A R T hyphen P I E -EndChar - -StartChar: chart-line -Encoding: 61953 61953 387 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 64 m 2 - 504.83984375 64 512 56.83984375 512 48 c 2 - 512 16 l 2 - 512 7.16015625 504.83984375 0 496 0 c 2 - 32 0 l 2 - 14.330078125 0 0 14.330078125 0 32 c 2 - 0 368 l 2 - 0 376.83984375 7.16015625 384 16 384 c 2 - 48 384 l 2 - 56.83984375 384 64 376.83984375 64 368 c 2 - 64 64 l 1 - 496 64 l 2 -464 352 m 2 - 472.83984375 352 480 344.83984375 479.990234375 336 c 2 - 479.990234375 217.950195312 l 2 - 479.990234375 196.5703125 454.139648438 185.860351562 439.01953125 200.98046875 c 2 - 406.620117188 233.379882812 l 1 - 310.620117188 137.379882812 l 2 - 298.129882812 124.879882812 277.870117188 124.879882812 265.370117188 137.379882812 c 2 - 192 210.75 l 1 - 145.940429688 164.6796875 l 2 - 139.690429688 158.4296875 129.559570312 158.4296875 123.309570312 164.6796875 c 2 - 100.690429688 187.299804688 l 2 - 94.4404296875 193.549804688 94.4404296875 203.6796875 100.690429688 209.9296875 c 2 - 169.379882812 278.620117188 l 2 - 181.870117188 291.120117188 202.129882812 291.120117188 214.629882812 278.620117188 c 2 - 288 205.25 l 1 - 361.370117188 278.629882812 l 1 - 328.969726562 311.030273438 l 2 - 313.849609375 326.150390625 324.559570312 352 345.940429688 352 c 2 - 464 352 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" c h a r t hyphen l i n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" C h a r t hyphen L i n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" C h a r t hyphen l i n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" C H A R T hyphen L I N E -EndChar - -StartChar: toggle-off -Encoding: 61956 61956 388 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 384 m 2 - 490.0390625 384 576 298.0390625 576 192 c 0 - 576 85.9609375 490.0390625 0 384 0 c 2 - 192 0 l 2 - 85.9609375 0 0 85.9609375 0 192 c 0 - 0 298.0390625 85.9609375 384 192 384 c 2 - 384 384 l 2 -64 192 m 0 - 64 121.249023438 121.258789062 64 192 64 c 0 - 262.750976562 64 320 121.258789062 320 192 c 0 - 320 262.750976562 262.741210938 320 192 320 c 0 - 121.249023438 320 64 262.741210938 64 192 c 0 -384 64 m 2 - 454.750976562 64 512 121.259765625 512 192 c 0 - 512 262.750976562 454.741210938 320 384 320 c 2 - 335.094726562 320 l 1 - 400.331054688 247.120117188 400.311523438 136.858398438 335.094726562 64 c 1 - 384 64 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" t o g g l e hyphen o f f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T o g g l e hyphen O f f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T o g g l e hyphen o f f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T O G G L E hyphen O F F -EndChar - -StartChar: toggle-on -Encoding: 61957 61957 389 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 384 m 2 - 490 384 576 298 576 192 c 0 - 576 86 490 0 384 0 c 2 - 192 0 l 2 - 86 0 0 86 0 192 c 0 - 0 298 86 384 192 384 c 2 - 384 384 l 2 -384 64 m 0 - 454.700195312 64 512 121.200195312 512 192 c 0 - 512 262.700195312 454.799804688 320 384 320 c 0 - 313.299804688 320 256 262.799804688 256 192 c 0 - 256 121.299804688 313.200195312 64 384 64 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" t o g g l e hyphen o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" T o g g l e hyphen O n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" T o g g l e hyphen o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" T O G G L E hyphen O N -EndChar - -StartChar: bicycle -Encoding: 61958 61958 390 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512.508789062 255.999023438 m 0 - 583.458984375 255.72265625 641.071289062 196.944335938 639.985351562 126.002929688 c 0 - 638.911132812 55.8095703125 581.3359375 -0.677734375 510.73046875 0.0068359375 c 0 - 441.900390625 0.6748046875 384.146484375 58.892578125 384.000976562 127.725585938 c 0 - 383.922851562 165.08203125 399.852539062 198.71484375 425.307617188 222.163085938 c 1 - 410.370117188 246.23046875 l 1 - 324.408203125 107.3671875 l 2 - 320.5234375 101.092773438 311.381835938 96 304.001953125 96 c 2 - 251.96875 96 l 1 - 237.759765625 40.79296875 187.643554688 0 128.001953125 0 c 0 - 57.0546875 0 -0.4130859375 57.720703125 0.001953125 128.763671875 c 0 - 0.412109375 198.98828125 58.09375 256.169921875 128.319335938 256 c 0 - 143.407226562 255.962890625 157.877929688 253.309570312 171.310546875 248.48046875 c 1 - 200.727539062 296 l 1 - 152.001953125 296 l 2 - 138.8828125 296 128.239257812 306.518554688 128.006835938 319.563476562 c 0 - 127.765625 333.000976562 139.1015625 344 152.54296875 344 c 2 - 240.001953125 344 l 2 - 248.838867188 344 256.001953125 336.836914062 256.001953125 328 c 2 - 256.001953125 312 l 1 - 369.545898438 312 l 1 - 354.650390625 336 l 1 - 304.000976562 336 l 2 - 295.1640625 336 288.000976562 343.163085938 288.000976562 352 c 2 - 288.000976562 368 l 2 - 288.000976562 376.836914062 295.1640625 384 304.000976562 384 c 2 - 368.000976562 384 l 1 - 368.001953125 384 l 2 - 375.37109375 384 384.506835938 378.91796875 388.392578125 372.657226562 c 2 - 466.073242188 247.50390625 l 1 - 480.478515625 253.043945312 496.135742188 256.063476562 512.508789062 255.999023438 c 0 -186.75 182.227539062 m 1 - 163.0859375 144 l 1 - 206.391601562 144 l 1 - 203.422851562 158.567382812 196.4765625 171.69921875 186.75 182.227539062 c 1 -128.001953125 48 m 0 - 160.740234375 48 188.931640625 67.775390625 201.301757812 96 c 1 - 120.001953125 96 l 2 - 101.212890625 96 89.71484375 116.672851562 99.595703125 132.631835938 c 2 - 145.100585938 206.140625 l 1 - 139.587890625 207.346679688 133.87109375 208 128.001953125 208 c 0 - 83.8896484375 208 48.001953125 172.112304688 48.001953125 128 c 0 - 48.001953125 83.8876953125 83.8896484375 48 128.001953125 48 c 0 -290.631835938 144 m 1 - 364.91796875 264 l 1 - 237.37109375 264 l 1 - 212.625 224.026367188 l 1 - 235.452148438 203.893554688 251.047851562 175.755859375 255.0078125 144 c 1 - 290.631835938 144 l 1 -507.689453125 48.1142578125 m 0 - 553.75 45.6826171875 592.000976562 82.458984375 592.001953125 127.999023438 c 0 - 592.001953125 172.111328125 556.114257812 207.999023438 512.001953125 207.999023438 c 2 - 511.962890625 207.999023438 l 2 - 506.40625 207.999023438 497.52734375 206.879882812 492.143554688 205.501953125 c 1 - 536.612304688 133.859375 l 2 - 541.2734375 126.350585938 538.963867188 116.487304688 531.456054688 111.827148438 c 2 - 517.862304688 103.389648438 l 2 - 510.353515625 98.73046875 500.490234375 101.038085938 495.830078125 108.545898438 c 2 - 451.397460938 180.131835938 l 1 - 438.6953125 165.38671875 431.25 145.990234375 432.061523438 124.869140625 c 0 - 433.639648438 83.8056640625 466.653320312 50.279296875 507.689453125 48.1142578125 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" b i c y c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" B I C Y C L E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" B i c y c l e -EndChar - -StartChar: bus -Encoding: 61959 61959 391 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -488 320 m 2 - 501.25 320 512 309.259765625 512 296 c 2 - 512 216 l 2 - 512 202.75 501.25 192 488 192 c 2 - 480 192 l 1 - 480 25.599609375 l 2 - 480 12.7998046875 470.400390625 0 454.400390625 0 c 2 - 448 0 l 1 - 448 -32 l 2 - 448 -49.669921875 433.669921875 -64 416 -64 c 2 - 384 -64 l 2 - 366.330078125 -64 352 -49.669921875 352 -32 c 2 - 352 0 l 1 - 160 0 l 1 - 160 -32 l 2 - 160 -49.669921875 145.669921875 -64 128 -64 c 2 - 96 -64 l 2 - 78.330078125 -64 64 -49.669921875 64 -32 c 2 - 64 0 l 1 - 46.330078125 0 32 14.330078125 32 32 c 2 - 32 192 l 1 - 24 192 l 2 - 10.75 192 0 202.75 0 216 c 2 - 0 296 l 2 - 0 309.259765625 10.75 320 24 320 c 2 - 32 320 l 1 - 32 368 l 2 - 32 412.799804688 131.200195312 448 256 448 c 0 - 380.799804688 448 480 412.799804688 480 368 c 2 - 480 320 l 1 - 488 320 l 2 -112 48 m 0 - 129.669921875 48 144 62.330078125 144 80 c 0 - 144 97.669921875 129.669921875 112 112 112 c 0 - 94.330078125 112 80 97.669921875 80 80 c 0 - 80 62.330078125 94.330078125 48 112 48 c 0 -128 160 m 2 - 384 160 l 2 - 401.669921875 160 416 174.330078125 416 192 c 2 - 416 320 l 2 - 416 337.669921875 401.669921875 352 384 352 c 2 - 128 352 l 2 - 110.330078125 352 96 337.669921875 96 320 c 2 - 96 192 l 2 - 96 174.330078125 110.330078125 160 128 160 c 2 -400 48 m 0 - 417.669921875 48 432 62.330078125 432 80 c 0 - 432 97.669921875 417.669921875 112 400 112 c 0 - 382.330078125 112 368 97.669921875 368 80 c 0 - 368 62.330078125 382.330078125 48 400 48 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" b u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" B u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" B U S -EndChar - -StartChar: closed-captioning -Encoding: 61962 61962 392 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 384 m 2 - 490.5 384 512 362.5 512 336 c 2 - 512 48 l 2 - 512 21.5 490.5 0 464 0 c 2 - 48 0 l 2 - 21.5 0 0 21.5 0 48 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 464 384 l 2 -218.099609375 160.299804688 m 0 - 176.900390625 122.400390625 125.900390625 144.900390625 125.799804688 192.900390625 c 0 - 125.799804688 239 179.599609375 256.099609375 220.400390625 224.099609375 c 0 - 223.299804688 221.799804688 227.599609375 222.700195312 229.5 225.799804688 c 2 - 247 256.299804688 l 2 - 248.5 258.799804688 248.099609375 260 246 262 c 0 - 195.200195312 311.400390625 73.5 289.200195312 73.5 191.900390625 c 0 - 73.5 91.900390625 192.700195312 67.2001953125 246.299804688 124 c 0 - 248.299804688 126.099609375 248.5 129.299804688 246.799804688 131.700195312 c 2 - 227.299804688 159.400390625 l 2 - 225.200195312 162.400390625 220.900390625 162.799804688 218.099609375 160.299804688 c 0 -408.5 160.299804688 m 0 - 367.299804688 122.400390625 316.299804688 144.900390625 316.299804688 192.900390625 c 0 - 316.299804688 239 370.099609375 256.099609375 410.900390625 224.099609375 c 0 - 413.799804688 221.799804688 418.099609375 222.700195312 420 225.799804688 c 2 - 437.5 256.299804688 l 2 - 439 258.799804688 438.599609375 260 436.5 262 c 0 - 385.700195312 311.400390625 264 289.200195312 264 191.900390625 c 0 - 264 91.900390625 383.200195312 67.099609375 436.700195312 124 c 0 - 438.700195312 126.099609375 438.900390625 129.299804688 437.200195312 131.700195312 c 2 - 417.700195312 159.400390625 l 2 - 415.599609375 162.400390625 411.299804688 162.799804688 408.5 160.299804688 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" c l o s e d hyphen c a p t i o n i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" C l o s e d hyphen C a p t i o n i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" C l o s e d hyphen c a p t i o n i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" C L O S E D hyphen C A P T I O N I N G -EndChar - -StartChar: shekel-sign -Encoding: 61963 61963 393 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 280 m 2 - 248 310.9296875 222.9296875 336 192 336 c 2 - 80 336 l 1 - 80 -16 l 2 - 80 -24.83984375 72.83984375 -32 64 -32 c 2 - 16 -32 l 2 - 7.16015625 -32 0 -24.83984375 0 -16 c 2 - 0 392 l 2 - 0 405.259765625 10.75 416 24 416 c 2 - 192 416 l 2 - 267.110351562 416 328 355.110351562 328 280 c 2 - 328 112 l 2 - 328 103.16015625 320.83984375 96 312 96 c 2 - 264 96 l 2 - 255.16015625 96 248 103.16015625 248 112 c 2 - 248 280 l 2 -432 416 m 2 - 440.83984375 416 448 408.83984375 448 400 c 2 - 448 104 l 2 - 448 28.8896484375 387.110351562 -32 312 -32 c 2 - 144 -32 l 2 - 130.75 -32 120 -21.25 120 -8 c 2 - 120 272 l 2 - 120 280.83984375 127.16015625 288 136 288 c 2 - 184 288 l 2 - 192.83984375 288 200 280.83984375 200 272 c 2 - 200 48 l 1 - 312 48 l 2 - 342.9296875 48 368 73.0703125 368 104 c 2 - 368 400 l 2 - 368 408.83984375 375.16015625 416 384 416 c 2 - 432 416 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" s h e k e l hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S h e k e l hyphen S i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S h e k e l hyphen s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S H E K E L hyphen S I G N -EndChar - -StartChar: cart-plus -Encoding: 61975 61975 394 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504.716796875 128 m 2 - 211.572265625 128 l 1 - 218.1171875 96 l 1 - 486.53515625 96 l 2 - 501.935546875 96 513.350585938 81.69921875 509.938476562 66.6806640625 c 2 - 504.420898438 42.4052734375 l 1 - 523.112304688 33.33203125 536 14.171875 536 -8 c 0 - 536 -39.2021484375 510.481445312 -64.4443359375 479.17578125 -63.994140625 c 0 - 449.352539062 -63.5654296875 424.826171875 -39.36328125 424.021484375 -9.546875 c 0 - 423.581054688 6.740234375 430.106445312 21.501953125 440.82421875 32.0009765625 c 1 - 231.17578125 32.0009765625 l 1 - 241.552734375 21.8349609375 248 7.673828125 248 -8 c 0 - 248 -39.8134765625 221.471679688 -65.4306640625 189.330078125 -63.9384765625 c 0 - 160.790039062 -62.61328125 137.579101562 -39.552734375 136.079101562 -11.021484375 c 0 - 134.920898438 11.0126953125 146.514648438 30.43359375 164.129882812 40.5654296875 c 1 - 93.8828125 384 l 1 - 24 384 l 2 - 10.7451171875 384 0 394.745117188 0 408 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 126.529296875 448 l 2 - 137.9296875 448 147.756835938 439.978515625 150.041992188 428.809570312 c 2 - 159.208007812 384 l 1 - 551.990234375 384 l 2 - 567.390625 384 578.805664062 369.69921875 575.392578125 354.680664062 c 2 - 528.120117188 146.680664062 l 2 - 525.63671875 135.75390625 515.922851562 128 504.716796875 128 c 2 -408 280 m 2 - 360 280 l 1 - 360 320 l 2 - 360 328.836914062 352.836914062 336 344 336 c 2 - 328 336 l 2 - 319.163085938 336 312 328.836914062 312 320 c 2 - 312 280 l 1 - 264 280 l 2 - 255.163085938 280 248 272.836914062 248 264 c 2 - 248 248 l 2 - 248 239.163085938 255.163085938 232 264 232 c 2 - 312 232 l 1 - 312 192 l 2 - 312 183.163085938 319.163085938 176 328 176 c 2 - 344 176 l 2 - 352.836914062 176 360 183.163085938 360 192 c 2 - 360 232 l 1 - 408 232 l 2 - 416.836914062 232 424 239.163085938 424 248 c 2 - 424 264 l 2 - 424 272.836914062 416.836914062 280 408 280 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" c a r t hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" C a r t hyphen P l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" C a r t hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" C A R T hyphen P L U S -EndChar - -StartChar: cart-arrow-down -Encoding: 61976 61976 395 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504.716796875 128 m 2 - 211.572265625 128 l 1 - 218.1171875 96 l 1 - 486.53515625 96 l 2 - 501.935546875 96 513.350585938 81.69921875 509.938476562 66.6806640625 c 2 - 504.420898438 42.4052734375 l 1 - 523.112304688 33.33203125 536 14.171875 536 -8 c 0 - 536 -39.2021484375 510.481445312 -64.4443359375 479.17578125 -63.994140625 c 0 - 449.352539062 -63.5654296875 424.826171875 -39.36328125 424.021484375 -9.546875 c 0 - 423.581054688 6.740234375 430.106445312 21.501953125 440.82421875 32.0009765625 c 1 - 231.17578125 32.0009765625 l 1 - 241.552734375 21.8349609375 248 7.673828125 248 -8 c 0 - 248 -39.8134765625 221.471679688 -65.4306640625 189.330078125 -63.9384765625 c 0 - 160.790039062 -62.61328125 137.579101562 -39.552734375 136.079101562 -11.021484375 c 0 - 134.920898438 11.0126953125 146.514648438 30.43359375 164.129882812 40.5654296875 c 1 - 93.8828125 384 l 1 - 24 384 l 2 - 10.7451171875 384 0 394.745117188 0 408 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 126.529296875 448 l 2 - 137.9296875 448 147.756835938 439.978515625 150.041992188 428.809570312 c 2 - 159.208007812 384 l 1 - 551.990234375 384 l 2 - 567.390625 384 578.805664062 369.69921875 575.392578125 354.680664062 c 2 - 528.120117188 146.680664062 l 2 - 525.63671875 135.75390625 515.922851562 128 504.716796875 128 c 2 -403.029296875 256 m 2 - 360 256 l 1 - 360 316 l 2 - 360 322.626953125 354.626953125 328 348 328 c 2 - 324 328 l 2 - 317.373046875 328 312 322.626953125 312 316 c 2 - 312 256 l 1 - 268.970703125 256 l 2 - 258.280273438 256 252.92578125 243.07421875 260.486328125 235.514648438 c 2 - 327.514648438 168.486328125 l 2 - 332.201171875 163.799804688 339.798828125 163.799804688 344.486328125 168.486328125 c 2 - 411.514648438 235.514648438 l 2 - 419.07421875 243.07421875 413.719726562 256 403.029296875 256 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" c a r t hyphen a r r o w hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" C a r t hyphen A r r o w hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" C a r t hyphen a r r o w hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" C A R T hyphen A R R O W hyphen D O W N -EndChar - -StartChar: ship -Encoding: 61978 61978 396 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496.616210938 75.361328125 m 1 - 514.458007812 31.0009765625 555.182617188 0 616 0 c 0 - 629.254882812 0 640 -10.7451171875 640 -24 c 2 - 640 -40 l 2 - 640 -53.2548828125 629.254882812 -64 616 -64 c 0 - 554.967773438 -64 508.495117188 -43.3837890625 472.7421875 -4.603515625 c 1 - 458.323242188 -39.431640625 423.978515625 -64 384 -64 c 2 - 256 -64 l 2 - 216.021484375 -64 181.676757812 -39.431640625 167.2578125 -4.603515625 c 1 - 131.499023438 -43.3896484375 85.0234375 -64 24 -64 c 0 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 -24 l 2 - 0 -10.7451171875 10.7451171875 0 24 0 c 0 - 85.5869140625 0 125.828125 31.712890625 143.383789062 75.361328125 c 1 - 73.3720703125 145.373046875 l 2 - 56.4541015625 162.291992188 63.455078125 191.15234375 86.2080078125 198.46484375 c 2 - 128 211.8984375 l 1 - 128 352 l 2 - 128 369.672851562 142.327148438 384 160 384 c 2 - 224 384 l 1 - 224 424 l 2 - 224 437.254882812 234.745117188 448 248 448 c 2 - 392 448 l 2 - 405.254882812 448 416 437.254882812 416 424 c 2 - 416 384 l 1 - 480 384 l 2 - 497.672851562 384 512 369.672851562 512 352 c 2 - 512 211.8984375 l 1 - 553.791992188 198.46484375 l 2 - 576.5703125 191.143554688 583.52734375 162.2734375 566.627929688 145.373046875 c 2 - 496.616210938 75.361328125 l 1 -192 320 m 1 - 192 232.46875 l 1 - 310.208007812 270.463867188 l 2 - 312.84375 271.311523438 317.231445312 271.999023438 320 271.999023438 c 0 - 322.768554688 271.999023438 327.15625 271.311523438 329.791992188 270.463867188 c 2 - 448 232.46875 l 1 - 448 320 l 1 - 192 320 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" s h i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S h i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S H I P -EndChar - -StartChar: user-secret -Encoding: 61979 61979 397 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -383.900390625 139.700195312 m 1 - 422.200195312 116 448 74 448 25.599609375 c 2 - 448 -19.2001953125 l 2 - 448 -43.900390625 427.900390625 -64 403.200195312 -64 c 2 - 44.7998046875 -64 l 2 - 20.099609375 -64 0 -43.900390625 0 -19.2001953125 c 2 - 0 25.599609375 l 2 - 0 75.2998046875 27.2998046875 118.200195312 67.400390625 141.5 c 1 - 41.599609375 201.700195312 l 2 - 37.099609375 212.299804688 44.7998046875 224 56.2998046875 224 c 2 - 113.799804688 224 l 1 - 102.799804688 242.900390625 96 264.599609375 96 288 c 2 - 96 288.299804688 l 1 - 56.7998046875 296.099609375 32 307.400390625 32 320 c 0 - 32 333.299804688 59.2998046875 345.099609375 102 353 c 1 - 111.200195312 385.799804688 129.099609375 418.799804688 142.599609375 435.799804688 c 0 - 152.099609375 447.700195312 168.5 451.400390625 182.099609375 444.599609375 c 2 - 209.700195312 430.799804688 l 2 - 218.700195312 426.299804688 229.299804688 426.299804688 238.299804688 430.799804688 c 2 - 265.900390625 444.599609375 l 2 - 279.5 451.400390625 295.900390625 447.700195312 305.400390625 435.799804688 c 0 - 319 418.799804688 336.799804688 385.799804688 346 353 c 1 - 388.799804688 345.099609375 416.099609375 333.299804688 416.099609375 320 c 0 - 416.099609375 307.400390625 391.299804688 296.099609375 352.099609375 288.299804688 c 1 - 352.099609375 288 l 2 - 352.099609375 264.599609375 345.299804688 242.900390625 334.299804688 224 c 1 - 392.799804688 224 l 2 - 404.099609375 224 411.799804688 212.799804688 407.799804688 202.299804688 c 2 - 383.900390625 139.700195312 l 1 -176 -32 m 1 - 208 88 l 1 - 184 128 l 1 - 134.400390625 160 l 1 - 176 -32 l 1 -272 -32 m 1 - 313.599609375 160 l 1 - 264 128 l 1 - 240 88 l 1 - 272 -32 l 1 -313.700195312 266.5 m 0 - 314.5 269.099609375 320 272.200195312 320.099609375 272.299804688 c 2 - 320.099609375 283.099609375 l 1 - 291.799804688 279.400390625 259.099609375 277.299804688 224.099609375 277.299804688 c 0 - 189.099609375 277.299804688 156.400390625 279.5 128.099609375 283.099609375 c 1 - 128.099609375 272.299804688 l 2 - 128.099609375 272.200195312 133.599609375 269 134.400390625 266.5 c 0 - 138.200195312 254.599609375 141.400390625 241.900390625 150.900390625 233.099609375 c 0 - 158.900390625 225.700195312 197.900390625 207.900390625 214.900390625 258.099609375 c 0 - 217.799804688 266.5 230.400390625 266.5 233.200195312 258.099609375 c 0 - 249.200195312 210.700195312 287.099609375 223.799804688 297.200195312 233.099609375 c 0 - 306.700195312 241.900390625 309.799804688 254.599609375 313.700195312 266.5 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" u s e r hyphen s e c r e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" U s e r hyphen S e c r e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" U s e r hyphen s e c r e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" U S E R hyphen S E C R E T -EndChar - -StartChar: motorcycle -Encoding: 61980 61980 398 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512.900390625 256 m 0 - 582.5 255.5 639.400390625 198.700195312 640.099609375 129.099609375 c 0 - 640.700195312 57.5 582.5 -0.7001953125 510.900390625 0 c 0 - 441.299804688 0.599609375 384.599609375 57.5 384.099609375 127.099609375 c 0 - 383.799804688 166.400390625 401.299804688 201.599609375 428.900390625 225.299804688 c 1 - 416.400390625 246.099609375 l 1 - 377.700195312 214.799804688 358.099609375 168.200195312 360.200195312 121.099609375 c 0 - 360.799804688 107.400390625 349.900390625 96 336.200195312 96 c 2 - 252 96 l 1 - 237.700195312 40.7998046875 187.599609375 0 128 0 c 0 - 56.2998046875 0 -1.599609375 58.900390625 0 131 c 0 - 1.599609375 198.400390625 55.900390625 253.5 123.200195312 255.900390625 c 0 - 137.599609375 256.400390625 151.5 254.599609375 164.5 250.700195312 c 1 - 175.799804688 271.200195312 l 1 - 166.700195312 285.099609375 152.5 296 128 296 c 2 - 72 296 l 2 - 58.900390625 296 48.2001953125 306.5 48 319.5 c 0 - 47.7001953125 333 59 344 72.5 344 c 2 - 128 344 l 2 - 183 344 210.200195312 327.099609375 227.900390625 304 c 1 - 381.599609375 304 l 1 - 362.400390625 336 l 1 - 296 336 l 2 - 287.200195312 336 280 343.200195312 280 352 c 2 - 280 368 l 2 - 280 376.799804688 287.200195312 384 296 384 c 2 - 376 384 l 2 - 384.400390625 384 392.200195312 379.599609375 396.599609375 372.400390625 c 2 - 419.400390625 334.400390625 l 1 - 456.900390625 376.099609375 l 2 - 461.400390625 381.099609375 467.900390625 384 474.700195312 384 c 2 - 520 384 l 2 - 533.299804688 384 544 373.299804688 544 360 c 2 - 544 328 l 2 - 544 314.700195312 533.299804688 304 520 304 c 2 - 437.599609375 304 l 1 - 470.5 249.099609375 l 1 - 483.799804688 253.700195312 498 256.099609375 512.900390625 256 c 0 -128 48 m 0 - 160.700195312 48 188.900390625 67.7998046875 201.299804688 96 c 1 - 120 96 l 2 - 101.799804688 96 90.2001953125 115.599609375 99 131.599609375 c 2 - 140.5 207 l 2 - 136.400390625 207.700195312 132.200195312 208 128 208 c 0 - 83.900390625 208 48 172.099609375 48 128 c 0 - 48 83.900390625 83.900390625 48 128 48 c 0 -591.900390625 123.599609375 m 0 - 594.299804688 169.700195312 557.599609375 208 512 207.900390625 c 0 - 506.599609375 207.900390625 501.299804688 207.400390625 496.099609375 206.299804688 c 1 - 544.700195312 125.400390625 l 2 - 549.200195312 117.799804688 546.799804688 107.900390625 539.200195312 103.400390625 c 2 - 525.5 95.2001953125 l 2 - 517.900390625 90.7001953125 508 93.099609375 503.5 100.700195312 c 2 - 454.099609375 183.099609375 l 1 - 440.400390625 168.799804688 432 149.400390625 432 128 c 0 - 432 82.400390625 470.299804688 45.599609375 516.400390625 48.099609375 c 0 - 556.900390625 50.2001953125 589.700195312 83 591.900390625 123.599609375 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" m o t o r c y c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" M o t o r c y c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" M O T O R C Y C L E -EndChar - -StartChar: street-view -Encoding: 61981 61981 399 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -367.900390625 118.240234375 m 1 - 453.129882812 102.66015625 512 69.9501953125 512 32 c 0 - 512 -21.01953125 397.379882812 -64 256 -64 c 0 - 114.620117188 -64 0 -21.01953125 0 32 c 0 - 0 69.9501953125 58.8701171875 102.66015625 144.099609375 118.240234375 c 1 - 148.719726562 112.940429688 153.879882812 108.139648438 160 104.58984375 c 1 - 160 81.650390625 l 1 - 93.48046875 72.2998046875 48 53.599609375 48 32 c 0 - 48 1.0703125 141.120117188 -24 256 -24 c 0 - 370.879882812 -24 464 1.0703125 464 32 c 0 - 464 53.599609375 418.51953125 72.3095703125 352 81.650390625 c 1 - 352 104.58984375 l 1 - 358.120117188 108.139648438 363.280273438 112.940429688 367.900390625 118.240234375 c 1 -256 320 m 0 - 220.650390625 320 192 348.650390625 192 384 c 0 - 192 419.349609375 220.650390625 448 256 448 c 0 - 291.349609375 448 320 419.349609375 320 384 c 0 - 320 348.650390625 291.349609375 320 256 320 c 0 -192 128 m 1 - 174.330078125 128 160 142.330078125 160 160 c 2 - 160 256 l 2 - 160 282.509765625 181.490234375 304 208 304 c 2 - 219.799804688 304 l 1 - 230.870117188 298.969726562 243.059570312 296 256 296 c 0 - 268.940429688 296 281.129882812 298.969726562 292.200195312 304 c 1 - 304 304 l 2 - 330.509765625 304 352 282.509765625 352 256 c 2 - 352 160 l 2 - 352 142.330078125 337.669921875 128 320 128 c 1 - 320 32 l 2 - 320 14.330078125 305.669921875 0 288 0 c 2 - 224 0 l 2 - 206.330078125 0 192 14.330078125 192 32 c 2 - 192 128 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" s t r e e t hyphen v i e w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S t r e e t hyphen V i e w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S t r e e t hyphen v i e w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S T R E E T hyphen V I E W -EndChar - -StartChar: heartbeat -Encoding: 61982 61982 400 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320.200195312 204.200195312 m 1 - 342.299804688 160 l 1 - 451.400390625 160 l 1 - 268.799804688 -26.5 l 2 - 261.700195312 -33.7998046875 250.200195312 -33.7998046875 243.099609375 -26.5 c 2 - 60.599609375 160 l 1 - 154.700195312 160 l 1 - 184.700195312 231.700195312 l 1 - 241.599609375 105.400390625 l 2 - 247.099609375 93.099609375 264.5 92.7001953125 270.5 104.799804688 c 2 - 320.200195312 204.200195312 l 1 -473.700195312 374.099609375 m 2 - 522.400390625 324.299804688 524.5 245 481 192 c 1 - 362.099609375 192 l 1 - 334.5 247.200195312 l 2 - 328.599609375 259 311.799804688 259 305.900390625 247.200195312 c 2 - 256.900390625 149.299804688 l 1 - 198.700195312 278.599609375 l 2 - 192.900390625 291.400390625 174.700195312 291.099609375 169.299804688 278.200195312 c 2 - 133.400390625 192 l 1 - 31 192 l 1 - -12.5 245 -10.400390625 324.299804688 38.2998046875 374.099609375 c 2 - 40.7001953125 376.5 l 2 - 92.2001953125 429.200195312 176.599609375 429.200195312 228.099609375 376.5 c 2 - 256 348 l 1 - 283.900390625 376.599609375 l 2 - 335.5 429.200195312 419.799804688 429.200195312 471.299804688 376.599609375 c 2 - 473.700195312 374.099609375 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" h e a r t b e a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" H e a r t b e a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" H E A R T B E A T -EndChar - -StartChar: venus -Encoding: 61985 61985 401 -Width: 288 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 272 m 0 - 288 203.5 240.099609375 146.099609375 176 131.599609375 c 1 - 176 80 l 1 - 212 80 l 2 - 218.599609375 80 224 74.599609375 224 68 c 2 - 224 28 l 2 - 224 21.400390625 218.599609375 16 212 16 c 2 - 176 16 l 1 - 176 -20 l 2 - 176 -26.599609375 170.599609375 -32 164 -32 c 2 - 124 -32 l 2 - 117.400390625 -32 112 -26.599609375 112 -20 c 2 - 112 16 l 1 - 76 16 l 2 - 69.400390625 16 64 21.400390625 64 28 c 2 - 64 68 l 2 - 64 74.599609375 69.400390625 80 76 80 c 2 - 112 80 l 1 - 112 131.599609375 l 1 - 47.900390625 146.099609375 0 203.5 0 272 c 0 - 0 351.5 64.5 416 144 416 c 0 - 223.5 416 288 351.5 288 272 c 0 -64 272 m 0 - 64 227.900390625 99.900390625 192 144 192 c 0 - 188.099609375 192 224 227.900390625 224 272 c 0 - 224 316.099609375 188.099609375 352 144 352 c 0 - 99.900390625 352 64 316.099609375 64 272 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" v e n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" V e n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" V E N U S -EndChar - -StartChar: mars -Encoding: 61986 61986 402 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -372 384 m 2 - 378.599609375 384 384 378.599609375 384 372 c 2 - 384 293 l 2 - 384 282.299804688 371.099609375 276.900390625 363.5 284.5 c 2 - 346.599609375 301.400390625 l 1 - 265.900390625 220.700195312 l 1 - 279.900390625 198.5 288 172.200195312 288 144 c 0 - 288 64.5 223.5 0 144 0 c 0 - 64.5 0 0 64.5 0 144 c 0 - 0 223.5 64.5 288 144 288 c 0 - 172.200195312 288 198.5 279.900390625 220.700195312 265.900390625 c 1 - 301.400390625 346.599609375 l 1 - 284.5 363.5 l 2 - 277 371.099609375 282.299804688 384 293 384 c 2 - 372 384 l 2 -144 64 m 0 - 188.099609375 64 224 99.900390625 224 144 c 0 - 224 188.099609375 188.099609375 224 144 224 c 0 - 99.900390625 224 64 188.099609375 64 144 c 0 - 64 99.900390625 99.900390625 64 144 64 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" m a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" M a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" M A R S -EndChar - -StartChar: mercury -Encoding: 61987 61987 403 -Width: 288 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 240 m 0 - 288 171.5 240.099609375 114.099609375 176 99.599609375 c 1 - 176 48 l 1 - 212 48 l 2 - 218.599609375 48 224 42.599609375 224 36 c 2 - 224 -4 l 2 - 224 -10.599609375 218.599609375 -16 212 -16 c 2 - 176 -16 l 1 - 176 -52 l 2 - 176 -58.599609375 170.599609375 -64 164 -64 c 2 - 124 -64 l 2 - 117.400390625 -64 112 -58.599609375 112 -52 c 2 - 112 -16 l 1 - 76 -16 l 2 - 69.400390625 -16 64 -10.599609375 64 -4 c 2 - 64 36 l 2 - 64 42.599609375 69.400390625 48 76 48 c 2 - 112 48 l 1 - 112 99.599609375 l 1 - 47.900390625 114.099609375 0 171.5 0 240 c 0 - 0 284.200195312 19.900390625 323.700195312 51.2001953125 350 c 1 - 48.7001953125 351.900390625 46.2998046875 353.799804688 44 355.799804688 c 0 - 19.2001953125 377 4.2001953125 404.599609375 0.7998046875 434.700195312 c 0 - -0.099609375 441.799804688 5.5 448 12.7001953125 448 c 2 - 53.2001953125 448 l 2 - 58.900390625 448 63.7998046875 443.900390625 64.900390625 438.200195312 c 0 - 67.400390625 425.700195312 74.5 413.900390625 85.599609375 404.400390625 c 0 - 101 391.200195312 121.700195312 384 144 384 c 0 - 166.299804688 384 187 391.200195312 202.299804688 404.400390625 c 0 - 213.400390625 413.900390625 220.599609375 425.700195312 223 438.200195312 c 0 - 224.099609375 443.900390625 229 448 234.799804688 448 c 2 - 275.299804688 448 l 2 - 282.5 448 288.099609375 441.799804688 287.200195312 434.700195312 c 0 - 283.799804688 404.700195312 268.700195312 377.099609375 244 355.900390625 c 0 - 241.700195312 353.900390625 239.299804688 351.900390625 236.799804688 350.099609375 c 1 - 268.099609375 323.700195312 288 284.200195312 288 240 c 0 -64 240 m 0 - 64 195.900390625 99.900390625 160 144 160 c 0 - 188.099609375 160 224 195.900390625 224 240 c 0 - 224 284.099609375 188.099609375 320 144 320 c 0 - 99.900390625 320 64 284.099609375 64 240 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" m e r c u r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" M e r c u r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" M E R C U R Y -EndChar - -StartChar: transgender -Encoding: 61988 61988 404 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -372 448 m 2 - 378.599609375 448 384 442.599609375 384 436 c 2 - 384 357 l 2 - 384 346.299804688 371.099609375 340.900390625 363.5 348.5 c 2 - 346.599609375 365.400390625 l 1 - 265.900390625 284.700195312 l 1 - 279.900390625 262.5 288 236.200195312 288 208 c 0 - 288 139.5 240.099609375 82.2001953125 176 67.599609375 c 1 - 176 40 l 1 - 212 40 l 2 - 218.599609375 40 224 34.599609375 224 28 c 2 - 224 -12 l 2 - 224 -18.599609375 218.599609375 -24 212 -24 c 2 - 176 -24 l 1 - 176 -52 l 2 - 176 -58.599609375 170.599609375 -64 164 -64 c 2 - 124 -64 l 2 - 117.400390625 -64 112 -58.599609375 112 -52 c 2 - 112 -24 l 1 - 76 -24 l 2 - 69.400390625 -24 64 -18.599609375 64 -12 c 2 - 64 28 l 2 - 64 34.599609375 69.400390625 40 76 40 c 2 - 112 40 l 1 - 112 67.599609375 l 1 - 47.900390625 82.099609375 0 139.5 0 208 c 0 - 0 287.5 64.5 352 144 352 c 0 - 172.200195312 352 198.5 343.900390625 220.700195312 329.900390625 c 1 - 301.400390625 410.599609375 l 1 - 284.5 427.5 l 2 - 277 435.099609375 282.299804688 448 293 448 c 2 - 372 448 l 2 -144 128 m 0 - 188.099609375 128 224 163.900390625 224 208 c 0 - 224 252.099609375 188.099609375 288 144 288 c 0 - 99.900390625 288 64 252.099609375 64 208 c 0 - 64 163.900390625 99.900390625 128 144 128 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" t r a n s g e n d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" T r a n s g e n d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" T R A N S G E N D E R -EndChar - -StartChar: transgender-alt -Encoding: 61989 61989 405 -Width: 480 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -468 448 m 2 - 474.599609375 448 480 442.599609375 480 436 c 2 - 480 357 l 2 - 480 346.299804688 467.099609375 340.900390625 459.5 348.5 c 2 - 442.599609375 365.400390625 l 1 - 361.900390625 284.700195312 l 1 - 375.900390625 262.5 384 236.200195312 384 208 c 0 - 384 139.5 336.099609375 82.2001953125 272 67.599609375 c 1 - 272 40 l 1 - 308 40 l 2 - 314.599609375 40 320 34.599609375 320 28 c 2 - 320 -12 l 2 - 320 -18.599609375 314.599609375 -24 308 -24 c 2 - 272 -24 l 1 - 272 -52 l 2 - 272 -58.599609375 266.599609375 -64 260 -64 c 2 - 220 -64 l 2 - 213.400390625 -64 208 -58.599609375 208 -52 c 2 - 208 -24 l 1 - 172 -24 l 2 - 165.400390625 -24 160 -18.599609375 160 -12 c 2 - 160 28 l 2 - 160 34.599609375 165.400390625 40 172 40 c 2 - 208 40 l 1 - 208 67.599609375 l 1 - 143.900390625 82.099609375 96 139.5 96 208 c 0 - 96 236.200195312 104.099609375 262.5 118.200195312 284.599609375 c 1 - 101.700195312 301.099609375 l 1 - 81.900390625 281.299804688 l 2 - 77.2001953125 276.599609375 69.599609375 276.599609375 64.900390625 281.299804688 c 2 - 36.599609375 309.599609375 l 2 - 31.900390625 314.299804688 31.900390625 321.900390625 36.599609375 326.599609375 c 2 - 56.400390625 346.400390625 l 1 - 37.400390625 365.400390625 l 1 - 20.5 348.5 l 2 - 12.900390625 341 0 346.299804688 0 357 c 2 - 0 436 l 2 - 0 442.599609375 5.400390625 448 12 448 c 2 - 91 448 l 2 - 101.700195312 448 107.099609375 435.099609375 99.400390625 427.599609375 c 2 - 82.5 410.700195312 l 1 - 101.5 391.700195312 l 1 - 121.299804688 411.5 l 2 - 126 416.200195312 133.599609375 416.200195312 138.299804688 411.5 c 2 - 166.599609375 383.200195312 l 2 - 171.299804688 378.5 171.299804688 370.900390625 166.599609375 366.200195312 c 2 - 146.799804688 346.400390625 l 1 - 163.299804688 329.900390625 l 1 - 185.5 343.900390625 211.799804688 352 240 352 c 0 - 268.200195312 352 294.5 343.900390625 316.700195312 329.900390625 c 1 - 397.400390625 410.599609375 l 1 - 380.5 427.5 l 2 - 373 435.099609375 378.299804688 448 389 448 c 2 - 468 448 l 2 -240 128 m 0 - 284.099609375 128 320 163.900390625 320 208 c 0 - 320 252.099609375 284.099609375 288 240 288 c 0 - 195.900390625 288 160 252.099609375 160 208 c 0 - 160 163.900390625 195.900390625 128 240 128 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" t r a n s g e n d e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" T r a n s g e n d e r hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" T r a n s g e n d e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" T R A N S G E N D E R hyphen A L T -EndChar - -StartChar: venus-double -Encoding: 61990 61990 406 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 272 m 0 - 288 203.5 240.099609375 146.099609375 176 131.599609375 c 1 - 176 80 l 1 - 212 80 l 2 - 218.599609375 80 224 74.599609375 224 68 c 2 - 224 28 l 2 - 224 21.400390625 218.599609375 16 212 16 c 2 - 176 16 l 1 - 176 -20 l 2 - 176 -26.599609375 170.599609375 -32 164 -32 c 2 - 124 -32 l 2 - 117.400390625 -32 112 -26.599609375 112 -20 c 2 - 112 16 l 1 - 76 16 l 2 - 69.400390625 16 64 21.400390625 64 28 c 2 - 64 68 l 2 - 64 74.599609375 69.400390625 80 76 80 c 2 - 112 80 l 1 - 112 131.599609375 l 1 - 47.900390625 146.099609375 0 203.5 0 272 c 0 - 0 351.5 64.5 416 144 416 c 0 - 223.5 416 288 351.5 288 272 c 0 -64 272 m 0 - 64 227.900390625 99.900390625 192 144 192 c 0 - 188.099609375 192 224 227.900390625 224 272 c 0 - 224 316.099609375 188.099609375 352 144 352 c 0 - 99.900390625 352 64 316.099609375 64 272 c 0 -400 131.599609375 m 1 - 400 80 l 1 - 436 80 l 2 - 442.599609375 80 448 74.599609375 448 68 c 2 - 448 28 l 2 - 448 21.400390625 442.599609375 16 436 16 c 2 - 400 16 l 1 - 400 -20 l 2 - 400 -26.599609375 394.599609375 -32 388 -32 c 2 - 348 -32 l 2 - 341.400390625 -32 336 -26.599609375 336 -20 c 2 - 336 16 l 1 - 300 16 l 2 - 293.400390625 16 288 21.400390625 288 28 c 2 - 288 68 l 2 - 288 74.599609375 293.400390625 80 300 80 c 2 - 336 80 l 1 - 336 131.599609375 l 1 - 314.799804688 136.400390625 295.400390625 145.900390625 278.799804688 158.900390625 c 1 - 292.799804688 175.599609375 303.799804688 194.900390625 310.900390625 216 c 1 - 325.400390625 201.200195312 345.599609375 192 368 192 c 0 - 412.099609375 192 448 227.900390625 448 272 c 0 - 448 316.099609375 412.099609375 352 368 352 c 0 - 345.700195312 352 325.400390625 342.799804688 310.900390625 328 c 1 - 303.799804688 349.099609375 292.900390625 368.400390625 278.799804688 385.099609375 c 1 - 303.400390625 404.400390625 334.299804688 416 368 416 c 0 - 447.5 416 512 351.5 512 272 c 0 - 512 203.5 464.099609375 146.099609375 400 131.599609375 c 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" v e n u s hyphen d o u b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" V e n u s hyphen D o u b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" V e n u s hyphen d o u b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" V E N U S hyphen D O U B L E -EndChar - -StartChar: mars-double -Encoding: 61991 61991 407 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -340 448 m 2 - 346.599609375 448 352 442.599609375 352 436 c 2 - 352 357 l 2 - 352 349.799804688 346.099609375 345 339.900390625 345 c 0 - 337 345 333.900390625 346.099609375 331.5 348.5 c 2 - 314.599609375 365.400390625 l 1 - 265.900390625 316.700195312 l 1 - 279.900390625 294.5 288 268.200195312 288 240 c 0 - 288 160.5 223.5 96 144 96 c 0 - 64.5 96 0 160.5 0 240 c 0 - 0 319.5 64.5 384 144 384 c 0 - 172.200195312 384 198.5 375.900390625 220.700195312 361.900390625 c 1 - 269.400390625 410.599609375 l 1 - 252.5 427.5 l 2 - 245 435.099609375 250.299804688 448 261 448 c 2 - 340 448 l 2 -144 160 m 0 - 188.099609375 160 224 195.900390625 224 240 c 0 - 224 284.099609375 188.099609375 320 144 320 c 0 - 99.900390625 320 64 284.099609375 64 240 c 0 - 64 195.900390625 99.900390625 160 144 160 c 0 -500 288.099609375 m 2 - 506.599609375 288.099609375 512 282.700195312 512 276 c 2 - 512 197 l 2 - 512 189.799804688 506.099609375 185 499.900390625 185 c 0 - 496.900390625 185 493.900390625 186.099609375 491.5 188.5 c 2 - 474.599609375 205.400390625 l 1 - 425.900390625 156.700195312 l 1 - 439.900390625 134.5 448 108.200195312 448 80 c 0 - 448 0.5 383.5 -64 304 -64 c 0 - 229.599609375 -64 168.400390625 -7.599609375 160.799804688 64.900390625 c 1 - 182.599609375 66.900390625 204.099609375 73.099609375 224.099609375 83.2998046875 c 1 - 224 82.2998046875 224 81.2001953125 224 80.099609375 c 0 - 224 36 259.900390625 0.099609375 304 0.099609375 c 0 - 348.099609375 0.099609375 384 36 384 80.099609375 c 0 - 384 124.200195312 348.099609375 160.099609375 304 160.099609375 c 0 - 303 160.099609375 301.900390625 160 300.799804688 160 c 1 - 311 180 317.099609375 201.5 319.200195312 223.299804688 c 1 - 341.700195312 220.900390625 362.5 213.400390625 380.700195312 202 c 1 - 429.400390625 250.700195312 l 1 - 412.5 267.599609375 l 2 - 405 275.200195312 410.299804688 288.099609375 421 288.099609375 c 2 - 500 288.099609375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" m a r s hyphen d o u b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" M a r s hyphen D o u b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" M a r s hyphen d o u b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" M A R S hyphen D O U B L E -EndChar - -StartChar: venus-mars -Encoding: 61992 61992 408 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -564 448 m 2 - 570.599609375 448 576 442.599609375 576 436 c 2 - 576 357 l 2 - 576 349.799804688 570.099609375 345 563.900390625 345 c 0 - 560.900390625 345 557.900390625 346.099609375 555.5 348.5 c 2 - 538.599609375 365.400390625 l 1 - 489.900390625 316.700195312 l 1 - 503.900390625 294.5 512 268.200195312 512 240 c 0 - 512 160.5 447.5 96 368 96 c 0 - 334.299804688 96 303.299804688 107.5 278.799804688 126.900390625 c 1 - 292.900390625 143.599609375 303.799804688 162.900390625 310.900390625 184 c 1 - 325.400390625 169.200195312 345.700195312 160 368 160 c 0 - 412.099609375 160 448 195.900390625 448 240 c 0 - 448 284.099609375 412.099609375 320 368 320 c 0 - 345.599609375 320 325.400390625 310.799804688 310.900390625 296 c 1 - 303.799804688 317.099609375 292.799804688 336.400390625 278.799804688 353.099609375 c 1 - 303.400390625 372.400390625 334.299804688 384 368 384 c 0 - 396.200195312 384 422.5 375.900390625 444.700195312 361.900390625 c 1 - 493.400390625 410.599609375 l 1 - 476.5 427.5 l 2 - 469 435.099609375 474.299804688 448 485 448 c 2 - 564 448 l 2 -144 384 m 0 - 223.5 384 288 319.5 288 240 c 0 - 288 171.5 240.099609375 114.200195312 176 99.599609375 c 1 - 176 48 l 1 - 212 48 l 2 - 218.599609375 48 224 42.599609375 224 36 c 2 - 224 -4 l 2 - 224 -10.599609375 218.599609375 -16 212 -16 c 2 - 176 -16 l 1 - 176 -52 l 2 - 176 -58.599609375 170.599609375 -64 164 -64 c 2 - 124 -64 l 2 - 117.400390625 -64 112 -58.599609375 112 -52 c 2 - 112 -16 l 1 - 76 -16 l 2 - 69.400390625 -16 64 -10.599609375 64 -4 c 2 - 64 36 l 2 - 64 42.599609375 69.400390625 48 76 48 c 2 - 112 48 l 1 - 112 99.599609375 l 1 - 47.900390625 114.099609375 0 171.5 0 240 c 0 - 0 319.5 64.5 384 144 384 c 0 -144 160 m 0 - 188.099609375 160 224 195.900390625 224 240 c 0 - 224 284.099609375 188.099609375 320 144 320 c 0 - 99.900390625 320 64 284.099609375 64 240 c 0 - 64 195.900390625 99.900390625 160 144 160 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" v e n u s hyphen m a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" V e n u s hyphen M a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" V e n u s hyphen m a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" V E N U S hyphen M A R S -EndChar - -StartChar: mars-stroke -Encoding: 61993 61993 409 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -372 384 m 2 - 378.599609375 384 384 378.599609375 384.099609375 372 c 2 - 384.099609375 293.099609375 l 2 - 384.099609375 282.400390625 371.200195312 277 363.599609375 284.599609375 c 2 - 346.700195312 301.5 l 1 - 329.200195312 284 l 1 - 343.299804688 269.900390625 l 2 - 348 265.200195312 348 257.599609375 343.299804688 252.900390625 c 2 - 315 224.599609375 l 2 - 310.299804688 219.900390625 302.700195312 219.900390625 298 224.599609375 c 2 - 283.900390625 238.700195312 l 1 - 265.900390625 220.700195312 l 1 - 279.900390625 198.5 288 172.200195312 288 144 c 0 - 288 64.5 223.5 0 144 0 c 0 - 64.5 0 0 64.5 0 144 c 0 - 0 223.5 64.5 288 143.900390625 288 c 0 - 172.099609375 288 198.400390625 279.900390625 220.599609375 265.900390625 c 1 - 238.599609375 283.900390625 l 1 - 224.5 298 l 2 - 219.799804688 302.700195312 219.799804688 310.299804688 224.5 315 c 2 - 252.799804688 343.200195312 l 2 - 257.5 347.900390625 265.099609375 347.900390625 269.799804688 343.200195312 c 2 - 283.900390625 329.099609375 l 1 - 301.400390625 346.599609375 l 1 - 284.5 363.5 l 2 - 277 371.099609375 282.299804688 384 293 384 c 2 - 372 384 l 2 -144 64 m 0 - 188.099609375 64 224 99.900390625 224 144 c 0 - 224 188.099609375 188.099609375 224 144 224 c 0 - 99.900390625 224 64 188.099609375 64 144 c 0 - 64 99.900390625 99.900390625 64 144 64 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" m a r s hyphen s t r o k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" M a r s hyphen S t r o k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" M a r s hyphen s t r o k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" M A R S hyphen S T R O K E -EndChar - -StartChar: mars-stroke-v -Encoding: 61994 61994 410 -Width: 288 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -245.799804688 213.799804688 m 0 - 302.099609375 157.599609375 302.099609375 66.400390625 245.799804688 10.2001953125 c 0 - 189.599609375 -46 98.400390625 -46 42.2001953125 10.2001953125 c 0 - -14 66.400390625 -14 157.599609375 42.2001953125 213.799804688 c 0 - 62.099609375 233.700195312 86.400390625 246.599609375 112 252.400390625 c 1 - 112 277.799804688 l 1 - 92 277.799804688 l 2 - 85.400390625 277.799804688 80 283.200195312 80 289.799804688 c 2 - 80 329.799804688 l 2 - 80 336.400390625 85.400390625 341.799804688 92 341.799804688 c 2 - 112 341.799804688 l 1 - 112 366.5 l 1 - 88.099609375 366.5 l 2 - 77.400390625 366.5 72 379.400390625 79.599609375 387 c 2 - 135.5 442.900390625 l 2 - 140.200195312 447.599609375 147.799804688 447.599609375 152.5 442.900390625 c 2 - 208.400390625 387.099609375 l 2 - 215.900390625 379.5 210.599609375 366.599609375 199.900390625 366.599609375 c 2 - 176 366.599609375 l 1 - 176 341.799804688 l 1 - 196 341.799804688 l 2 - 202.599609375 341.799804688 208 336.400390625 208 329.799804688 c 2 - 208 289.799804688 l 2 - 208 283.200195312 202.599609375 277.799804688 196 277.799804688 c 2 - 176 277.799804688 l 1 - 176 252.400390625 l 1 - 201.599609375 246.599609375 225.900390625 233.700195312 245.799804688 213.799804688 c 0 -200.599609375 55.400390625 m 0 - 231.799804688 86.599609375 231.799804688 137.400390625 200.599609375 168.5 c 0 - 169.400390625 199.700195312 118.700195312 199.700195312 87.5 168.5 c 0 - 56.2998046875 137.299804688 56.2998046875 86.599609375 87.5 55.400390625 c 0 - 118.700195312 24.2001953125 169.400390625 24.2001953125 200.599609375 55.400390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" m a r s hyphen s t r o k e hyphen v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" M a r s hyphen S t r o k e hyphen V -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" M a r s hyphen s t r o k e hyphen v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" M A R S hyphen S T R O K E hyphen V -EndChar - -StartChar: mars-stroke-h -Encoding: 61995 61995 411 -Width: 480 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -476.200195312 200.5 m 2 - 480.900390625 195.799804688 480.900390625 188.200195312 476.299804688 183.5 c 2 - 420.400390625 127.599609375 l 2 - 412.799804688 120.099609375 399.900390625 125.400390625 399.900390625 136.099609375 c 2 - 399.900390625 160 l 1 - 376 160 l 1 - 376 140 l 2 - 376 133.400390625 370.599609375 128 364 128 c 2 - 324 128 l 2 - 317.400390625 128 312 133.400390625 312 140 c 2 - 312 160 l 1 - 284.400390625 160 l 1 - 278.599609375 134.400390625 265.700195312 110.099609375 245.799804688 90.2001953125 c 0 - 189.599609375 34 98.400390625 34 42.2001953125 90.2001953125 c 0 - -14 146.400390625 -14 237.599609375 42.2001953125 293.799804688 c 0 - 98.400390625 350 189.599609375 350 245.799804688 293.799804688 c 0 - 265.700195312 273.900390625 278.599609375 249.599609375 284.400390625 224 c 1 - 312 224 l 1 - 312 244 l 2 - 312 250.599609375 317.400390625 256 324 256 c 2 - 364 256 l 2 - 370.599609375 256 376 250.599609375 376 244 c 2 - 376 224 l 1 - 399.799804688 224 l 1 - 399.799804688 247.900390625 l 2 - 399.799804688 258.599609375 412.700195312 264 420.299804688 256.400390625 c 2 - 476.200195312 200.5 l 2 -200.599609375 135.400390625 m 0 - 231.799804688 166.599609375 231.799804688 217.400390625 200.599609375 248.5 c 0 - 169.400390625 279.700195312 118.700195312 279.700195312 87.5 248.5 c 0 - 56.2998046875 217.299804688 56.2998046875 166.599609375 87.5 135.400390625 c 0 - 118.700195312 104.200195312 169.400390625 104.200195312 200.599609375 135.400390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" m a r s hyphen s t r o k e hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" M a r s hyphen S t r o k e hyphen H -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" M a r s hyphen s t r o k e hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" M A R S hyphen S T R O K E hyphen H -EndChar - -StartChar: neuter -Encoding: 61996 61996 412 -Width: 288 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 272 m 0 - 288 203.5 240.099609375 146.099609375 176 131.599609375 c 1 - 176 -20 l 2 - 176 -26.599609375 170.599609375 -32 164 -32 c 2 - 124 -32 l 2 - 117.400390625 -32 112 -26.599609375 112 -20 c 2 - 112 131.599609375 l 1 - 47.900390625 146.099609375 0 203.5 0 272 c 0 - 0 351.5 64.5 416 144 416 c 0 - 223.5 416 288 351.5 288 272 c 0 -144 192 m 0 - 188.099609375 192 224 227.900390625 224 272 c 0 - 224 316.099609375 188.099609375 352 144 352 c 0 - 99.900390625 352 64 316.099609375 64 272 c 0 - 64 227.900390625 99.900390625 192 144 192 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" n e u t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" N e u t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" N E U T E R -EndChar - -StartChar: genderless -Encoding: 61997 61997 413 -Width: 288 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -144 272 m 0 - 99.900390625 272 64 236.099609375 64 192 c 0 - 64 147.900390625 99.900390625 112 144 112 c 0 - 188.099609375 112 224 147.900390625 224 192 c 0 - 224 236.099609375 188.099609375 272 144 272 c 0 -144 336 m 0 - 223.5 336 288 271.5 288 192 c 0 - 288 112.5 223.5 48 144 48 c 0 - 64.5 48 0 112.5 0 192 c 0 - 0 271.5 64.5 336 144 336 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" g e n d e r l e s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" G e n d e r l e s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" G E N D E R L E S S -EndChar - -StartChar: server -Encoding: 62003 62003 414 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480 288 m 2 - 32 288 l 2 - 14.3271484375 288 0 302.327148438 0 320 c 2 - 0 384 l 2 - 0 401.672851562 14.3271484375 416 32 416 c 2 - 480 416 l 2 - 497.672851562 416 512 401.672851562 512 384 c 2 - 512 320 l 2 - 512 302.327148438 497.672851562 288 480 288 c 2 -432 376 m 0 - 418.745117188 376 408 365.254882812 408 352 c 0 - 408 338.745117188 418.745117188 328 432 328 c 0 - 445.254882812 328 456 338.745117188 456 352 c 0 - 456 365.254882812 445.254882812 376 432 376 c 0 -368 376 m 0 - 354.745117188 376 344 365.254882812 344 352 c 0 - 344 338.745117188 354.745117188 328 368 328 c 0 - 381.254882812 328 392 338.745117188 392 352 c 0 - 392 365.254882812 381.254882812 376 368 376 c 0 -480 128 m 2 - 32 128 l 2 - 14.3271484375 128 0 142.327148438 0 160 c 2 - 0 224 l 2 - 0 241.672851562 14.3271484375 256 32 256 c 2 - 480 256 l 2 - 497.672851562 256 512 241.672851562 512 224 c 2 - 512 160 l 2 - 512 142.327148438 497.672851562 128 480 128 c 2 -432 216 m 0 - 418.745117188 216 408 205.254882812 408 192 c 0 - 408 178.745117188 418.745117188 168 432 168 c 0 - 445.254882812 168 456 178.745117188 456 192 c 0 - 456 205.254882812 445.254882812 216 432 216 c 0 -368 216 m 0 - 354.745117188 216 344 205.254882812 344 192 c 0 - 344 178.745117188 354.745117188 168 368 168 c 0 - 381.254882812 168 392 178.745117188 392 192 c 0 - 392 205.254882812 381.254882812 216 368 216 c 0 -480 -32 m 2 - 32 -32 l 2 - 14.3271484375 -32 0 -17.6728515625 0 0 c 2 - 0 64 l 2 - 0 81.6728515625 14.3271484375 96 32 96 c 2 - 480 96 l 2 - 497.672851562 96 512 81.6728515625 512 64 c 2 - 512 0 l 2 - 512 -17.6728515625 497.672851562 -32 480 -32 c 2 -432 56 m 0 - 418.745117188 56 408 45.2548828125 408 32 c 0 - 408 18.7451171875 418.745117188 8 432 8 c 0 - 445.254882812 8 456 18.7451171875 456 32 c 0 - 456 45.2548828125 445.254882812 56 432 56 c 0 -368 56 m 0 - 354.745117188 56 344 45.2548828125 344 32 c 0 - 344 18.7451171875 354.745117188 8 368 8 c 0 - 381.254882812 8 392 18.7451171875 392 32 c 0 - 392 45.2548828125 381.254882812 56 368 56 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" s e r v e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S e r v e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S E R V E R -EndChar - -StartChar: user-plus -Encoding: 62004 62004 415 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 240 m 2 - 632.799804688 240 640 232.799804688 640 224 c 2 - 640 192 l 2 - 640 183.200195312 632.799804688 176 624 176 c 2 - 560 176 l 1 - 560 112 l 2 - 560 103.200195312 552.799804688 96 544 96 c 2 - 512 96 l 2 - 503.200195312 96 496 103.200195312 496 112 c 2 - 496 176 l 1 - 432 176 l 2 - 423.200195312 176 416 183.200195312 416 192 c 2 - 416 224 l 2 - 416 232.799804688 423.200195312 240 432 240 c 2 - 496 240 l 1 - 496 304 l 2 - 496 312.799804688 503.200195312 320 512 320 c 2 - 544 320 l 2 - 552.799804688 320 560 312.799804688 560 304 c 2 - 560 240 l 1 - 624 240 l 2 -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -313.599609375 160 m 2 - 387.799804688 160 448 99.7998046875 448 25.599609375 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 99.7998046875 60.2001953125 160 134.400390625 160 c 2 - 151.099609375 160 l 1 - 173.400390625 149.799804688 198 144 224 144 c 0 - 250 144 274.700195312 149.799804688 296.900390625 160 c 1 - 313.599609375 160 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" u s e r hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" U s e r hyphen P l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" U s e r hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" U S E R hyphen P L U S -EndChar - -StartChar: user-times -Encoding: 62005 62005 416 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -589.599609375 208 m 1 - 635.200195312 162.400390625 l 2 - 641.5 156.099609375 641.5 145.900390625 635.200195312 139.599609375 c 2 - 612.400390625 116.799804688 l 2 - 606.099609375 110.5 595.900390625 110.5 589.599609375 116.799804688 c 2 - 544 162.400390625 l 1 - 498.400390625 116.799804688 l 2 - 492.099609375 110.5 481.900390625 110.5 475.599609375 116.799804688 c 2 - 452.799804688 139.599609375 l 2 - 446.5 145.900390625 446.5 156.099609375 452.799804688 162.400390625 c 2 - 498.400390625 208 l 1 - 452.799804688 253.599609375 l 2 - 446.5 259.900390625 446.5 270.099609375 452.799804688 276.400390625 c 2 - 475.599609375 299.200195312 l 2 - 481.900390625 305.5 492.099609375 305.5 498.400390625 299.200195312 c 2 - 544 253.599609375 l 1 - 589.599609375 299.200195312 l 2 - 595.900390625 305.5 606.099609375 305.5 612.400390625 299.200195312 c 2 - 635.200195312 276.400390625 l 2 - 641.5 270.099609375 641.5 259.900390625 635.200195312 253.599609375 c 2 - 589.599609375 208 l 1 -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -313.599609375 160 m 2 - 387.799804688 160 448 99.7998046875 448 25.599609375 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 99.7998046875 60.2001953125 160 134.400390625 160 c 2 - 151.099609375 160 l 1 - 173.400390625 149.799804688 198 144 224 144 c 0 - 250 144 274.700195312 149.799804688 296.900390625 160 c 1 - 313.599609375 160 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" u s e r hyphen t i m e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" U s e r hyphen T i m e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" U s e r hyphen t i m e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" U S E R hyphen T I M E S -EndChar - -StartChar: bed -Encoding: 62006 62006 417 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -176 192 m 0 - 131.889648438 192 96 227.889648438 96 272 c 0 - 96 316.110351562 131.889648438 352 176 352 c 0 - 220.110351562 352 256 316.110351562 256 272 c 0 - 256 227.889648438 220.110351562 192 176 192 c 0 -528 320 m 2 - 589.860351562 320 640 269.860351562 640 208 c 2 - 640 16 l 2 - 640 7.16015625 632.83984375 0 624 0 c 2 - 592 0 l 2 - 583.16015625 0 576 7.16015625 576 16 c 2 - 576 64 l 1 - 64 64 l 1 - 64 16 l 2 - 64 7.16015625 56.83984375 0 48 0 c 2 - 16 0 l 2 - 7.16015625 0 0 7.16015625 0 16 c 2 - 0 368 l 2 - 0 376.83984375 7.16015625 384 16 384 c 2 - 48 384 l 2 - 56.83984375 384 64 376.83984375 64 368 c 2 - 64 160 l 1 - 288 160 l 1 - 288 304 l 2 - 288 312.83984375 295.16015625 320 304 320 c 2 - 528 320 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" b e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" B e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" B E D -EndChar - -StartChar: train -Encoding: 62008 62008 418 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 352 m 2 - 448 96 l 2 - 448 44.1845703125 386.375976562 0 317.977539062 0 c 1 - 380.958007812 -49.720703125 l 2 - 386.905273438 -54.4169921875 383.561523438 -64 376 -64 c 2 - 72 -64 l 2 - 64.421875 -64 61.1083984375 -54.40625 67.04296875 -49.720703125 c 2 - 130.022460938 0 l 1 - 61.8203125 0 0 44.0458984375 0 96 c 2 - 0 352 l 2 - 0 405.018554688 64 448 128 448 c 2 - 320 448 l 2 - 385 448 448 405.018554688 448 352 c 2 -400 216 m 2 - 400 328 l 2 - 400 341.254882812 389.254882812 352 376 352 c 2 - 72 352 l 2 - 58.7451171875 352 48 341.254882812 48 328 c 2 - 48 216 l 2 - 48 202.745117188 58.7451171875 192 72 192 c 2 - 376 192 l 2 - 389.254882812 192 400 202.745117188 400 216 c 2 -224 152 m 0 - 193.072265625 152 168 126.927734375 168 96 c 0 - 168 65.072265625 193.072265625 40 224 40 c 0 - 254.927734375 40 280 65.072265625 280 96 c 0 - 280 126.927734375 254.927734375 152 224 152 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" t r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" T r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" T R A I N -EndChar - -StartChar: subway -Encoding: 62009 62009 419 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 352 m 2 - 448 96 l 2 - 448 44.1845703125 386.375976562 0 317.977539062 0 c 1 - 380.958007812 -49.720703125 l 2 - 386.905273438 -54.4169921875 383.561523438 -64 376 -64 c 2 - 72 -64 l 2 - 64.421875 -64 61.1083984375 -54.40625 67.04296875 -49.720703125 c 2 - 130.022460938 0 l 1 - 61.8203125 0 0 44.0458984375 0 96 c 2 - 0 352 l 2 - 0 405.018554688 64 448 128 448 c 2 - 320 448 l 2 - 385 448 448 405.018554688 448 352 c 2 -200 216 m 2 - 200 328 l 2 - 200 341.254882812 189.254882812 352 176 352 c 2 - 72 352 l 2 - 58.7451171875 352 48 341.254882812 48 328 c 2 - 48 216 l 2 - 48 202.745117188 58.7451171875 192 72 192 c 2 - 176 192 l 2 - 189.254882812 192 200 202.745117188 200 216 c 2 -400 216 m 2 - 400 328 l 2 - 400 341.254882812 389.254882812 352 376 352 c 2 - 272 352 l 2 - 258.745117188 352 248 341.254882812 248 328 c 2 - 248 216 l 2 - 248 202.745117188 258.745117188 192 272 192 c 2 - 376 192 l 2 - 389.254882812 192 400 202.745117188 400 216 c 2 -352 160 m 0 - 325.490234375 160 304 138.509765625 304 112 c 0 - 304 85.490234375 325.490234375 64 352 64 c 0 - 378.509765625 64 400 85.490234375 400 112 c 0 - 400 138.509765625 378.509765625 160 352 160 c 0 -96 160 m 0 - 69.490234375 160 48 138.509765625 48 112 c 0 - 48 85.490234375 69.490234375 64 96 64 c 0 - 122.509765625 64 144 85.490234375 144 112 c 0 - 144 138.509765625 122.509765625 160 96 160 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" s u b w a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S u b w a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S U B W A Y -EndChar - -StartChar: battery-full -Encoding: 62016 62016 420 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 288 m 1 - 64 288 l 1 - 64 96 l 1 - 544 96 l 1 - 544 160 l 1 - 576 160 l 1 - 576 224 l 1 - 544 224 l 1 - 544 288 l 1 -560 352 m 2 - 586.509765625 352 608 330.509765625 608 304 c 2 - 608 288 l 1 - 616 288 l 2 - 629.254882812 288 640 277.254882812 640 264 c 2 - 640 120 l 2 - 640 106.745117188 629.254882812 96 616 96 c 2 - 608 96 l 1 - 608 80 l 2 - 608 53.490234375 586.509765625 32 560 32 c 2 - 48 32 l 2 - 21.490234375 32 0 53.490234375 0 80 c 2 - 0 304 l 2 - 0 330.509765625 21.490234375 352 48 352 c 2 - 560 352 l 2 -512 256 m 1 - 512 128 l 1 - 96 128 l 1 - 96 256 l 1 - 512 256 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" b a t t e r y hyphen f u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" B a t t e r y hyphen F u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" B a t t e r y hyphen f u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" B A T T E R Y hyphen F U L L -EndChar - -StartChar: battery-three-quarters -Encoding: 62017 62017 421 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 288 m 1 - 64 288 l 1 - 64 96 l 1 - 544 96 l 1 - 544 160 l 1 - 576 160 l 1 - 576 224 l 1 - 544 224 l 1 - 544 288 l 1 -560 352 m 2 - 586.509765625 352 608 330.509765625 608 304 c 2 - 608 288 l 1 - 616 288 l 2 - 629.254882812 288 640 277.254882812 640 264 c 2 - 640 120 l 2 - 640 106.745117188 629.254882812 96 616 96 c 2 - 608 96 l 1 - 608 80 l 2 - 608 53.490234375 586.509765625 32 560 32 c 2 - 48 32 l 2 - 21.490234375 32 0 53.490234375 0 80 c 2 - 0 304 l 2 - 0 330.509765625 21.490234375 352 48 352 c 2 - 560 352 l 2 -416 256 m 1 - 416 128 l 1 - 96 128 l 1 - 96 256 l 1 - 416 256 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 5" b a t t e r y hyphen t h r e e hyphen q u a r t e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 5" B a t t e r y hyphen T h r e e hyphen Q u a r t e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 5" B a t t e r y hyphen t h r e e hyphen q u a r t e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 5" B A T T E R Y hyphen T H R E E hyphen Q U A R T E R S -EndChar - -StartChar: battery-half -Encoding: 62018 62018 422 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 288 m 1 - 64 288 l 1 - 64 96 l 1 - 544 96 l 1 - 544 160 l 1 - 576 160 l 1 - 576 224 l 1 - 544 224 l 1 - 544 288 l 1 -560 352 m 2 - 586.509765625 352 608 330.509765625 608 304 c 2 - 608 288 l 1 - 616 288 l 2 - 629.254882812 288 640 277.254882812 640 264 c 2 - 640 120 l 2 - 640 106.745117188 629.254882812 96 616 96 c 2 - 608 96 l 1 - 608 80 l 2 - 608 53.490234375 586.509765625 32 560 32 c 2 - 48 32 l 2 - 21.490234375 32 0 53.490234375 0 80 c 2 - 0 304 l 2 - 0 330.509765625 21.490234375 352 48 352 c 2 - 560 352 l 2 -320 256 m 1 - 320 128 l 1 - 96 128 l 1 - 96 256 l 1 - 320 256 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" b a t t e r y hyphen h a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" B a t t e r y hyphen H a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" B a t t e r y hyphen h a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" B A T T E R Y hyphen H A L F -EndChar - -StartChar: battery-quarter -Encoding: 62019 62019 423 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 288 m 1 - 64 288 l 1 - 64 96 l 1 - 544 96 l 1 - 544 160 l 1 - 576 160 l 1 - 576 224 l 1 - 544 224 l 1 - 544 288 l 1 -560 352 m 2 - 586.509765625 352 608 330.509765625 608 304 c 2 - 608 288 l 1 - 616 288 l 2 - 629.254882812 288 640 277.254882812 640 264 c 2 - 640 120 l 2 - 640 106.745117188 629.254882812 96 616 96 c 2 - 608 96 l 1 - 608 80 l 2 - 608 53.490234375 586.509765625 32 560 32 c 2 - 48 32 l 2 - 21.490234375 32 0 53.490234375 0 80 c 2 - 0 304 l 2 - 0 330.509765625 21.490234375 352 48 352 c 2 - 560 352 l 2 -224 256 m 1 - 224 128 l 1 - 96 128 l 1 - 96 256 l 1 - 224 256 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" b a t t e r y hyphen q u a r t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" B a t t e r y hyphen Q u a r t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" B a t t e r y hyphen q u a r t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" B A T T E R Y hyphen Q U A R T E R -EndChar - -StartChar: battery-empty -Encoding: 62020 62020 424 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 288 m 1 - 64 288 l 1 - 64 96 l 1 - 544 96 l 1 - 544 160 l 1 - 576 160 l 1 - 576 224 l 1 - 544 224 l 1 - 544 288 l 1 -560 352 m 2 - 586.509765625 352 608 330.509765625 608 304 c 2 - 608 288 l 1 - 616 288 l 2 - 629.254882812 288 640 277.254882812 640 264 c 2 - 640 120 l 2 - 640 106.745117188 629.254882812 96 616 96 c 2 - 608 96 l 1 - 608 80 l 2 - 608 53.490234375 586.509765625 32 560 32 c 2 - 48 32 l 2 - 21.490234375 32 0 53.490234375 0 80 c 2 - 0 304 l 2 - 0 330.509765625 21.490234375 352 48 352 c 2 - 560 352 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" b a t t e r y hyphen e m p t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" B a t t e r y hyphen E m p t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" B a t t e r y hyphen e m p t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" B A T T E R Y hyphen E M P T Y -EndChar - -StartChar: mouse-pointer -Encoding: 62021 62021 425 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -302.189453125 118.874023438 m 2 - 196.10546875 118.874023438 l 1 - 251.935546875 -17.119140625 l 2 - 255.825195312 -26.546875 251.380859375 -37.1181640625 242.4921875 -41.1181640625 c 2 - 193.327148438 -62.544921875 l 2 - 184.162109375 -66.544921875 173.883789062 -61.9736328125 169.995117188 -52.8310546875 c 2 - 116.942382812 76.3046875 l 1 - 30.2783203125 -12.8330078125 l 2 - 18.728515625 -24.7099609375 0 -15.5537109375 0 0.0234375 c 2 - 0 429.701171875 l 2 - 0 446.100585938 19.9208984375 454.095703125 30.27734375 442.556640625 c 2 - 314.689453125 150.014648438 l 2 - 326.161132812 138.8359375 317.696289062 118.874023438 302.189453125 118.874023438 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" m o u s e hyphen p o i n t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" M o u s e hyphen P o i n t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" M o u s e hyphen p o i n t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" M O U S E hyphen P O I N T E R -EndChar - -StartChar: i-cursor -Encoding: 62022 62022 426 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 395.952148438 m 2 - 256 389.305664062 250.595703125 383.942382812 243.950195312 383.959960938 c 0 - 216.075195312 384.03125 160 380.75 160 335.818359375 c 2 - 160 224 l 1 - 196 224 l 2 - 202.626953125 224 208 218.626953125 208 212 c 2 - 208 172 l 2 - 208 165.373046875 202.626953125 160 196 160 c 2 - 160 160 l 1 - 160 48 l 2 - 160 3.060546875 217.888671875 -0.552734375 243.85546875 -0.2421875 c 0 - 250.541992188 -0.162109375 256 -5.552734375 256 -12.240234375 c 2 - 256 -51.884765625 l 2 - 256 -58.48046875 250.681640625 -63.841796875 244.086914062 -63.884765625 c 0 - 209.021484375 -64.11328125 165.734375 -63.2626953125 128 -26.0400390625 c 1 - 89.53125 -63.98828125 44.37890625 -64.3427734375 11.841796875 -63.93359375 c 0 - 5.2744140625 -63.8515625 0 -58.50390625 0 -51.9345703125 c 2 - 0 -11.9521484375 l 2 - 0 -5.3056640625 5.404296875 0.0576171875 12.0498046875 0.041015625 c 0 - 39.9248046875 -0.03125 96 3.068359375 96 48 c 2 - 96 160 l 1 - 60 160 l 2 - 53.373046875 160 48 165.373046875 48 172 c 2 - 48 212 l 2 - 48 218.626953125 53.373046875 224 60 224 c 2 - 96 224 l 1 - 96 335.818359375 l 2 - 96 380.756835938 38.111328125 384.552734375 12.14453125 384.243164062 c 0 - 5.4580078125 384.163085938 0 389.553710938 0 396.241210938 c 2 - 0 435.885742188 l 2 - 0 442.481445312 5.318359375 447.842773438 11.9130859375 447.885742188 c 0 - 46.978515625 448.114257812 90.265625 447.263671875 128 410.041015625 c 1 - 166.46875 447.989257812 211.62109375 448.34375 244.158203125 447.93359375 c 0 - 250.725585938 447.8515625 256 442.50390625 256 435.934570312 c 2 - 256 395.952148438 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" i hyphen c u r s o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" I hyphen C u r s o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" I hyphen c u r s o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" I hyphen C U R S O R -EndChar - -StartChar: object-group -Encoding: 62023 62023 427 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480 320 m 1 - 480 32 l 1 - 500 32 l 2 - 506.626953125 32 512 26.626953125 512 20 c 2 - 512 -20 l 2 - 512 -26.626953125 506.626953125 -32 500 -32 c 2 - 460 -32 l 2 - 453.373046875 -32 448 -26.626953125 448 -20 c 2 - 448 0 l 1 - 64 0 l 1 - 64 -20 l 2 - 64 -26.626953125 58.626953125 -32 52 -32 c 2 - 12 -32 l 2 - 5.373046875 -32 0 -26.626953125 0 -20 c 2 - 0 20 l 2 - 0 26.626953125 5.373046875 32 12 32 c 2 - 32 32 l 1 - 32 352 l 1 - 12 352 l 2 - 5.373046875 352 0 357.373046875 0 364 c 2 - 0 404 l 2 - 0 410.626953125 5.373046875 416 12 416 c 2 - 52 416 l 2 - 58.626953125 416 64 410.626953125 64 404 c 2 - 64 384 l 1 - 448 384 l 1 - 448 404 l 2 - 448 410.626953125 453.373046875 416 460 416 c 2 - 500 416 l 2 - 506.626953125 416 512 410.626953125 512 404 c 2 - 512 364 l 2 - 512 357.373046875 506.626953125 352 500 352 c 2 - 480 352 l 1 - 480 320 l 1 -96 172 m 2 - 96 165.373046875 101.373046875 160 108 160 c 2 - 276 160 l 2 - 282.626953125 160 288 165.373046875 288 172 c 2 - 288 308 l 2 - 288 314.626953125 282.626953125 320 276 320 c 2 - 108 320 l 2 - 101.373046875 320 96 314.626953125 96 308 c 2 - 96 172 l 2 -416 76 m 2 - 416 212 l 2 - 416 218.626953125 410.626953125 224 404 224 c 2 - 320 224 l 1 - 320 152 l 2 - 320 138.745117188 309.254882812 128 296 128 c 2 - 224 128 l 1 - 224 76 l 2 - 224 69.373046875 229.373046875 64 236 64 c 2 - 404 64 l 2 - 410.626953125 64 416 69.373046875 416 76 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" o b j e c t hyphen g r o u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" O b j e c t hyphen G r o u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" O b j e c t hyphen g r o u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" O B J E C T hyphen G R O U P -EndChar - -StartChar: object-ungroup -Encoding: 62024 62024 428 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -64 128 m 1 - 64 102 l 2 - 64 98.6884765625 61.3115234375 96 58 96 c 2 - 6 96 l 2 - 2.6884765625 96 0 98.6884765625 0 102 c 2 - 0 154 l 2 - 0 157.311523438 2.6884765625 160 6 160 c 2 - 32 160 l 1 - 32 352 l 1 - 6 352 l 2 - 2.6884765625 352 0 354.688476562 0 358 c 2 - 0 410 l 2 - 0 413.311523438 2.6884765625 416 6 416 c 2 - 58 416 l 2 - 61.3115234375 416 64 413.311523438 64 410 c 2 - 64 384 l 1 - 352 384 l 1 - 352 410 l 2 - 352 413.311523438 354.688476562 416 358 416 c 2 - 410 416 l 2 - 413.311523438 416 416 413.311523438 416 410 c 2 - 416 358 l 2 - 416 354.688476562 413.311523438 352 410 352 c 2 - 384 352 l 1 - 384 160 l 1 - 410 160 l 2 - 413.311523438 160 416 157.311523438 416 154 c 2 - 416 102 l 2 - 416 98.6884765625 413.311523438 96 410 96 c 2 - 358 96 l 2 - 354.688476562 96 352 98.6884765625 352 102 c 2 - 352 128 l 1 - 64 128 l 1 -544 192 m 1 - 544 32 l 1 - 570 32 l 2 - 573.311523438 32 576 29.3115234375 576 26 c 2 - 576 -26 l 2 - 576 -29.3115234375 573.311523438 -32 570 -32 c 2 - 518 -32 l 2 - 514.688476562 -32 512 -29.3115234375 512 -26 c 2 - 512 0 l 1 - 224 0 l 1 - 224 -26 l 2 - 224 -29.3115234375 221.311523438 -32 218 -32 c 2 - 166 -32 l 2 - 162.688476562 -32 160 -29.3115234375 160 -26 c 2 - 160 26 l 2 - 160 29.3115234375 162.688476562 32 166 32 c 2 - 192 32 l 1 - 192 104 l 1 - 328 104 l 1 - 328 96 l 2 - 328 82.7451171875 338.745117188 72 352 72 c 2 - 416 72 l 2 - 429.254882812 72 440 82.7451171875 440 96 c 2 - 440 160 l 2 - 440 173.254882812 429.254882812 184 416 184 c 2 - 408 184 l 1 - 408 256 l 1 - 512 256 l 1 - 512 282 l 2 - 512 285.311523438 514.688476562 288 518 288 c 2 - 570 288 l 2 - 573.311523438 288 576 285.311523438 576 282 c 2 - 576 230 l 2 - 576 226.688476562 573.311523438 224 570 224 c 2 - 544 224 l 1 - 544 192 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" o b j e c t hyphen u n g r o u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" O b j e c t hyphen U n g r o u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" O b j e c t hyphen u n g r o u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" O B J E C T hyphen U N G R O U P -EndChar - -StartChar: sticky-note -Encoding: 62025 62025 429 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -312 128 m 2 - 298.799804688 128 288 117.200195312 288 104 c 2 - 288 -32 l 1 - 24 -32 l 2 - 10.7001953125 -32 0 -21.2998046875 0 -8 c 2 - 0 392 l 2 - 0 405.299804688 10.7001953125 416 24 416 c 2 - 424 416 l 2 - 437.299804688 416 448 405.299804688 448 392 c 2 - 448 128 l 1 - 312 128 l 2 -441 73 m 2 - 343 -25 l 2 - 338.5 -29.5 332.400390625 -32 326 -32 c 2 - 320 -32 l 1 - 320 96 l 1 - 448 96 l 1 - 448 89.900390625 l 2 - 448 83.599609375 445.5 77.5 441 73 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" s t i c k y hyphen n o t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S t i c k y hyphen N o t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S t i c k y hyphen n o t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S T I C K Y hyphen N O T E -EndChar - -StartChar: clone -Encoding: 62029 62029 430 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 448 m 2 - 490.509765625 448 512 426.509765625 512 400 c 2 - 512 112 l 2 - 512 85.490234375 490.509765625 64 464 64 c 2 - 176 64 l 2 - 149.490234375 64 128 85.490234375 128 112 c 2 - 128 400 l 2 - 128 426.509765625 149.490234375 448 176 448 c 2 - 464 448 l 2 -176 32 m 2 - 384 32 l 1 - 384 -16 l 2 - 384 -42.509765625 362.509765625 -64 336 -64 c 2 - 48 -64 l 2 - 21.490234375 -64 0 -42.509765625 0 -16 c 2 - 0 272 l 2 - 0 298.509765625 21.490234375 320 48 320 c 2 - 96 320 l 1 - 96 112 l 2 - 96 67.8876953125 131.887695312 32 176 32 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" c l o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C l o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C L O N E -EndChar - -StartChar: balance-scale -Encoding: 62030 62030 431 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 112 m 1 - 256 67.8203125 198.690429688 32 128 32 c 0 - 57.3095703125 32 0 67.8203125 0 112 c 1 - 0.01953125 112 l 1 - 0.01953125 127.669921875 -2.0595703125 119.25 85.0595703125 293.509765625 c 0 - 102.740234375 328.870117188 153.280273438 328.799804688 170.9296875 293.509765625 c 0 - 257.3203125 120.73046875 255.98046875 128.1796875 255.98046875 112 c 1 - 256 112 l 1 -128 272 m 1 - 56 128 l 1 - 200 128 l 1 - 128 272 l 1 -639.98046875 112 m 0 - 639.98046875 67.8203125 582.690429688 32 512 32 c 0 - 441.309570312 32 384 67.8203125 384 112 c 1 - 384.01953125 112 l 1 - 384.01953125 127.669921875 381.940429688 119.25 469.059570312 293.509765625 c 0 - 486.740234375 328.870117188 537.280273438 328.799804688 554.9296875 293.509765625 c 0 - 641.3203125 120.73046875 639.98046875 128.1796875 639.98046875 112 c 0 -440 128 m 1 - 584 128 l 1 - 512 272 l 1 - 440 128 l 1 -528 0 m 2 - 536.83984375 0 544 -7.16015625 544 -16 c 2 - 544 -48 l 2 - 544 -56.83984375 536.83984375 -64 528 -64 c 2 - 112 -64 l 2 - 103.16015625 -64 96 -56.83984375 96 -48 c 2 - 96 -16 l 2 - 96 -7.16015625 103.16015625 0 112 0 c 2 - 288 0 l 1 - 288 294.75 l 1 - 264.48046875 305.040039062 246.83984375 326.240234375 241.610351562 352 c 1 - 112 352 l 2 - 103.16015625 352 96 359.16015625 96 368 c 2 - 96 400 l 2 - 96 408.83984375 103.16015625 416 112 416 c 2 - 256.360351562 416 l 1 - 270.959960938 435.3203125 293.91015625 448 320 448 c 0 - 346.08984375 448 369.040039062 435.3203125 383.639648438 416 c 1 - 528 416 l 2 - 536.83984375 416 544 408.83984375 544 400 c 2 - 544 368 l 2 - 544 359.16015625 536.83984375 352 528 352 c 2 - 398.389648438 352 l 1 - 393.16015625 326.23046875 375.509765625 305.040039062 352 294.75 c 1 - 352 0 l 1 - 528 0 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" b a l a n c e hyphen s c a l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" B a l a n c e hyphen S c a l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" B a l a n c e hyphen s c a l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" B A L A N C E hyphen S C A L E -EndChar - -StartChar: hourglass-start -Encoding: 62033 62033 432 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -360 448 m 2 - 373.254882812 448 384 437.254882812 384 424 c 2 - 384 408 l 2 - 384 394.745117188 373.254882812 384 360 384 c 1 - 360 293.03515625 308.984375 216.265625 239.158203125 192 c 1 - 308.984375 167.734375 360 90.96484375 360 0 c 1 - 373.254882812 0 384 -10.7451171875 384 -24 c 2 - 384 -40 l 2 - 384 -53.2548828125 373.254882812 -64 360 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 -24 l 2 - 0 -10.7451171875 10.7451171875 0 24 0 c 1 - 24 90.96484375 75.015625 167.734375 144.841796875 192 c 1 - 75.015625 216.265625 24 293.03515625 24 384 c 1 - 10.7451171875 384 0 394.745117188 0 408 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 360 448 l 2 -296 0 m 1 - 296 77.4833984375 249.786132812 144 192 144 c 0 - 134.204101562 144 88 77.4580078125 88 0 c 1 - 296 0 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" h o u r g l a s s hyphen s t a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H o u r g l a s s hyphen S t a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H o u r g l a s s hyphen s t a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H O U R G L A S S hyphen S T A R T -EndChar - -StartChar: hourglass-half -Encoding: 62034 62034 433 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -360 448 m 2 - 373.254882812 448 384 437.254882812 384 424 c 2 - 384 408 l 2 - 384 394.745117188 373.254882812 384 360 384 c 1 - 360 293.03515625 308.984375 216.265625 239.158203125 192 c 1 - 308.984375 167.734375 360 90.96484375 360 0 c 1 - 373.254882812 0 384 -10.7451171875 384 -24 c 2 - 384 -40 l 2 - 384 -53.2548828125 373.254882812 -64 360 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 -24 l 2 - 0 -10.7451171875 10.7451171875 0 24 0 c 1 - 24 90.96484375 75.015625 167.734375 144.841796875 192 c 1 - 75.015625 216.265625 24 293.03515625 24 384 c 1 - 10.7451171875 384 0 394.745117188 0 408 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 360 448 l 2 -284.921875 64 m 1 - 267.862304688 110.803710938 232.821289062 144 192 144 c 0 - 151.17578125 144 116.138671875 110.796875 99.080078125 64 c 1 - 284.921875 64 l 1 -284.94140625 320 m 1 - 292.012695312 339.413085938 296 361.1953125 296 384 c 1 - 88 384 l 1 - 88 361.251953125 91.98828125 339.452148438 99.078125 320 c 1 - 284.94140625 320 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" h o u r g l a s s hyphen h a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" H o u r g l a s s hyphen H a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" H o u r g l a s s hyphen h a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" H O U R G L A S S hyphen H A L F -EndChar - -StartChar: hourglass-end -Encoding: 62035 62035 434 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -360 384 m 1 - 360 293.03515625 308.984375 216.265625 239.158203125 192 c 1 - 308.984375 167.734375 360 90.96484375 360 0 c 1 - 373.254882812 0 384 -10.7451171875 384 -24 c 2 - 384 -40 l 2 - 384 -53.2548828125 373.254882812 -64 360 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 -24 l 2 - 0 -10.7451171875 10.7451171875 0 24 0 c 1 - 24 90.96484375 75.015625 167.734375 144.841796875 192 c 1 - 75.015625 216.265625 24 293.03515625 24 384 c 1 - 10.7451171875 384 0 394.745117188 0 408 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 360 448 l 2 - 373.254882812 448 384 437.254882812 384 424 c 2 - 384 408 l 2 - 384 394.745117188 373.254882812 384 360 384 c 1 -192 240 m 0 - 249.490234375 240 296 306.0546875 296 384 c 1 - 88 384 l 1 - 88 306.517578125 134.212890625 240 192 240 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" h o u r g l a s s hyphen e n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" H o u r g l a s s hyphen E n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" H o u r g l a s s hyphen e n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" H O U R G L A S S hyphen E N D -EndChar - -StartChar: hourglass -Encoding: 62036 62036 435 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -360 384 m 1 - 360 293.03515625 308.984375 216.265625 239.158203125 192 c 1 - 308.984375 167.734375 360 90.96484375 360 0 c 1 - 373.254882812 0 384 -10.7451171875 384 -24 c 2 - 384 -40 l 2 - 384 -53.2548828125 373.254882812 -64 360 -64 c 2 - 24 -64 l 2 - 10.7451171875 -64 0 -53.2548828125 0 -40 c 2 - 0 -24 l 2 - 0 -10.7451171875 10.7451171875 0 24 0 c 1 - 24 90.96484375 75.015625 167.734375 144.841796875 192 c 1 - 75.015625 216.265625 24 293.03515625 24 384 c 1 - 10.7451171875 384 0 394.745117188 0 408 c 2 - 0 424 l 2 - 0 437.254882812 10.7451171875 448 24 448 c 2 - 360 448 l 2 - 373.254882812 448 384 437.254882812 384 424 c 2 - 384 408 l 2 - 384 394.745117188 373.254882812 384 360 384 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" h o u r g l a s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" H o u r g l a s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" H O U R G L A S S -EndChar - -StartChar: hand-rock -Encoding: 62037 62037 436 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464.799804688 368 m 0 - 491.099609375 367.599609375 512 345.5 512 319.200195312 c 2 - 512 185.700195312 l 2 - 512 172.900390625 509.5 160.200195312 504.5 148.400390625 c 2 - 455.5 32.099609375 l 2 - 450.599609375 20.2998046875 448 7.599609375 448 -5.2001953125 c 2 - 448 -8.099609375 l 2 - 448 -21.400390625 437.299804688 -32.099609375 424 -32.099609375 c 2 - 184 -32.099609375 l 2 - 170.700195312 -32.099609375 160 -21.400390625 160 -8.099609375 c 2 - 160 -1.400390625 l 2 - 160 12.2998046875 154.099609375 25.400390625 143.900390625 34.5 c 2 - 32.2001953125 133.799804688 l 2 - 11.7001953125 152.099609375 0 178.200195312 0 205.599609375 c 2 - 0 272 l 2 - 0 298.799804688 21.900390625 320.400390625 48.7998046875 320 c 0 - 75.099609375 319.5 96 297.5 96 271.200195312 c 2 - 96 223.099609375 l 1 - 104 216 l 1 - 104 352 l 2 - 104 378.799804688 125.900390625 400.400390625 152.799804688 400 c 0 - 179.099609375 399.5 200 377.5 200 351.200195312 c 2 - 200 320 l 1 - 208 320 l 1 - 208 368 l 2 - 208 394.799804688 229.900390625 416.400390625 256.799804688 416 c 0 - 283.099609375 415.5 304 393.5 304 367.200195312 c 2 - 304 320 l 1 - 312 320 l 1 - 312 352 l 2 - 312 378.799804688 333.900390625 400.400390625 360.799804688 400 c 0 - 387.099609375 399.5 408 377.5 408 351.200195312 c 2 - 408 320 l 1 - 416 320 l 1 - 416 346.799804688 437.900390625 368.400390625 464.799804688 368 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" h a n d hyphen r o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" H a n d hyphen r o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" H A N D hyphen R O C K -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" H a n d hyphen R o c k -EndChar - -StartChar: hand-paper -Encoding: 62038 62038 437 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -408.78125 319.993164062 m 0 - 430.51171875 319.577148438 448 301.831054688 447.999023438 280 c 2 - 447.999023438 129.640625 l 2 - 447.999023438 117.340820312 445.711914062 97.6396484375 442.89453125 85.666015625 c 2 - 416.38671875 -26.994140625 l 2 - 411.28515625 -48.67578125 391.936523438 -64 369.663085938 -64 c 2 - 172.073242188 -64 l 2 - 158.581054688 -64 141.189453125 -55.1435546875 133.25390625 -44.232421875 c 2 - 7.6533203125 128.47265625 l 2 - -5.33984375 146.33984375 -1.3896484375 171.356445312 16.474609375 184.349609375 c 0 - 34.3427734375 197.34375 59.359375 193.392578125 72.3515625 175.52734375 c 2 - 104 132.0078125 l 1 - 104 368 l 2 - 104 389.831054688 121.48828125 407.577148438 143.21875 407.993164062 c 0 - 165.643554688 408.421875 184 389.639648438 184 367.209960938 c 2 - 184 192 l 1 - 192 192 l 1 - 192 408 l 2 - 192 429.831054688 209.48828125 447.577148438 231.21875 447.993164062 c 0 - 253.643554688 448.421875 272 429.639648438 272 407.209960938 c 2 - 272 192 l 1 - 280 192 l 1 - 280 369 l 2 - 280 390.831054688 297.48828125 408.577148438 319.21875 408.993164062 c 0 - 341.643554688 409.421875 360 390.639648438 360 368.209960938 c 2 - 360 192 l 1 - 368 192 l 1 - 368 279.209960938 l 2 - 368 301.639648438 386.356445312 320.421875 408.78125 319.993164062 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" h a n d hyphen p a p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" H a n d hyphen P a p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" H a n d hyphen p a p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" H A N D hyphen P A P E R -EndChar - -StartChar: hand-scissors -Encoding: 62039 62039 438 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -216 8 m 0 - 216 30.091796875 233.909179688 48 256 48 c 1 - 256 56 l 1 - 224 56 l 2 - 201.909179688 56 184 73.908203125 184 96 c 0 - 184 118.091796875 201.909179688 136 224 136 c 2 - 256 136 l 1 - 256 144 l 1 - 48 144 l 2 - 21.490234375 144 0 165.490234375 0 192 c 0 - 0 218.509765625 21.490234375 240 48 240 c 2 - 256 240 l 1 - 256 253.572265625 l 1 - 78.44921875 323.311523438 l 2 - 53.775390625 333.005859375 41.630859375 360.8671875 51.32421875 385.540039062 c 0 - 61.0166015625 410.213867188 88.8779296875 422.357421875 113.551757812 412.6640625 c 2 - 303.893554688 337.899414062 l 1 - 328.765625 368.989257812 l 2 - 341.072265625 384.370117188 362.744140625 388.50390625 379.846679688 378.73046875 c 2 - 491.846679688 314.73046875 l 2 - 502.971679688 308.372070312 512 292.813476562 512 280 c 2 - 512 40 l 2 - 512 21.4384765625 499.23046875 5.314453125 481.162109375 1.0634765625 c 2 - 345.162109375 -30.9365234375 l 2 - 342.66796875 -31.5234375 338.565429688 -32 336.00390625 -32 c 2 - 336 -32 l 1 - 256 -32 l 2 - 233.909179688 -32 216 -14.091796875 216 8 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" h a n d hyphen s c i s s o r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" H a n d hyphen S c i s s o r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" H a n d hyphen s c i s s o r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" H A N D hyphen S C I S S O R S -EndChar - -StartChar: hand-lizard -Encoding: 62040 62040 439 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 -32 m 1 - 384 29.4609375 l 2 - 384 36.75 379.002929688 45.83203125 372.845703125 49.734375 c 2 - 261.09765625 120.544921875 l 2 - 254.604492188 124.66015625 243.094726562 128 235.407226562 128 c 2 - 235.40625 128 l 1 - 88 128 l 2 - 74.7451171875 128 64 138.745117188 64 152 c 2 - 64 160 l 2 - 64 195.345703125 92.654296875 224 128 224 c 2 - 251.6484375 224 l 2 - 263.423828125 224 276.657226562 232.822265625 281.185546875 243.692382812 c 2 - 302.595703125 295.077148438 l 2 - 307.537109375 306.932617188 298.825195312 320 285.981445312 320 c 2 - 56 320 l 2 - 25.072265625 320 0 345.072265625 0 376 c 2 - 0 392 l 2 - 0 405.254882812 10.7451171875 416 24 416 c 2 - 357.543945312 416 l 2 - 372.147460938 416 390.329101562 405.979492188 398.126953125 393.631835938 c 2 - 561.166992188 135.485351562 l 2 - 569.354492188 122.521484375 576 99.5556640625 576 84.22265625 c 2 - 576 84.2216796875 l 1 - 576 -32 l 1 - 384 -32 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" h a n d hyphen l i z a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" H a n d hyphen L i z a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" H a n d hyphen l i z a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" H A N D hyphen L I Z A R D -EndChar - -StartChar: hand-spock -Encoding: 62041 62041 440 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -481.299804688 350.900390625 m 0 - 502.700195312 345.799804688 516 324.200195312 511 302.700195312 c 2 - 474.700195312 150.200195312 l 2 - 473 143 472.099609375 135.5 472.099609375 128 c 2 - 472.099609375 86 l 2 - 472.099609375 76.7001953125 470.700195312 67.599609375 468.099609375 58.7001953125 c 2 - 441.900390625 -29.599609375 l 2 - 435.900390625 -50 417.200195312 -64 395.900390625 -64 c 2 - 179.200195312 -64 l 2 - 167 -64 155.200195312 -59.400390625 146.299804688 -51 c 2 - 12.599609375 74.900390625 l 2 - -3.5 90 -4.2001953125 115.299804688 10.900390625 131.400390625 c 0 - 26 147.5 51.2998046875 148.200195312 67.400390625 133.099609375 c 2 - 128 76.099609375 l 1 - 128 155.5 l 1 - 89 327.099609375 l 2 - 84.099609375 348.700195312 97.599609375 370.099609375 119.099609375 375 c 0 - 140.700195312 379.900390625 162.099609375 366.400390625 167 344.900390625 c 2 - 201.799804688 192.099609375 l 1 - 211.599609375 192.099609375 l 1 - 164 399.099609375 l 2 - 159 420.599609375 172.5 442.099609375 194 447 c 0 - 215.599609375 451.900390625 237 438.5 242 416.900390625 c 2 - 293.700195312 192 l 1 - 308.799804688 192 l 1 - 357.200195312 385.700195312 l 2 - 362.599609375 407.099609375 384.299804688 420.200195312 405.700195312 414.799804688 c 0 - 427.099609375 409.400390625 440.200195312 387.700195312 434.799804688 366.299804688 c 2 - 391.200195312 192 l 1 - 402.299804688 192 l 1 - 433.099609375 321.299804688 l 2 - 438.200195312 342.700195312 459.799804688 356 481.299804688 350.900390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" h a n d hyphen s p o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H a n d hyphen S p o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H a n d hyphen s p o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H A N D hyphen S P O C K -EndChar - -StartChar: hand-pointer -Encoding: 62042 62042 441 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 208 m 2 - 448 112 l 2 - 448 108.916015625 447.643554688 105.840820312 446.936523438 102.837890625 c 2 - 414.936523438 -33.162109375 l 2 - 410.685546875 -51.23046875 394.561523438 -64 376 -64 c 2 - 168 -64 l 2 - 156.756835938 -64 142.263671875 -56.6201171875 135.650390625 -47.52734375 c 2 - 7.6533203125 128.47265625 l 2 - -5.33984375 146.338867188 -1.3896484375 171.356445312 16.474609375 184.348632812 c 0 - 34.341796875 197.342773438 59.359375 193.391601562 72.3515625 175.526367188 c 2 - 104 132.0078125 l 1 - 104 408 l 2 - 104 430.090820312 121.908203125 448 144 448 c 0 - 166.091796875 448 184 430.090820312 184 408 c 2 - 184 208 l 1 - 192 208 l 1 - 192 248 l 2 - 192 270.090820312 209.908203125 288 232 288 c 0 - 254.091796875 288 272 270.090820312 272 248 c 2 - 272 208 l 1 - 280 208 l 1 - 280 232 l 2 - 280 254.090820312 297.908203125 272 320 272 c 0 - 342.091796875 272 360 254.090820312 360 232 c 2 - 360 208 l 1 - 368 208 l 1 - 368 230.090820312 385.908203125 248 408 248 c 0 - 430.091796875 248 448 230.090820312 448 208 c 2 -192 128 m 1 - 184 128 l 1 - 184 32 l 1 - 192 32 l 1 - 192 128 l 1 -280 128 m 1 - 272 128 l 1 - 272 32 l 1 - 280 32 l 1 - 280 128 l 1 -368 128 m 1 - 360 128 l 1 - 360 32 l 1 - 368 32 l 1 - 368 128 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" h a n d hyphen p o i n t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" H a n d hyphen P o i n t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" H a n d hyphen p o i n t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" H A N D hyphen P O I N T E R -EndChar - -StartChar: hand-peace -Encoding: 62043 62043 442 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -408 232 m 0 - 430.091796875 232 448 214.090820312 448 192 c 2 - 448 112 l 1 - 448 111.995117188 l 2 - 448 109.43359375 447.5234375 105.331054688 446.936523438 102.837890625 c 2 - 414.936523438 -33.162109375 l 2 - 410.685546875 -51.23046875 394.561523438 -64 376 -64 c 2 - 136 -64 l 1 - 135.999023438 -64 l 2 - 123.186523438 -64 107.627929688 -54.970703125 101.271484375 -43.845703125 c 2 - 37.271484375 68.154296875 l 2 - 27.4970703125 85.2568359375 31.630859375 106.928710938 47.01171875 119.235351562 c 2 - 78.1015625 144.107421875 l 1 - 3.3369140625 334.44921875 l 2 - -6.3564453125 359.123046875 5.787109375 386.983398438 30.4609375 396.67578125 c 0 - 55.1337890625 406.370117188 82.994140625 394.225585938 92.6884765625 369.55078125 c 2 - 162.427734375 192 l 1 - 176 192 l 1 - 176 400 l 2 - 176 426.509765625 197.490234375 448 224 448 c 0 - 250.509765625 448 272 426.509765625 272 400 c 2 - 272 192 l 1 - 280 192 l 1 - 280 224 l 2 - 280 246.090820312 297.908203125 264 320 264 c 0 - 342.091796875 264 360 246.090820312 360 224 c 2 - 360 192 l 1 - 368 192 l 1 - 368 214.090820312 385.908203125 232 408 232 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" h a n d hyphen p e a c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" H a n d hyphen P e a c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" H a n d hyphen p e a c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" H A N D hyphen P E A C E -EndChar - -StartChar: trademark -Encoding: 62044 62044 443 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -260.599609375 352 m 2 - 267.200195312 352 272.599609375 346.599609375 272.5 340 c 2 - 272.5 296.900390625 l 2 - 272.5 290.299804688 267.099609375 284.900390625 260.5 284.900390625 c 2 - 175.400390625 284.900390625 l 1 - 175.400390625 44 l 2 - 175.400390625 37.400390625 170 32 163.400390625 32 c 2 - 109.099609375 32 l 2 - 102.5 32 97.099609375 37.400390625 97.099609375 44 c 2 - 97.099609375 284.900390625 l 1 - 12 284.900390625 l 2 - 5.400390625 284.900390625 0 290.299804688 0 296.900390625 c 2 - 0 340 l 2 - 0 346.599609375 5.400390625 352 12 352 c 2 - 260.599609375 352 l 2 -640 45 m 2 - 640.5 38 635 32 628 32 c 2 - 574.099609375 32 l 2 - 567.799804688 32 562.5 36.900390625 562.099609375 43.2001953125 c 2 - 553 176.099609375 l 2 - 551.200195312 200.299804688 553 229.799804688 553 229.799804688 c 1 - 552.099609375 229.799804688 l 1 - 552.099609375 229.799804688 541.400390625 196.200195312 534.200195312 176.099609375 c 2 - 503.5 91.400390625 l 2 - 501.799804688 86.7001953125 497.299804688 83.5 492.200195312 83.5 c 2 - 441.900390625 83.5 l 2 - 436.799804688 83.5 432.299804688 86.7001953125 430.599609375 91.400390625 c 2 - 399.900390625 176.099609375 l 2 - 392.700195312 196.200195312 382 229.799804688 382 229.799804688 c 1 - 381.099609375 229.799804688 l 1 - 381.099609375 229.799804688 382.900390625 200.299804688 381.099609375 176.099609375 c 2 - 372 43.2001953125 l 2 - 371.5 36.900390625 366.299804688 32 360 32 c 2 - 305.5 32 l 2 - 298.400390625 32 292.900390625 38 293.5 45 c 2 - 317.900390625 341 l 2 - 318.5 347.200195312 323.700195312 352 329.900390625 352 c 2 - 395.299804688 352 l 2 - 400.400390625 352 404.900390625 348.700195312 406.599609375 343.900390625 c 2 - 450.400390625 216.799804688 l 2 - 457.599609375 196.200195312 466.5 164 466.5 164 c 1 - 467.400390625 164 l 1 - 467.400390625 164 476.299804688 196.200195312 483.5 216.799804688 c 2 - 527.299804688 343.900390625 l 2 - 528.900390625 348.700195312 533.5 352 538.599609375 352 c 2 - 604 352 l 2 - 610.299804688 352 615.5 347.200195312 616 341 c 2 - 640 45 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" t r a d e m a r k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" T r a d e m a r k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" T R A D E M A R K -EndChar - -StartChar: registered -Encoding: 62045 62045 444 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -285.36328125 240.525390625 m 0 - 285.36328125 221.924804688 275.532226562 212.09375 256.931640625 212.09375 c 2 - 227.055664062 212.09375 l 1 - 227.055664062 268.234375 l 1 - 250.43359375 268.234375 l 2 - 279.1015625 268.234375 285.36328125 259.4609375 285.36328125 240.525390625 c 0 -504 192 m 0 - 504 55.033203125 392.966796875 -56 256 -56 c 0 - 119.033203125 -56 8 55.033203125 8 192 c 0 - 8 328.966796875 119.033203125 440 256 440 c 0 - 392.966796875 440 504 328.966796875 504 192 c 0 -363.411132812 87.5859375 m 0 - 316.681640625 172.411132812 320.112304688 166.221679688 318.708984375 168.56640625 c 0 - 342.140625 183.73828125 356.654296875 211.544921875 356.654296875 243.051757812 c 0 - 356.654296875 297.295898438 325.154296875 332.303710938 251.15625 332.303710938 c 2 - 180.489257812 332.303710938 l 2 - 167.234375 332.303710938 156.489257812 321.55859375 156.489257812 308.303710938 c 2 - 156.489257812 76 l 2 - 156.489257812 62.7451171875 167.234375 52 180.489257812 52 c 2 - 203.055664062 52 l 2 - 216.310546875 52 227.055664062 62.7451171875 227.055664062 76 c 2 - 227.055664062 147.663085938 l 1 - 252.612304688 147.663085938 l 1 - 296.741210938 64.7255859375 l 2 - 300.479492188 57.701171875 309.971679688 51.9990234375 317.928710938 51.9990234375 c 2 - 342.392578125 51.9990234375 l 2 - 360.654296875 52 372.221679688 71.58984375 363.411132812 87.5859375 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" r e g i s t e r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" R E G I S T E R E D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" R e g i s t e r e d -EndChar - -StartChar: tv -Encoding: 62060 62060 445 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -592 448 m 2 - 618.49609375 448 640 426.49609375 640 400 c 2 - 640 80 l 2 - 640 53.50390625 618.49609375 32 592 32 c 2 - 352 32 l 1 - 352 0 l 1 - 528 0 l 2 - 536.83203125 0 544 -7.16796875 544 -16 c 2 - 544 -48 l 2 - 544 -56.83203125 536.83203125 -64 528 -64 c 2 - 112 -64 l 2 - 103.16796875 -64 96 -56.83203125 96 -48 c 2 - 96 -16 l 2 - 96 -7.16796875 103.16796875 0 112 0 c 2 - 288 0 l 1 - 288 32 l 1 - 48 32 l 2 - 21.50390625 32 0 53.50390625 0 80 c 2 - 0 400 l 2 - 0 426.49609375 21.50390625 448 48 448 c 2 - 592 448 l 2 -576 96 m 1 - 576 384 l 1 - 64 384 l 1 - 64 96 l 1 - 576 96 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 63" t v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 63" T v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 63" T V -EndChar - -StartChar: calendar-plus -Encoding: 62065 62065 446 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -436 288 m 2 - 12 288 l 2 - 5.400390625 288 0 293.400390625 0 300 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 96 384 l 1 - 96 436 l 2 - 96 442.599609375 101.400390625 448 108 448 c 2 - 148 448 l 2 - 154.599609375 448 160 442.599609375 160 436 c 2 - 160 384 l 1 - 288 384 l 1 - 288 436 l 2 - 288 442.599609375 293.400390625 448 300 448 c 2 - 340 448 l 2 - 346.599609375 448 352 442.599609375 352 436 c 2 - 352 384 l 1 - 400 384 l 2 - 426.5 384 448 362.5 448 336 c 2 - 448 300 l 2 - 448 293.400390625 442.599609375 288 436 288 c 2 -12 256 m 2 - 436 256 l 2 - 442.599609375 256 448 250.599609375 448 244 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 244 l 2 - 0 250.599609375 5.400390625 256 12 256 c 2 -328 116 m 2 - 328 122.599609375 322.599609375 128 316 128 c 2 - 256 128 l 1 - 256 188 l 2 - 256 194.599609375 250.599609375 200 244 200 c 2 - 204 200 l 2 - 197.400390625 200 192 194.599609375 192 188 c 2 - 192 128 l 1 - 132 128 l 2 - 125.400390625 128 120 122.599609375 120 116 c 2 - 120 76 l 2 - 120 69.400390625 125.400390625 64 132 64 c 2 - 192 64 l 1 - 192 4 l 2 - 192 -2.599609375 197.400390625 -8 204 -8 c 2 - 244 -8 l 2 - 250.599609375 -8 256 -2.599609375 256 4 c 2 - 256 64 l 1 - 316 64 l 2 - 322.599609375 64 328 69.400390625 328 76 c 2 - 328 116 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" c a l e n d a r hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" C a l e n d a r hyphen P l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" C a l e n d a r hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" C A L E N D A R hyphen P L U S -EndChar - -StartChar: calendar-minus -Encoding: 62066 62066 447 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -436 288 m 2 - 12 288 l 2 - 5.400390625 288 0 293.400390625 0 300 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 96 384 l 1 - 96 436 l 2 - 96 442.599609375 101.400390625 448 108 448 c 2 - 148 448 l 2 - 154.599609375 448 160 442.599609375 160 436 c 2 - 160 384 l 1 - 288 384 l 1 - 288 436 l 2 - 288 442.599609375 293.400390625 448 300 448 c 2 - 340 448 l 2 - 346.599609375 448 352 442.599609375 352 436 c 2 - 352 384 l 1 - 400 384 l 2 - 426.5 384 448 362.5 448 336 c 2 - 448 300 l 2 - 448 293.400390625 442.599609375 288 436 288 c 2 -12 256 m 2 - 436 256 l 2 - 442.599609375 256 448 250.599609375 448 244 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 244 l 2 - 0 250.599609375 5.400390625 256 12 256 c 2 -316 64 m 2 - 322.599609375 64 328 69.400390625 328 76 c 2 - 328 116 l 2 - 328 122.599609375 322.599609375 128 316 128 c 2 - 132 128 l 2 - 125.400390625 128 120 122.599609375 120 116 c 2 - 120 76 l 2 - 120 69.400390625 125.400390625 64 132 64 c 2 - 316 64 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" c a l e n d a r hyphen m i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C a l e n d a r hyphen M i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C a l e n d a r hyphen m i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C A L E N D A R hyphen M I N U S -EndChar - -StartChar: calendar-times -Encoding: 62067 62067 448 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -436 288 m 2 - 12 288 l 2 - 5.400390625 288 0 293.400390625 0 300 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 96 384 l 1 - 96 436 l 2 - 96 442.599609375 101.400390625 448 108 448 c 2 - 148 448 l 2 - 154.599609375 448 160 442.599609375 160 436 c 2 - 160 384 l 1 - 288 384 l 1 - 288 436 l 2 - 288 442.599609375 293.400390625 448 300 448 c 2 - 340 448 l 2 - 346.599609375 448 352 442.599609375 352 436 c 2 - 352 384 l 1 - 400 384 l 2 - 426.5 384 448 362.5 448 336 c 2 - 448 300 l 2 - 448 293.400390625 442.599609375 288 436 288 c 2 -12 256 m 2 - 436 256 l 2 - 442.599609375 256 448 250.599609375 448 244 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 244 l 2 - 0 250.599609375 5.400390625 256 12 256 c 2 -269.299804688 96 m 1 - 317.400390625 144.099609375 l 2 - 322.099609375 148.799804688 322.099609375 156.400390625 317.400390625 161.099609375 c 2 - 289.099609375 189.400390625 l 2 - 284.400390625 194.099609375 276.799804688 194.099609375 272.099609375 189.400390625 c 2 - 224 141.299804688 l 1 - 175.900390625 189.400390625 l 2 - 171.200195312 194.099609375 163.599609375 194.099609375 158.900390625 189.400390625 c 2 - 130.599609375 161.099609375 l 2 - 125.900390625 156.400390625 125.900390625 148.799804688 130.599609375 144.099609375 c 2 - 178.700195312 96 l 1 - 130.599609375 47.900390625 l 2 - 125.900390625 43.2001953125 125.900390625 35.599609375 130.599609375 30.900390625 c 2 - 158.900390625 2.599609375 l 2 - 163.599609375 -2.099609375 171.200195312 -2.099609375 175.900390625 2.599609375 c 2 - 224 50.7001953125 l 1 - 272.099609375 2.599609375 l 2 - 276.799804688 -2.099609375 284.400390625 -2.099609375 289.099609375 2.599609375 c 2 - 317.400390625 30.900390625 l 2 - 322.099609375 35.599609375 322.099609375 43.2001953125 317.400390625 47.900390625 c 2 - 269.299804688 96 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" c a l e n d a r hyphen t i m e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" C a l e n d a r hyphen T i m e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" C a l e n d a r hyphen t i m e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" C A L E N D A R hyphen T I M E S -EndChar - -StartChar: calendar-check -Encoding: 62068 62068 449 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -436 288 m 2 - 12 288 l 2 - 5.373046875 288 0 293.373046875 0 300 c 2 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 96 384 l 1 - 96 436 l 2 - 96 442.626953125 101.373046875 448 108 448 c 2 - 148 448 l 2 - 154.626953125 448 160 442.626953125 160 436 c 2 - 160 384 l 1 - 288 384 l 1 - 288 436 l 2 - 288 442.626953125 293.373046875 448 300 448 c 2 - 340 448 l 2 - 346.626953125 448 352 442.626953125 352 436 c 2 - 352 384 l 1 - 400 384 l 2 - 426.509765625 384 448 362.509765625 448 336 c 2 - 448 300 l 2 - 448 293.373046875 442.626953125 288 436 288 c 2 -12 256 m 2 - 436 256 l 2 - 442.626953125 256 448 250.626953125 448 244 c 2 - 448 -16 l 2 - 448 -42.509765625 426.509765625 -64 400 -64 c 2 - 48 -64 l 2 - 21.490234375 -64 0 -42.509765625 0 -16 c 2 - 0 244 l 2 - 0 250.626953125 5.373046875 256 12 256 c 2 -345.295898438 160.052734375 m 2 - 317.126953125 188.451171875 l 2 - 312.459960938 193.15625 304.862304688 193.186523438 300.157226562 188.518554688 c 2 - 194.120117188 83.3349609375 l 1 - 148.139648438 129.686523438 l 2 - 143.47265625 134.391601562 135.874023438 134.422851562 131.168945312 129.754882812 c 2 - 102.772460938 101.584960938 l 2 - 98.0673828125 96.91796875 98.0361328125 89.3203125 102.704101562 84.615234375 c 2 - 185.3046875 1.345703125 l 2 - 189.971679688 -3.359375 197.5703125 -3.3896484375 202.275390625 1.2783203125 c 2 - 345.227539062 143.083007812 l 2 - 349.932617188 147.75 349.963867188 155.34765625 345.295898438 160.052734375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" c a l e n d a r hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C a l e n d a r hyphen C h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C a l e n d a r hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C A L E N D A R hyphen C H E C K -EndChar - -StartChar: industry -Encoding: 62069 62069 450 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -475.115234375 284.21875 m 2 - 491.069335938 294.370117188 512 282.887695312 512 263.970703125 c 2 - 512 -8 l 2 - 512 -21.2548828125 501.254882812 -32 488 -32 c 2 - 24 -32 l 2 - 10.7451171875 -32 0 -21.2548828125 0 -8 c 2 - 0 392 l 2 - 0 405.254882812 10.7451171875 416 24 416 c 2 - 136 416 l 2 - 149.254882812 416 160 405.254882812 160 392 c 2 - 160 195.69140625 l 1 - 299.115234375 284.21875 l 2 - 315.069335938 294.370117188 336 282.88671875 336 263.970703125 c 2 - 336 195.69140625 l 1 - 475.115234375 284.21875 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" i n d u s t r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" I n d u s t r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" I N D U S T R Y -EndChar - -StartChar: map-pin -Encoding: 62070 62070 451 -Width: 288 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -112 131.059570312 m 1 - 122.389648438 129.139648438 133.059570312 128 144 128 c 0 - 154.940429688 128 165.610351562 129.139648438 176 131.059570312 c 1 - 176 -25.6298828125 l 1 - 153.990234375 -58.650390625 l 2 - 149.240234375 -65.76953125 138.76953125 -65.76953125 134.01953125 -58.650390625 c 2 - 112 -25.6298828125 l 1 - 112 131.059570312 l 1 -144 448 m 0 - 223.530273438 448 288 383.530273438 288 304 c 0 - 288 224.469726562 223.530273438 160 144 160 c 0 - 64.4697265625 160 0 224.469726562 0 304 c 0 - 0 383.530273438 64.4697265625 448 144 448 c 0 -144 372 m 0 - 150.620117188 372 156 377.379882812 156 384 c 0 - 156 390.620117188 150.620117188 396 144 396 c 0 - 93.2802734375 396 52 354.73046875 52 304 c 0 - 52 297.379882812 57.3798828125 292 64 292 c 0 - 70.6201171875 292 76 297.379882812 76 304 c 0 - 76 341.5 106.5 372 144 372 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" m a p hyphen p i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" M a p hyphen P i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" M a p hyphen p i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" M A P hyphen P I N -EndChar - -StartChar: map-signs -Encoding: 62071 62071 452 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -507.309570312 363.309570312 m 2 - 513.559570312 357.059570312 513.559570312 346.940429688 507.309570312 340.6796875 c 2 - 464 297.370117188 l 2 - 457.990234375 291.370117188 449.860351562 288 441.370117188 288 c 2 - 56 288 l 2 - 42.75 288 32 298.75 32 312 c 2 - 32 392 l 2 - 32 405.25 42.75 416 56 416 c 2 - 224 416 l 1 - 224 432 l 2 - 224 440.83984375 231.16015625 448 240 448 c 2 - 272 448 l 2 - 280.83984375 448 288 440.83984375 288 432 c 2 - 288 416 l 1 - 441.370117188 416 l 2 - 449.860351562 416 458 412.629882812 464 406.629882812 c 2 - 507.309570312 363.309570312 l 2 -224 -48 m 2 - 224 64 l 1 - 288 64 l 1 - 288 -48 l 2 - 288 -56.83984375 280.83984375 -64 272 -64 c 2 - 240 -64 l 2 - 231.16015625 -64 224 -56.83984375 224 -48 c 2 -456 224 m 2 - 469.25 224 480 213.25 480 200 c 2 - 480 120 l 2 - 480 106.75 469.25 96 456 96 c 2 - 70.6298828125 96 l 2 - 62.1396484375 96 54 99.3701171875 48 105.370117188 c 2 - 4.6904296875 148.6796875 l 2 - -1.5595703125 154.9296875 -1.5595703125 165.059570312 4.6904296875 171.309570312 c 2 - 48 214.629882812 l 2 - 54.009765625 220.629882812 62.1396484375 224 70.6298828125 224 c 2 - 224 224 l 1 - 224 256 l 1 - 288 256 l 1 - 288 224 l 1 - 456 224 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" m a p hyphen s i g n s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" M a p hyphen S i g n s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" M a p hyphen s i g n s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" M A P hyphen S I G N S -EndChar - -StartChar: map -Encoding: 62073 62073 453 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 330.33984375 m 2 - 0.0029296875 342.298828125 9.0166015625 355.608398438 20.1201171875 360.049804688 c 2 - 160 416 l 1 - 160 32 l 1 - 21.9404296875 -30.83984375 l 2 - 11.4296875 -35.0400390625 0 -27.2998046875 0 -15.98046875 c 2 - 0 330.33984375 l 2 -192 32 m 1 - 192 416 l 1 - 384 352 l 1 - 384 -32 l 1 - 192 32 l 1 -554.059570312 414.83984375 m 2 - 564.5703125 419.040039062 576 411.299804688 576 399.98046875 c 2 - 576 53.66015625 l 2 - 576 41.69921875 566.986328125 28.3896484375 555.879882812 23.9501953125 c 2 - 416 -32 l 1 - 416 352 l 1 - 554.059570312 414.83984375 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" m a p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" M A P -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" M a p -EndChar - -StartChar: comment-alt -Encoding: 62074 62074 454 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 448 m 2 - 483.299804688 448 512 419.299804688 512 384 c 2 - 512 96 l 2 - 512 60.7001953125 483.299804688 32 448 32 c 2 - 304 32 l 1 - 179.099609375 -61.7001953125 l 2 - 171.200195312 -67.5 160 -61.7998046875 160 -52 c 2 - 160 32 l 1 - 64 32 l 2 - 28.7001953125 32 0 60.7001953125 0 96 c 2 - 0 384 l 2 - 0 419.299804688 28.7001953125 448 64 448 c 2 - 448 448 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" c o m m e n t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C o m m e n t hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C o m m e n t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C O M M E N T hyphen A L T -EndChar - -StartChar: pause-circle -Encoding: 62091 62091 455 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -240 112 m 2 - 240 272 l 2 - 240 280.799804688 232.799804688 288 224 288 c 2 - 176 288 l 2 - 167.200195312 288 160 280.799804688 160 272 c 2 - 160 112 l 2 - 160 103.200195312 167.200195312 96 176 96 c 2 - 224 96 l 2 - 232.799804688 96 240 103.200195312 240 112 c 2 -352 112 m 2 - 352 272 l 2 - 352 280.799804688 344.799804688 288 336 288 c 2 - 288 288 l 2 - 279.200195312 288 272 280.799804688 272 272 c 2 - 272 112 l 2 - 272 103.200195312 279.200195312 96 288 96 c 2 - 336 96 l 2 - 344.799804688 96 352 103.200195312 352 112 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" p a u s e hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P a u s e hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P a u s e hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P A U S E hyphen C I R C L E -EndChar - -StartChar: stop-circle -Encoding: 62093 62093 456 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -352 112 m 2 - 352 272 l 2 - 352 280.799804688 344.799804688 288 336 288 c 2 - 176 288 l 2 - 167.200195312 288 160 280.799804688 160 272 c 2 - 160 112 l 2 - 160 103.200195312 167.200195312 96 176 96 c 2 - 336 96 l 2 - 344.799804688 96 352 103.200195312 352 112 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" s t o p hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S t o p hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S t o p hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S T O P hyphen C I R C L E -EndChar - -StartChar: shopping-bag -Encoding: 62096 62096 457 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -352 288 m 1 - 448 288 l 1 - 448 16 l 2 - 448 -28.1826171875 412.182617188 -64 368 -64 c 2 - 80 -64 l 2 - 35.8173828125 -64 0 -28.1826171875 0 16 c 2 - 0 288 l 1 - 96 288 l 1 - 96 320 l 2 - 96 390.580078125 153.419921875 448 224 448 c 0 - 294.579101562 448 352 390.580078125 352 320 c 2 - 352 288 l 1 -160 320 m 2 - 160 288 l 1 - 288 288 l 1 - 288 320 l 2 - 288 355.290039062 259.290039062 384 224 384 c 0 - 188.709960938 384 160 355.290039062 160 320 c 2 -320 200 m 0 - 333.254882812 200 344 210.745117188 344 224 c 0 - 344 237.254882812 333.254882812 248 320 248 c 0 - 306.745117188 248 296 237.254882812 296 224 c 0 - 296 210.745117188 306.745117188 200 320 200 c 0 -128 200 m 0 - 141.254882812 200 152 210.745117188 152 224 c 0 - 152 237.254882812 141.254882812 248 128 248 c 0 - 114.745117188 248 104 237.254882812 104 224 c 0 - 104 210.745117188 114.745117188 200 128 200 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" s h o p p i n g hyphen b a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" S h o p p i n g hyphen B a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" S h o p p i n g hyphen b a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" S H O P P I N G hyphen B A G -EndChar - -StartChar: shopping-basket -Encoding: 62097 62097 458 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -576 232 m 2 - 576 216 l 2 - 576 202.745117188 565.254882812 192 552 192 c 2 - 544 192 l 1 - 517.88671875 9.2119140625 l 2 - 514.508789062 -14.4345703125 494.256835938 -32 470.370117188 -32 c 2 - 105.629882812 -32 l 2 - 81.7431640625 -32 61.4912109375 -14.4345703125 58.1123046875 9.2119140625 c 2 - 32 192 l 1 - 24 192 l 2 - 10.7451171875 192 0 202.745117188 0 216 c 2 - 0 232 l 2 - 0 245.254882812 10.7451171875 256 24 256 c 2 - 91.3408203125 256 l 1 - 198.12109375 402.821289062 l 2 - 208.515625 417.11328125 228.528320312 420.274414062 242.822265625 409.87890625 c 0 - 257.115234375 399.484375 260.275390625 379.470703125 249.879882812 365.177734375 c 2 - 170.4765625 256 l 1 - 405.5234375 256 l 1 - 326.120117188 365.178710938 l 2 - 315.724609375 379.470703125 318.885742188 399.485351562 333.178710938 409.879882812 c 0 - 347.469726562 420.275390625 367.485351562 417.115234375 377.879882812 402.822265625 c 2 - 484.659179688 256 l 1 - 552 256 l 2 - 565.254882812 256 576 245.254882812 576 232 c 2 -312 56 m 2 - 312 168 l 2 - 312 181.254882812 301.254882812 192 288 192 c 0 - 274.745117188 192 264 181.254882812 264 168 c 2 - 264 56 l 2 - 264 42.7451171875 274.745117188 32 288 32 c 0 - 301.254882812 32 312 42.7451171875 312 56 c 2 -424 56 m 2 - 424 168 l 2 - 424 181.254882812 413.254882812 192 400 192 c 0 - 386.745117188 192 376 181.254882812 376 168 c 2 - 376 56 l 2 - 376 42.7451171875 386.745117188 32 400 32 c 0 - 413.254882812 32 424 42.7451171875 424 56 c 2 -200 56 m 2 - 200 168 l 2 - 200 181.254882812 189.254882812 192 176 192 c 0 - 162.745117188 192 152 181.254882812 152 168 c 2 - 152 56 l 2 - 152 42.7451171875 162.745117188 32 176 32 c 0 - 189.254882812 32 200 42.7451171875 200 56 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" s h o p p i n g hyphen b a s k e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" S h o p p i n g hyphen B a s k e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" S h o p p i n g hyphen b a s k e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" S H O P P I N G hyphen B A S K E T -EndChar - -StartChar: hashtag -Encoding: 62098 62098 459 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -440.666992188 265.890625 m 2 - 439.692382812 260.431640625 434.400390625 256 428.853515625 256 c 2 - 349.7578125 256 l 1 - 326.901367188 128 l 1 - 401.7109375 128 l 2 - 409.181640625 128 414.836914062 121.24609375 413.524414062 113.890625 c 2 - 406.380859375 73.890625 l 2 - 405.40625 68.431640625 400.114257812 64 394.568359375 64 c 2 - 315.471679688 64 l 1 - 300.094726562 -22.109375 l 2 - 299.120117188 -27.568359375 293.828125 -32 288.282226562 -32 c 2 - 247.650390625 -32 l 2 - 240.177734375 -32 234.5234375 -25.24609375 235.836914062 -17.890625 c 2 - 250.459960938 64 l 1 - 151.826171875 64 l 1 - 136.448242188 -22.109375 l 2 - 135.473632812 -27.568359375 130.180664062 -32 124.634765625 -32 c 2 - 84.0029296875 -32 l 2 - 76.5322265625 -32 70.876953125 -25.24609375 72.1904296875 -17.890625 c 2 - 86.8134765625 64 l 1 - 12.0029296875 64 l 2 - 4.5322265625 64 -1.123046875 70.75390625 0.1904296875 78.109375 c 2 - 7.3330078125 118.109375 l 2 - 8.3076171875 123.568359375 13.599609375 128 19.146484375 128 c 2 - 98.2421875 128 l 1 - 121.098632812 256 l 1 - 46.2890625 256 l 2 - 38.818359375 256 33.1630859375 262.75390625 34.4755859375 270.109375 c 2 - 41.619140625 310.109375 l 2 - 42.59375 315.568359375 47.8857421875 320 53.431640625 320 c 2 - 132.528320312 320 l 1 - 147.905273438 406.109375 l 2 - 148.879882812 411.568359375 154.171875 416 159.717773438 416 c 2 - 200.349609375 416 l 2 - 207.822265625 416 213.4765625 409.24609375 212.163085938 401.890625 c 2 - 197.540039062 320 l 1 - 296.174804688 320 l 1 - 311.551757812 406.109375 l 2 - 312.526367188 411.568359375 317.819335938 416 323.365234375 416 c 2 - 363.997070312 416 l 2 - 371.467773438 416 377.123046875 409.24609375 375.809570312 401.890625 c 2 - 361.186523438 320 l 1 - 435.997070312 320 l 2 - 443.467773438 320 449.123046875 313.24609375 447.809570312 305.890625 c 2 - 440.666992188 265.890625 l 2 -261.888671875 128 m 1 - 284.74609375 256 l 1 - 186.112304688 256 l 1 - 163.254882812 128 l 1 - 261.888671875 128 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" h a s h t a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" H A S H T A G -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" H a s h t a g -EndChar - -StartChar: percent -Encoding: 62101 62101 460 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -112 224 m 0 - 50.099609375 224 0 274.099609375 0 336 c 0 - 0 397.900390625 50.099609375 448 112 448 c 0 - 173.900390625 448 224 397.900390625 224 336 c 0 - 224 274.099609375 173.900390625 224 112 224 c 0 -112 384 m 0 - 85.5 384 64 362.5 64 336 c 0 - 64 309.5 85.5 288 112 288 c 0 - 138.5 288 160 309.5 160 336 c 0 - 160 362.5 138.5 384 112 384 c 0 -336 160 m 0 - 397.900390625 160 448 109.900390625 448 48 c 0 - 448 -13.900390625 397.900390625 -64 336 -64 c 0 - 274.099609375 -64 224 -13.900390625 224 48 c 0 - 224 109.900390625 274.099609375 160 336 160 c 0 -336 0 m 0 - 362.5 0 384 21.5 384 48 c 0 - 384 74.5 362.5 96 336 96 c 0 - 309.5 96 288 74.5 288 48 c 0 - 288 21.5 309.5 0 336 0 c 0 -392.299804688 447.799804688 m 2 - 423.900390625 447.900390625 l 2 - 443.299804688 448 454.799804688 426.099609375 443.599609375 410.099609375 c 2 - 77.400390625 -53.599609375 l 2 - 73.4541015625 -59.2275390625 64.6728515625 -63.796875 57.7998046875 -63.7998046875 c 2 - 24.400390625 -63.900390625 l 2 - 4.900390625 -63.900390625 -6.5 -42 4.7001953125 -26.099609375 c 2 - 372.700195312 437.599609375 l 2 - 377.200195312 444 384.5 447.799804688 392.299804688 447.799804688 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" p e r c e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" P e r c e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" P E R C E N T -EndChar - -StartChar: universal-access -Encoding: 62106 62106 461 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 400 m 0 - 141.029296875 400 48 306.953125 48 192 c 0 - 48 77.029296875 141.046875 -16 256 -16 c 0 - 370.970703125 -16 464 77.046875 464 192 c 0 - 464 306.970703125 370.953125 400 256 400 c 0 -256 440 m 0 - 392.966796875 440 504 328.966796875 504 192 c 0 - 504 55.033203125 392.966796875 -56 256 -56 c 0 - 119.033203125 -56 8 55.033203125 8 192 c 0 - 8 328.966796875 119.033203125 440 256 440 c 0 -256 384 m 0 - 362.0390625 384 448 298.0390625 448 192 c 0 - 448 85.9609375 362.0390625 0 256 0 c 0 - 149.9609375 0 64 85.9609375 64 192 c 0 - 64 298.0390625 149.9609375 384 256 384 c 0 -256 340 m 0 - 236.118164062 340 220 323.881835938 220 304 c 0 - 220 284.118164062 236.118164062 268 256 268 c 0 - 275.881835938 268 292 284.118164062 292 304 c 0 - 292 323.881835938 275.881835938 340 256 340 c 0 -373.741210938 241.9765625 m 0 - 382.340820312 244.006835938 387.666992188 252.625 385.637695312 261.225585938 c 0 - 383.607421875 269.827148438 374.98828125 275.151367188 366.388671875 273.12109375 c 0 - 269.897460938 250.337890625 242.299804688 250.291992188 145.614257812 273.12109375 c 0 - 137.01171875 275.15234375 128.396484375 269.827148438 126.365234375 261.225585938 c 0 - 124.333984375 252.625 129.66015625 244.0078125 138.259765625 241.9765625 c 0 - 166.97265625 235.197265625 193.772460938 229.227539062 220.401367188 226.169921875 c 1 - 219.548828125 125.08984375 208.077148438 103.08984375 195.364257812 70.548828125 c 0 - 191.747070312 61.2900390625 196.321289062 50.8505859375 205.581054688 47.234375 c 0 - 214.845703125 43.615234375 225.28125 48.1962890625 228.896484375 57.451171875 c 0 - 237.624023438 79.7919921875 245.991210938 98.1494140625 251.158203125 136 c 1 - 260.84375 136 l 1 - 266.018554688 98.0869140625 274.400390625 79.7587890625 283.10546875 57.451171875 c 0 - 286.721679688 48.19140625 297.16015625 43.6171875 306.420898438 47.234375 c 0 - 315.680664062 50.8505859375 320.254882812 61.2890625 316.637695312 70.548828125 c 0 - 303.907226562 103.118164062 292.452148438 125.147460938 291.600585938 226.169921875 c 1 - 318.23046875 229.228515625 345.029296875 235.198242188 373.741210938 241.9765625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" u n i v e r s a l hyphen a c c e s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" U n i v e r s a l hyphen A c c e s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" U n i v e r s a l hyphen a c c e s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" U N I V E R S A L hyphen A C C E S S -EndChar - -StartChar: blind -Encoding: 62109 62109 462 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -380.150390625 -62.8369140625 m 0 - 379.09375 -63.4775390625 377.234375 -63.998046875 375.999023438 -63.998046875 c 0 - 373.514648438 -63.998046875 370.451171875 -62.2744140625 369.161132812 -60.150390625 c 2 - 243.831054688 146.27734375 l 1 - 248.087890625 147.965820312 253.892578125 152.21484375 256.7890625 155.76171875 c 1 - 382.836914062 -51.845703125 l 2 - 383.478515625 -52.90234375 383.999023438 -54.7626953125 383.999023438 -55.998046875 c 0 - 383.999023438 -58.4833984375 382.274414062 -61.5478515625 380.150390625 -62.8369140625 c 0 -142.802734375 133.662109375 m 1 - 205.6171875 -19.875 l 2 - 212.30859375 -36.2333984375 204.47265625 -54.9169921875 188.116210938 -61.609375 c 0 - 171.759765625 -68.2998046875 153.076171875 -60.4677734375 146.3828125 -44.1083984375 c 2 - 110.262695312 44.1767578125 l 1 - 142.802734375 133.662109375 l 1 -96 360 m 0 - 71.69921875 360 52 379.69921875 52 404 c 0 - 52 428.30078125 71.69921875 448 96 448 c 0 - 120.30078125 448 140 428.30078125 140 404 c 0 - 140 379.69921875 120.30078125 360 96 360 c 0 -250.836914062 190.872070312 m 2 - 259.030273438 180.498046875 257.28125 165.379882812 246.87109375 157.1640625 c 0 - 237.53125 149.790039062 222.307617188 149.544921875 213.163085938 161.12890625 c 2 - 110.86328125 290.345703125 l 2 - 110.200195312 291.182617188 108.795898438 291.861328125 107.728515625 291.861328125 c 0 - 105.520507812 291.861328125 103.728515625 290.068359375 103.728515625 287.860351562 c 0 - 103.728515625 287.090820312 104.116210938 285.977539062 104.59375 285.375 c 2 - 136 245.55859375 l 1 - 136 138.362304688 l 1 - 70.07421875 -42.92578125 l 2 - 64.033203125 -59.5400390625 45.6669921875 -68.1025390625 29.0654296875 -62.064453125 c 0 - 12.455078125 -56.0244140625 3.88671875 -37.6640625 9.9267578125 -21.0546875 c 2 - 64 127.638671875 l 1 - 64 268.336914062 l 1 - 48 247.765625 l 1 - 48 168 l 2 - 48 154.900390625 37.5048828125 144.251953125 24.4638671875 144.00390625 c 0 - 11.0107421875 143.749023438 0 155.084960938 0 168.540039062 c 2 - 0 264.234375 l 1 - 61.0556640625 342.734375 l 2 - 65.783203125 348.813476562 72.853515625 351.970703125 80 351.973632812 c 1 - 80 352 l 1 - 112 352 l 1 - 112 351.984375 l 1 - 119.086914062 351.98046875 126.103515625 348.8671875 130.836914062 342.872070312 c 2 - 250.836914062 190.872070312 l 2 -EndSplineSet -Validated: 524325 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" b l i n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" B l i n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" B L I N D -EndChar - -StartChar: audio-description -Encoding: 62110 62110 463 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -162.924804688 209.291015625 m 2 - 171.747070312 178.635742188 l 1 - 146.140625 178.635742188 l 1 - 155.181640625 209.288085938 l 2 - 156.458984375 213.708984375 157.833007812 219.282226562 159.053710938 224.533203125 c 1 - 160.274414062 219.282226562 161.6484375 213.709960938 162.924804688 209.291015625 c 2 -329.399414062 241.389648438 m 2 - 358.083984375 241.389648438 375.57421875 224.624023438 375.57421875 192.384765625 c 0 - 375.57421875 160.287109375 359.174804688 142.609375 329.399414062 142.609375 c 2 - 314.875976562 142.609375 l 1 - 314.875976562 241.389648438 l 1 - 329.399414062 241.389648438 l 2 -512 336 m 2 - 512 48 l 2 - 512 21.490234375 490.509765625 0 464 0 c 2 - 48 0 l 2 - 21.490234375 0 0 21.490234375 0 48 c 2 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 464 384 l 2 - 490.509765625 384 512 362.509765625 512 336 c 2 -245.458984375 111.861328125 m 2 - 188.362304688 279.861328125 l 2 - 186.834960938 284.353515625 181.745117188 288 177 288 c 2 - 141.106445312 288 l 2 - 136.361328125 288 131.270507812 284.353515625 129.744140625 279.861328125 c 2 - 72.6474609375 111.861328125 l 2 - 70.0029296875 104.078125 75.7890625 96 84.0087890625 96 c 2 - 113.141601562 96 l 2 - 118.133789062 96 123.301757812 99.89453125 124.676757812 104.693359375 c 2 - 133.250976562 134.598632812 l 1 - 184.618164062 134.598632812 l 1 - 193.411132812 104.622070312 l 2 - 194.807617188 99.8623046875 199.965820312 96 204.92578125 96 c 1 - 204.92578125 96 l 1 - 234.09765625 96 l 2 - 242.318359375 96 248.103515625 104.078125 245.458984375 111.861328125 c 2 -430.16015625 192.385742188 m 0 - 430.16015625 251.36328125 392.241210938 288 331.200195312 288 c 2 - 273.833984375 288 l 2 - 267.20703125 288 261.833984375 282.626953125 261.833984375 276 c 2 - 261.833984375 108 l 2 - 261.833984375 101.373046875 267.20703125 96 273.833984375 96 c 2 - 331.200195312 96 l 2 - 392.241210938 96 430.16015625 132.932617188 430.16015625 192.385742188 c 0 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" a u d i o hyphen d e s c r i p t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" A u d i o hyphen D e s c r i p t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" A u d i o hyphen d e s c r i p t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" A U D I O hyphen D E S C R I P T I O N -EndChar - -StartChar: phone-volume -Encoding: 62112 62112 464 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -97.3330078125 -58.9658203125 m 0 - -32.541015625 70.908203125 -32.34765625 281.286132812 97.3330078125 410.966796875 c 0 - 103.03125 416.665039062 111.860351562 417.598632812 118.595703125 413.388671875 c 2 - 183.413085938 372.875976562 l 2 - 187.872070312 370.088867188 191.491210938 363.559570312 191.491210938 358.30078125 c 0 - 191.491210938 356.473632812 190.940429688 353.614257812 190.26171875 351.91796875 c 2 - 157.853515625 270.897460938 l 2 - 155.46875 264.932617188 148.319335938 260.092773438 141.895507812 260.092773438 c 0 - 141.421875 260.092773438 140.65625 260.130859375 140.184570312 260.177734375 c 2 - 84.375 265.7578125 l 1 - 63.32421875 207.497070312 63.7626953125 143.287109375 84.375 86.2431640625 c 1 - 140.185546875 91.82421875 l 2 - 140.657226562 91.87109375 141.422851562 91.9091796875 141.896484375 91.9091796875 c 0 - 148.3203125 91.9091796875 155.469726562 87.0693359375 157.85546875 81.10546875 c 2 - 190.262695312 0.0830078125 l 2 - 190.94140625 -1.61328125 191.4921875 -4.47265625 191.4921875 -6.2998046875 c 0 - 191.4921875 -11.55859375 187.873046875 -18.087890625 183.4140625 -20.875 c 2 - 118.596679688 -61.3876953125 l 2 - 116.2890625 -62.830078125 112.208007812 -64 109.487304688 -64 c 0 - 105.557617188 -64 100.112304688 -61.7451171875 97.3330078125 -58.9658203125 c 0 -247.125976562 352.52734375 m 0 - 258.958007812 332.48046875 258.958007812 307.518554688 247.125976562 287.471679688 c 0 - 243.17578125 280.779296875 234.017578125 279.512695312 228.408203125 284.890625 c 2 - 222.432617188 290.6171875 l 2 - 218.522460938 294.365234375 217.639648438 300.239257812 220.171875 305.02734375 c 0 - 222.220703125 308.905273438 223.8828125 315.61328125 223.8828125 319.999023438 c 0 - 223.8828125 324.385742188 222.220703125 331.09375 220.171875 334.971679688 c 0 - 217.638671875 339.759765625 218.522460938 345.633789062 222.432617188 349.381835938 c 2 - 228.408203125 355.108398438 l 2 - 234.017578125 360.486328125 243.17578125 359.219726562 247.125976562 352.52734375 c 0 -338.913085938 443.713867188 m 0 - 399.052734375 372.110351562 399.004882812 267.83203125 338.913085938 196.286132812 c 0 - 334.439453125 190.958984375 326.3828125 190.540039062 321.361328125 195.352539062 c 2 - 315.563476562 200.91015625 l 2 - 311.002929688 205.28125 310.5859375 212.439453125 314.6328125 217.2890625 c 0 - 364.3203125 276.827148438 364.279296875 363.221679688 314.6328125 422.7109375 c 0 - 310.5859375 427.560546875 311.001953125 434.71875 315.563476562 439.08984375 c 2 - 321.361328125 444.647460938 l 2 - 326.3828125 449.459960938 334.439453125 449.041015625 338.913085938 443.713867188 c 0 -292.94140625 398.7734375 m 0 - 328.991210938 352.451171875 329.048828125 287.624023438 292.94140625 241.2265625 c 0 - 288.55078125 235.5859375 280.244140625 234.975585938 275.084960938 239.922851562 c 2 - 269.266601562 245.501953125 l 2 - 264.8671875 249.720703125 264.268554688 256.596679688 267.982421875 261.432617188 c 0 - 294.517578125 295.997070312 294.515625 344.004882812 267.982421875 378.567382812 c 0 - 264.268554688 383.403320312 264.8671875 390.278320312 269.266601562 394.498046875 c 2 - 275.084960938 400.077148438 l 2 - 280.244140625 405.024414062 288.55078125 404.4140625 292.94140625 398.7734375 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" p h o n e hyphen v o l u m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P h o n e hyphen V o l u m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P h o n e hyphen v o l u m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P H O N E hyphen V O L U M E -EndChar - -StartChar: braille -Encoding: 62113 62113 465 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128 192 m 0 - 128 156.654296875 99.345703125 128 64 128 c 0 - 28.654296875 128 0 156.654296875 0 192 c 0 - 0 227.345703125 28.654296875 256 64 256 c 0 - 99.345703125 256 128 227.345703125 128 192 c 0 -64 64 m 0 - 81.6728515625 64 96 49.6728515625 96 32 c 0 - 96 14.3271484375 81.6728515625 0 64 0 c 0 - 46.3271484375 0 32 14.3271484375 32 32 c 0 - 32 49.6728515625 46.3271484375 64 64 64 c 0 -64 416 m 0 - 99.345703125 416 128 387.345703125 128 352 c 0 - 128 316.654296875 99.345703125 288 64 288 c 0 - 28.654296875 288 0 316.654296875 0 352 c 0 - 0 387.345703125 28.654296875 416 64 416 c 0 -224 224 m 0 - 241.672851562 224 256 209.672851562 256 192 c 0 - 256 174.327148438 241.672851562 160 224 160 c 0 - 206.327148438 160 192 174.327148438 192 192 c 0 - 192 209.672851562 206.327148438 224 224 224 c 0 -224 64 m 0 - 241.672851562 64 256 49.6728515625 256 32 c 0 - 256 14.3271484375 241.672851562 0 224 0 c 0 - 206.327148438 0 192 14.3271484375 192 32 c 0 - 192 49.6728515625 206.327148438 64 224 64 c 0 -224 416 m 0 - 259.345703125 416 288 387.345703125 288 352 c 0 - 288 316.654296875 259.345703125 288 224 288 c 0 - 188.654296875 288 160 316.654296875 160 352 c 0 - 160 387.345703125 188.654296875 416 224 416 c 0 -448 224 m 0 - 465.672851562 224 480 209.672851562 480 192 c 0 - 480 174.327148438 465.672851562 160 448 160 c 0 - 430.327148438 160 416 174.327148438 416 192 c 0 - 416 209.672851562 430.327148438 224 448 224 c 0 -448 64 m 0 - 465.672851562 64 480 49.6728515625 480 32 c 0 - 480 14.3271484375 465.672851562 0 448 0 c 0 - 430.327148438 0 416 14.3271484375 416 32 c 0 - 416 49.6728515625 430.327148438 64 448 64 c 0 -448 416 m 0 - 483.345703125 416 512 387.345703125 512 352 c 0 - 512 316.654296875 483.345703125 288 448 288 c 0 - 412.654296875 288 384 316.654296875 384 352 c 0 - 384 387.345703125 412.654296875 416 448 416 c 0 -608 224 m 0 - 625.672851562 224 640 209.672851562 640 192 c 0 - 640 174.327148438 625.672851562 160 608 160 c 0 - 590.327148438 160 576 174.327148438 576 192 c 0 - 576 209.672851562 590.327148438 224 608 224 c 0 -608 64 m 0 - 625.672851562 64 640 49.6728515625 640 32 c 0 - 640 14.3271484375 625.672851562 0 608 0 c 0 - 590.327148438 0 576 14.3271484375 576 32 c 0 - 576 49.6728515625 590.327148438 64 608 64 c 0 -608 384 m 0 - 625.672851562 384 640 369.672851562 640 352 c 0 - 640 334.327148438 625.672851562 320 608 320 c 0 - 590.327148438 320 576 334.327148438 576 352 c 0 - 576 369.672851562 590.327148438 384 608 384 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" b r a i l l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" B r a i l l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" B R A I L L E -EndChar - -StartChar: assistive-listening-systems -Encoding: 62114 62114 466 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -216 188 m 0 - 216 172.536132812 203.463867188 160 188 160 c 0 - 172.536132812 160 160 172.536132812 160 188 c 0 - 160 232.112304688 195.887695312 268 240 268 c 0 - 284.112304688 268 320 232.112304688 320 188 c 0 - 320 172.536132812 307.463867188 160 292 160 c 0 - 276.536132812 160 264 172.536132812 264 188 c 0 - 264 201.234375 253.233398438 212 240 212 c 0 - 226.766601562 212 216 201.234375 216 188 c 0 -240 364 m 0 - 337.046875 364 416 285.046875 416 188 c 0 - 416 92.013671875 344.594726562 78.2021484375 344 43.7744140625 c 0 - 343.875976562 -15.671875 295.474609375 -64 236 -64 c 0 - 220.536132812 -64 208 -51.4638671875 208 -36 c 0 - 208 -20.5361328125 220.536132812 -8 236 -8 c 0 - 264.672851562 -8 288 15.3271484375 288 44 c 2 - 288.002929688 44.3779296875 l 2 - 288.991210938 117.689453125 360 112.8359375 360 188 c 0 - 360 254.16796875 306.16796875 308 240 308 c 0 - 173.83203125 308 120 254.16796875 120 188 c 0 - 120 172.536132812 107.463867188 160 92 160 c 0 - 76.5361328125 160 64 172.536132812 64 188 c 0 - 64 285.046875 142.953125 364 240 364 c 0 -160 128 m 0 - 177.672851562 128 192 113.672851562 192 96 c 0 - 192 78.3271484375 177.672851562 64 160 64 c 0 - 142.327148438 64 128 78.3271484375 128 96 c 0 - 128 113.672851562 142.327148438 128 160 128 c 0 -32 0 m 0 - 49.6728515625 0 64 -14.3271484375 64 -32 c 0 - 64 -49.6728515625 49.6728515625 -64 32 -64 c 0 - 14.3271484375 -64 0 -49.6728515625 0 -32 c 0 - 0 -14.3271484375 14.3271484375 0 32 0 c 0 -512 187.993164062 m 0 - 512 172.529296875 499.462890625 159.993164062 483.999023438 159.993164062 c 0 - 468.53515625 159.993164062 455.999023438 172.529296875 455.999023438 187.993164062 c 0 - 455.999023438 189.120117188 455.9921875 190.23828125 455.965820312 191.356445312 c 2 - 455.962890625 191.543945312 l 2 - 454.49609375 282.984375 395.791992188 364.142578125 309.885742188 393.497070312 c 0 - 295.25390625 398.498046875 287.444335938 414.4140625 292.444335938 429.046875 c 0 - 297.4453125 443.6796875 313.361328125 451.487304688 327.994140625 446.489257812 c 0 - 436.157226562 409.530273438 510.076171875 307.474609375 511.955078125 192.524414062 c 0 - 511.98828125 191.017578125 512 189.510742188 512 187.993164062 c 0 -152.970703125 8.970703125 m 1 - 119.030273438 -24.9697265625 l 1 - 39.0302734375 55.0302734375 l 1 - 72.970703125 88.970703125 l 1 - 152.970703125 8.970703125 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 1" a s s i s t i v e hyphen l i s t e n i n g hyphen s y s t e m s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 1" A s s i s t i v e hyphen L i s t e n i n g hyphen S y s t e m s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 1" A s s i s t i v e hyphen l i s t e n i n g hyphen s y s t e m s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 1" A S S I S T I V E hyphen L I S T E N I N G hyphen S Y S T E M S -EndChar - -StartChar: american-sign-language-interpreting -Encoding: 62115 62115 467 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -290.546875 258.9609375 m 0 - 270.251953125 269.110351562 246.400390625 270.16015625 225.807617188 262.850585938 c 1 - 268.4140625 262.850585938 297.015625 242.375976562 311.385742188 212.275390625 c 0 - 319.961914062 194.375976562 306.23828125 174.204101562 287.768554688 174.204101562 c 1 - 306.198242188 174.204101562 319.98046875 154.068359375 311.385742188 136.1328125 c 0 - 296.661132812 105.287109375 265.262695312 85.279296875 231.087890625 85.279296875 c 0 - 230.53125 85.279296875 136.6171875 93.8935546875 136.6171875 93.8935546875 c 1 - 70.2109375 60.546875 l 2 - 60.8271484375 55.853515625 50.396484375 60.16796875 46.31640625 68.328125 c 2 - 1.8603515625 157.252929688 l 2 - -2.306640625 165.868164062 0.7490234375 176.150390625 8.8056640625 180.874023438 c 2 - 66.8779296875 213.943359375 l 1 - 108 288.138671875 l 1 - 114.389648438 345.383789062 142.731445312 397.90625 187.743164062 434.865234375 c 0 - 199.133789062 444.313476562 216.083984375 442.646484375 225.252929688 431.251953125 c 0 - 234.69921875 419.858398438 233.033203125 403.184570312 221.640625 393.736328125 c 0 - 209.137695312 383.176757812 198.0234375 371.2265625 189.131835938 358.166015625 c 1 - 210.803710938 372.89453125 235.810546875 382.8984375 263.318359375 386.233398438 c 0 - 278.04296875 388.177734375 291.380859375 377.897460938 293.047851562 363.16796875 c 0 - 294.993164062 348.440429688 284.711914062 335.100585938 269.986328125 333.43359375 c 0 - 253.870117188 331.489257812 238.866210938 325.930664062 225.807617188 318.150390625 c 1 - 251.921875 323.86328125 284.51953125 321.288085938 313.88671875 307.03515625 c 0 - 327.22265625 300.366210938 332.780273438 284.526367188 326.111328125 271.186523438 c 0 - 319.721679688 258.126953125 303.607421875 252.5703125 290.546875 258.9609375 c 0 -263.318359375 189.489257812 m 0 - 257.206054688 201.994140625 244.98046875 209.775390625 231.086914062 209.775390625 c 2 - 230.981445312 209.775390625 l 2 - 211.408203125 209.775390625 195.521484375 193.888671875 195.521484375 174.315429688 c 0 - 195.521484375 174.28515625 195.521484375 174.235351562 195.522460938 174.205078125 c 0 - 195.522460938 152.77734375 213.330078125 138.634765625 231.086914062 138.634765625 c 0 - 244.98046875 138.634765625 257.206054688 146.416015625 263.318359375 158.920898438 c 0 - 267.763671875 168.370117188 276.931640625 173.926757812 286.657226562 174.205078125 c 1 - 276.931640625 174.482421875 267.763671875 180.040039062 263.318359375 189.489257812 c 0 -638.138671875 226.725585938 m 2 - 642.306640625 218.111328125 639.25 207.829101562 631.193359375 203.10546875 c 2 - 573.122070312 170.036132812 l 1 - 532 95.83984375 l 1 - 525.610351562 38.5947265625 497.268554688 -13.9267578125 452.256835938 -50.8857421875 c 0 - 441.325195312 -59.998046875 424.458007812 -59.0302734375 414.747070312 -47.2734375 c 0 - 405.30078125 -35.87890625 406.966796875 -19.2060546875 418.360351562 -9.7568359375 c 0 - 430.86328125 0.8017578125 441.9765625 12.751953125 450.868164062 25.8134765625 c 1 - 429.196289062 11.083984375 404.189453125 1.0810546875 376.681640625 -2.25390625 c 0 - 366.661132812 -4.759765625 349.129882812 3.388671875 346.952148438 20.810546875 c 0 - 345.006835938 35.5390625 355.288085938 48.8779296875 370.013671875 50.544921875 c 0 - 386.129882812 52.4912109375 401.133789062 58.0478515625 414.192382812 65.8291015625 c 1 - 388.078125 60.1162109375 355.48046875 62.69140625 326.11328125 76.9443359375 c 0 - 312.77734375 83.61328125 307.219726562 99.453125 313.888671875 112.791992188 c 0 - 320.278320312 125.852539062 336.393554688 131.411132812 349.454101562 125.018554688 c 0 - 369.749023438 114.870117188 393.600585938 113.8203125 414.193359375 121.12890625 c 1 - 371.586914062 121.12890625 342.985351562 141.603515625 328.615234375 171.705078125 c 0 - 320.0390625 189.603515625 333.762695312 209.776367188 352.232421875 209.776367188 c 1 - 333.802734375 209.776367188 320.021484375 229.912109375 328.615234375 247.846679688 c 0 - 342.6484375 277.243164062 372.654296875 298.734375 410.581054688 298.701171875 c 2 - 503.383789062 290.0859375 l 1 - 569.790039062 323.432617188 l 2 - 579.198242188 328.13671875 589.618164062 323.787109375 593.68359375 315.65234375 c 2 - 638.138671875 226.725585938 l 2 -408.912109375 245.34375 m 0 - 395.018554688 245.34375 382.79296875 237.563476562 376.680664062 225.057617188 c 0 - 372.235351562 215.609375 363.067382812 210.051757812 353.341796875 209.774414062 c 1 - 363.067382812 209.49609375 372.235351562 203.938476562 376.680664062 194.490234375 c 0 - 382.79296875 181.985351562 395.018554688 174.204101562 408.912109375 174.204101562 c 2 - 409.017578125 174.204101562 l 2 - 428.590820312 174.204101562 444.477539062 190.08984375 444.477539062 209.6640625 c 0 - 444.477539062 209.694335938 444.477539062 209.743164062 444.4765625 209.774414062 c 0 - 444.4765625 231.203125 426.668945312 245.34375 408.912109375 245.34375 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 0" a m e r i c a n hyphen s i g n hyphen l a n g u a g e hyphen i n t e r p r e t i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 0" A m e r i c a n hyphen S i g n hyphen L a n g u a g e hyphen I n t e r p r e t i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 0" A m e r i c a n hyphen s i g n hyphen l a n g u a g e hyphen i n t e r p r e t i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 0" A M E R I C A N hyphen S I G N hyphen L A N G U A G E hyphen I N T E R P R E T I N G -EndChar - -StartChar: deaf -Encoding: 62116 62116 468 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -216 188 m 0 - 216 172.536132812 203.463867188 160 188 160 c 0 - 172.536132812 160 160 172.536132812 160 188 c 0 - 160 232.112304688 195.887695312 268 240 268 c 0 - 284.112304688 268 320 232.112304688 320 188 c 0 - 320 172.536132812 307.463867188 160 292 160 c 0 - 276.536132812 160 264 172.536132812 264 188 c 0 - 264 201.234375 253.233398438 212 240 212 c 0 - 226.766601562 212 216 201.234375 216 188 c 0 -240 364 m 0 - 337.046875 364 416 285.046875 416 188 c 0 - 416 92.013671875 344.594726562 78.2021484375 344 43.7744140625 c 0 - 343.875976562 -15.671875 295.474609375 -64 236 -64 c 0 - 220.536132812 -64 208 -51.4638671875 208 -36 c 0 - 208 -20.5361328125 220.536132812 -8 236 -8 c 0 - 264.672851562 -8 288 15.3271484375 288 44 c 2 - 288.002929688 44.3779296875 l 2 - 288.991210938 117.689453125 360 112.8359375 360 188 c 0 - 360 254.16796875 306.16796875 308 240 308 c 0 - 173.83203125 308 120 254.16796875 120 188 c 0 - 120 172.536132812 107.463867188 160 92 160 c 0 - 76.5361328125 160 64 172.536132812 64 188 c 0 - 64 285.046875 142.953125 364 240 364 c 0 -508.485351562 416.201171875 m 2 - 513.171875 411.514648438 513.171875 403.916992188 508.485351562 399.228515625 c 2 - 421.455078125 312.200195312 l 2 - 416.768554688 307.513671875 409.170898438 307.513671875 404.485351562 312.200195312 c 2 - 376.200195312 340.485351562 l 2 - 371.513671875 345.171875 371.513671875 352.76953125 376.200195312 357.456054688 c 2 - 463.228515625 444.485351562 l 2 - 467.916015625 449.170898438 475.512695312 449.170898438 480.200195312 444.485351562 c 2 - 508.485351562 416.201171875 l 2 -168.969726562 133.254882812 m 2 - 197.255859375 104.970703125 l 2 - 201.942382812 100.284179688 201.942382812 92.685546875 197.255859375 88 c 2 - 48.771484375 -60.4853515625 l 2 - 44.083984375 -65.1708984375 36.4873046875 -65.1708984375 31.7998046875 -60.4853515625 c 2 - 3.5146484375 -32.201171875 l 2 - -1.1708984375 -27.513671875 -1.1708984375 -19.916015625 3.5146484375 -15.23046875 c 2 - 152 133.254882812 l 2 - 156.685546875 137.94140625 164.284179688 137.94140625 168.969726562 133.254882812 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" d e a f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" D e a f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" D E A F -EndChar - -StartChar: sign-language -Encoding: 62119 62119 469 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -91.43359375 -35.9873046875 m 0 - 91.126953125 -19.96875 104.54296875 -6.8583984375 120.564453125 -6.8583984375 c 2 - 182.857421875 -6.8583984375 l 1 - 182.857421875 -1.1435546875 l 1 - 56.9931640625 -1.1435546875 l 2 - 40.9716796875 -1.1435546875 27.5556640625 11.966796875 27.86328125 27.9853515625 c 0 - 28.16015625 43.5087890625 40.8349609375 56 56.427734375 56 c 2 - 182.857421875 56 l 1 - 182.857421875 61.7138671875 l 1 - 29.1357421875 61.7138671875 l 2 - 13.115234375 61.7138671875 -0.30078125 74.8251953125 0.005859375 90.8427734375 c 0 - 0.302734375 106.365234375 12.978515625 118.856445312 28.572265625 118.856445312 c 2 - 182.858398438 118.856445312 l 1 - 182.858398438 124.5703125 l 1 - 57.70703125 124.5703125 l 2 - 41.685546875 124.5703125 28.26953125 137.680664062 28.5771484375 153.69921875 c 0 - 28.8740234375 169.220703125 41.5498046875 181.711914062 57.142578125 181.711914062 c 2 - 225.708984375 181.711914062 l 1 - 194.624023438 204.318359375 l 2 - 181.862304688 213.598632812 179.041015625 231.466796875 188.322265625 244.23046875 c 0 - 197.602539062 256.991210938 215.471679688 259.811523438 228.234375 250.532226562 c 2 - 351.594726562 160.817382812 l 2 - 359.388671875 155.1484375 365.71484375 142.7265625 365.71484375 133.088867188 c 2 - 365.71484375 -8.046875 l 2 - 365.71484375 -23.95703125 354.768554688 -37.77734375 339.282226562 -41.4208984375 c 2 - 258.810546875 -60.35546875 l 2 - 250.258789062 -62.3671875 236.186523438 -64.0009765625 227.400390625 -64.0009765625 c 2 - 120 -64.0009765625 l 2 - 104.407226562 -64 91.7314453125 -51.5087890625 91.43359375 -35.9873046875 c 0 -164.682617188 189.713867188 m 1 - 128.311523438 236.423828125 l 2 - 118.732421875 248.7265625 120.799804688 266.403320312 132.865234375 276.173828125 c 0 - 145.315429688 286.256835938 163.90234375 283.7265625 173.745117188 271.0859375 c 2 - 186.749023438 254.385742188 l 1 - 169.606445312 238.737304688 171.33984375 211.361328125 189.918945312 197.849609375 c 2 - 201.106445312 189.713867188 l 1 - 164.682617188 189.713867188 l 1 -447.981445312 191.817382812 m 2 - 447.991210938 191.505859375 447.999023438 191.001953125 447.999023438 190.690429688 c 0 - 447.999023438 181.44140625 442.077148438 169.322265625 434.779296875 163.639648438 c 2 - 373.71484375 116.090820312 l 1 - 373.71484375 133.08984375 l 2 - 373.71484375 146.573242188 367.204101562 159.358398438 356.299804688 167.288085938 c 2 - 232.940429688 257.001953125 l 2 - 220.3046875 266.19140625 203.747070312 266.163085938 191.25 257.90625 c 1 - 139.197265625 324.754882812 l 2 - 129.353515625 337.396484375 131.456054688 356.037109375 144.283203125 365.635742188 c 0 - 156.712890625 374.938476562 174.356445312 372.611328125 183.935546875 360.307617188 c 2 - 261.611328125 260.553710938 l 1 - 266.120117188 264.065429688 l 1 - 171.676757812 385.352539062 l 2 - 161.833984375 397.994140625 163.935546875 416.634765625 176.762695312 426.234375 c 0 - 189.193359375 435.536132812 206.8359375 433.208984375 216.416015625 420.90625 c 2 - 311.206054688 299.171875 l 1 - 315.71484375 302.682617188 l 1 - 238.826171875 401.427734375 l 2 - 228.983398438 414.069335938 231.084960938 432.709960938 243.912109375 442.30859375 c 0 - 256.341796875 451.611328125 273.985351562 449.284179688 283.565429688 436.981445312 c 2 - 387.127929688 303.98046875 l 1 - 385.866210938 342.39453125 l 2 - 385.34765625 358.166015625 397.711914062 371.370117188 413.485351562 371.887695312 c 0 - 429.255859375 372.405273438 442.459960938 360.040039062 442.977539062 344.268554688 c 2 - 447.981445312 191.817382812 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" s i g n hyphen l a n g u a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" S i g n hyphen L a n g u a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" S i g n hyphen l a n g u a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" S I G N hyphen L A N G U A G E -EndChar - -StartChar: low-vision -Encoding: 62120 62120 470 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -569.34375 216.369140625 m 0 - 573.017578125 210.14453125 576 199.227539062 576 192 c 0 - 576 184.772460938 573.017578125 173.854492188 569.342773438 167.629882812 c 0 - 537.368164062 113.369140625 489.694335938 69.306640625 432.533203125 41.3291015625 c 1 - 432.540039062 41.3203125 l 1 - 475.66015625 -17.056640625 l 2 - 483.26171875 -27.916015625 480.620117188 -42.8818359375 469.759765625 -50.4833984375 c 2 - 456.646484375 -59.6611328125 l 2 - 445.787109375 -67.259765625 430.82421875 -64.619140625 423.22265625 -53.7607421875 c 2 - 171.38671875 302.783203125 l 1 - 160.20703125 297.689453125 142.834960938 288.029296875 132.610351562 281.219726562 c 1 - 322.58984375 9.8203125 l 1 - 313.063476562 8.8154296875 297.555664062 8 287.9765625 8 c 0 - 275.686523438 8 255.828125 9.33984375 243.650390625 10.990234375 c 1 - 203.01953125 69.0302734375 l 1 - 203.009765625 69.0302734375 l 1 - 83.6103515625 239.610351562 l 1 - 74.9658203125 230.356445312 62.2900390625 214.267578125 55.31640625 203.698242188 c 1 - 179.506835938 26.28125 l 1 - 106.389648438 51.767578125 45.1484375 102.297851562 6.6484375 167.629882812 c 0 - -2.31640625 182.840820312 -2.1171875 201.494140625 6.6484375 216.369140625 c 0 - 6.6591796875 216.385742188 6.671875 216.40234375 6.681640625 216.418945312 c 0 - 40.2275390625 273.317382812 89.44921875 316.26953125 143.471679688 342.661132812 c 1 - 100.340820312 401.055664062 l 2 - 92.7392578125 411.916015625 95.380859375 426.880859375 106.241210938 434.482421875 c 2 - 119.35546875 443.66015625 l 2 - 130.213867188 451.259765625 145.176757812 448.618164062 152.778320312 437.759765625 c 2 - 205.548828125 365.590820312 l 1 - 231.8984375 372.380859375 259.532226562 376 288 376 c 0 - 407.809570312 376 512.959960938 312.05078125 569.34375 216.369140625 c 0 -390.026367188 102.059570312 m 1 - 411.166992188 126.025390625 424 157.49609375 424 192 c 0 - 424 267.173828125 363.162109375 328 288 328 c 0 - 270.48828125 328 253.7578125 324.694335938 238.391601562 318.676757812 c 1 - 257.459960938 291.440429688 l 1 - 283.448242188 299.403320312 312.219726562 297.008789062 336.969726562 283.759765625 c 1 - 336.940429688 283.759765625 l 2 - 313.290039062 283.759765625 294.120117188 264.58984375 294.120117188 240.940429688 c 0 - 294.120117188 217.46875 313.112304688 198.120117188 336.940429688 198.120117188 c 0 - 360.58984375 198.120117188 379.759765625 217.290039062 379.759765625 240.940429688 c 2 - 379.759765625 240.969726562 l 1 - 398.670898438 205.642578125 395.641601562 161.857421875 370.959960938 129.290039062 c 1 - 390.026367188 102.059570312 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" l o w hyphen v i s i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" L o w hyphen V i s i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" L o w hyphen v i s i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" L O W hyphen V I S I O N -EndChar - -StartChar: handshake -Encoding: 62133 62133 471 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -434.700195312 384 m 2 - 443.200195312 384 451.400390625 380.599609375 457.299804688 374.599609375 c 2 - 511.900390625 320 l 1 - 511.900390625 126.5 l 2 - 509.5 129.200195312 506.900390625 131.799804688 504 134.200195312 c 2 - 358.400390625 252.400390625 l 1 - 384.5 276.299804688 l 2 - 391 282.299804688 391.5 292.400390625 385.5 298.900390625 c 0 - 379.599609375 305.400390625 369.400390625 305.799804688 362.900390625 299.900390625 c 2 - 283 226.700195312 l 2 - 282.900390625 226.599609375 282.700195312 226.599609375 282.599609375 226.5 c 0 - 265.900390625 211.599609375 239.200195312 215.299804688 226.5 229.200195312 c 0 - 212.299804688 244.700195312 212 269.599609375 228.599609375 285.200195312 c 0 - 228.700195312 285.299804688 228.799804688 285.5 228.900390625 285.599609375 c 2 - 327.200195312 375.599609375 l 2 - 333.099609375 381 340.799804688 384 348.799804688 384 c 2 - 434.700195312 384 l 2 -544 319.799804688 m 1 - 640 319.799804688 l 1 - 640 63.900390625 l 1 - 576 63.900390625 l 2 - 558.299804688 63.900390625 544 78.2001953125 544 95.900390625 c 2 - 544 319.799804688 l 1 -592 95.900390625 m 0 - 600.799804688 95.900390625 608 103.099609375 608 111.900390625 c 0 - 608 120.700195312 600.799804688 127.900390625 592 127.900390625 c 0 - 583.200195312 127.900390625 576 120.700195312 576 111.900390625 c 0 - 576 103.099609375 583.200195312 95.900390625 592 95.900390625 c 0 -0 64 m 1 - 0 319.799804688 l 1 - 96 319.799804688 l 1 - 96 96 l 2 - 96 78.2998046875 81.7001953125 64 64 64 c 2 - 0 64 l 1 -48 127.900390625 m 0 - 39.2001953125 127.900390625 32 120.799804688 32 111.900390625 c 0 - 32 103.099609375 39.2001953125 95.900390625 48 95.900390625 c 0 - 56.7998046875 95.900390625 64 103.099609375 64 111.900390625 c 0 - 64 120.700195312 56.7998046875 127.900390625 48 127.900390625 c 0 -483.900390625 109.299804688 m 2 - 497.599609375 98.099609375 499.700195312 78 488.5 64.2001953125 c 2 - 479 52.5 l 2 - 467.900390625 38.7001953125 447.700195312 36.7001953125 434 47.7998046875 c 2 - 428.599609375 52.2001953125 l 1 - 397.200195312 13.599609375 l 2 - 384.299804688 -2.2998046875 360.799804688 -4.7998046875 344.900390625 8.2001953125 c 2 - 327 23.7001953125 l 1 - 326.799804688 23.5 l 2 - 304.5 -3.900390625 264.200195312 -8.099609375 236.799804688 14.2001953125 c 2 - 146.299804688 96.099609375 l 1 - 128 96.099609375 l 1 - 128 320 l 1 - 182.700195312 374.599609375 l 2 - 188.700195312 380.599609375 196.799804688 384 205.299804688 384 c 2 - 289.099609375 384 l 1 - 207.299804688 309.099609375 l 2 - 178.099609375 282.299804688 176 236.799804688 202.900390625 207.400390625 c 0 - 229.400390625 178.5 274.900390625 175.900390625 304.599609375 203 c 2 - 334.599609375 230.5 l 1 - 483.900390625 109.299804688 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" h a n d s h a k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" H a n d s h a k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" H A N D S H A K E -EndChar - -StartChar: envelope-open -Encoding: 62134 62134 472 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 -16 m 2 - 512 -42.509765625 490.509765625 -64 464 -64 c 2 - 48 -64 l 2 - 21.490234375 -64 0 -42.509765625 0 -16 c 2 - 0 247.276367188 l 2 - 0 260.171875 8.2373046875 277.095703125 18.38671875 285.051757812 c 0 - 43.2998046875 304.581054688 63.8876953125 320.416992188 182.586914062 406.563476562 c 0 - 199.412109375 418.830078125 232.796875 448.346679688 256 447.997070312 c 0 - 279.198242188 448.350585938 312.595703125 418.825195312 329.413085938 406.564453125 c 0 - 448.099609375 320.426757812 468.715820312 304.569335938 493.61328125 285.051757812 c 0 - 503.762695312 277.095703125 512 260.171875 512 247.276367188 c 2 - 512 -16 l 2 -446.333984375 180.60546875 m 2 - 443.771484375 184.333007812 438.633789062 185.200195312 434.995117188 182.51171875 c 0 - 412.150390625 165.638671875 379.533203125 141.806640625 329.413085938 105.432617188 c 0 - 312.587890625 93.1669921875 279.203125 63.65234375 256 64.0029296875 c 0 - 232.7890625 63.6591796875 199.44140625 93.146484375 182.586914062 105.432617188 c 0 - 132.47265625 141.802734375 99.8525390625 165.63671875 77.0048828125 182.51171875 c 0 - 73.3662109375 185.200195312 68.228515625 184.333007812 65.666015625 180.60546875 c 2 - 56.59375 167.409179688 l 2 - 55.81640625 166.278320312 55.185546875 164.248046875 55.185546875 162.875976562 c 0 - 55.185546875 160.6484375 56.640625 157.765625 58.4326171875 156.442382812 c 0 - 81.3203125 139.54296875 113.88671875 115.751953125 163.736328125 79.57421875 c 0 - 184.009765625 64.79296875 220.259765625 31.7607421875 256 32.0009765625 c 0 - 291.723632812 31.7587890625 327.9609375 64.7724609375 348.262695312 79.57421875 c 0 - 398.11328125 115.752929688 430.680664062 139.543945312 453.56640625 156.442382812 c 0 - 455.358398438 157.765625 456.813476562 160.6484375 456.813476562 162.875976562 c 0 - 456.813476562 164.248046875 456.182617188 166.278320312 455.405273438 167.409179688 c 2 - 446.333984375 180.60546875 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" e n v e l o p e hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" E n v e l o p e hyphen O p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" E n v e l o p e hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" E N V E L O P E hyphen O P E N -EndChar - -StartChar: address-book -Encoding: 62137 62137 473 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -436 288 m 2 - 416 288 l 1 - 416 224 l 1 - 436 224 l 2 - 442.599609375 224 448 218.599609375 448 212 c 2 - 448 172 l 2 - 448 165.400390625 442.599609375 160 436 160 c 2 - 416 160 l 1 - 416 96 l 1 - 436 96 l 2 - 442.599609375 96 448 90.599609375 448 84 c 2 - 448 44 l 2 - 448 37.400390625 442.599609375 32 436 32 c 2 - 416 32 l 1 - 416 -16 l 2 - 416 -42.5 394.5 -64 368 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 368 448 l 2 - 394.5 448 416 426.5 416 400 c 2 - 416 352 l 1 - 436 352 l 2 - 442.599609375 352 448 346.599609375 448 340 c 2 - 448 300 l 2 - 448 293.400390625 442.599609375 288 436 288 c 2 -208 320 m 0 - 172.700195312 320 144 291.299804688 144 256 c 0 - 144 220.700195312 172.700195312 192 208 192 c 0 - 243.299804688 192 272 220.700195312 272 256 c 0 - 272 291.299804688 243.299804688 320 208 320 c 0 -320 83.2001953125 m 2 - 320 102.400390625 l 2 - 320 134.200195312 289.900390625 160 252.799804688 160 c 2 - 247.799804688 160 l 1 - 235.599609375 154.900390625 222.099609375 152 208 152 c 0 - 193.900390625 152 180.5 154.900390625 168.200195312 160 c 1 - 163.200195312 160 l 2 - 126.099609375 160 96 134.200195312 96 102.400390625 c 2 - 96 83.2001953125 l 2 - 96 72.599609375 106 64 118.400390625 64 c 2 - 297.599609375 64 l 2 - 310 64 320 72.599609375 320 83.2001953125 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" a d d r e s s hyphen b o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" A d d r e s s hyphen B o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" A d d r e s s hyphen b o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" A D D R E S S hyphen B O O K -EndChar - -StartChar: address-card -Encoding: 62139 62139 474 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528 416 m 2 - 554.5 416 576 394.5 576 368 c 2 - 576 16 l 2 - 576 -10.5 554.5 -32 528 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 528 416 l 2 -176 320 m 0 - 140.700195312 320 112 291.299804688 112 256 c 0 - 112 220.700195312 140.700195312 192 176 192 c 0 - 211.299804688 192 240 220.700195312 240 256 c 0 - 240 291.299804688 211.299804688 320 176 320 c 0 -288 83.2001953125 m 2 - 288 102.400390625 l 2 - 288 134.200195312 257.900390625 160 220.799804688 160 c 2 - 215.799804688 160 l 1 - 203.599609375 154.900390625 190.099609375 152 176 152 c 0 - 161.900390625 152 148.5 154.900390625 136.200195312 160 c 1 - 131.200195312 160 l 2 - 94.099609375 160 64 134.200195312 64 102.400390625 c 2 - 64 83.2001953125 l 2 - 64 72.599609375 74 64 86.400390625 64 c 2 - 265.599609375 64 l 2 - 278 64 288 72.599609375 288 83.2001953125 c 2 -512 136 m 2 - 512 152 l 2 - 512 156.400390625 508.400390625 160 504 160 c 2 - 360 160 l 2 - 355.599609375 160 352 156.400390625 352 152 c 2 - 352 136 l 2 - 352 131.599609375 355.599609375 128 360 128 c 2 - 504 128 l 2 - 508.400390625 128 512 131.599609375 512 136 c 2 -512 200 m 2 - 512 216 l 2 - 512 220.400390625 508.400390625 224 504 224 c 2 - 360 224 l 2 - 355.599609375 224 352 220.400390625 352 216 c 2 - 352 200 l 2 - 352 195.599609375 355.599609375 192 360 192 c 2 - 504 192 l 2 - 508.400390625 192 512 195.599609375 512 200 c 2 -512 264 m 2 - 512 280 l 2 - 512 284.400390625 508.400390625 288 504 288 c 2 - 360 288 l 2 - 355.599609375 288 352 284.400390625 352 280 c 2 - 352 264 l 2 - 352 259.599609375 355.599609375 256 360 256 c 2 - 504 256 l 2 - 508.400390625 256 512 259.599609375 512 264 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" a d d r e s s hyphen c a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A d d r e s s hyphen C a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A d d r e s s hyphen c a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A D D R E S S hyphen C A R D -EndChar - -StartChar: user-circle -Encoding: 62141 62141 475 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -248 344 m 0 - 199.400390625 344 160 304.599609375 160 256 c 0 - 160 207.400390625 199.400390625 168 248 168 c 0 - 296.599609375 168 336 207.400390625 336 256 c 0 - 336 304.599609375 296.599609375 344 248 344 c 0 -248 0 m 0 - 306.700195312 0 359.299804688 26.599609375 394.5 68.2001953125 c 1 - 375.700195312 103.599609375 338.900390625 128 296 128 c 0 - 293.599609375 128 291.200195312 127.599609375 288.900390625 126.900390625 c 0 - 276 122.700195312 262.299804688 120 248 120 c 0 - 233.700195312 120 220.099609375 122.700195312 207.099609375 126.900390625 c 0 - 204.799804688 127.599609375 202.400390625 128 200 128 c 0 - 157.099609375 128 120.299804688 103.599609375 101.5 68.2001953125 c 1 - 136.700195312 26.599609375 189.299804688 0 248 0 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" u s e r hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" U s e r hyphen C i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" U s e r hyphen c i r c l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" U S E R hyphen C I R C L E -EndChar - -StartChar: id-badge -Encoding: 62145 62145 476 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 448 m 2 - 362.5 448 384 426.5 384 400 c 2 - 384 -16 l 2 - 384 -42.5 362.5 -64 336 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 336 448 l 2 -144 416 m 2 - 135.200195312 416 128 408.799804688 128 400 c 0 - 128 391.200195312 135.200195312 384 144 384 c 2 - 240 384 l 2 - 248.799804688 384 256 391.200195312 256 400 c 0 - 256 408.799804688 248.799804688 416 240 416 c 2 - 144 416 l 2 -192 288 m 0 - 156.700195312 288 128 259.299804688 128 224 c 0 - 128 188.700195312 156.700195312 160 192 160 c 0 - 227.299804688 160 256 188.700195312 256 224 c 0 - 256 259.299804688 227.299804688 288 192 288 c 0 -304 51.2001953125 m 2 - 304 70.400390625 l 2 - 304 102.200195312 273.900390625 128 236.799804688 128 c 2 - 231.799804688 128 l 1 - 219.599609375 122.900390625 206.099609375 120 192 120 c 0 - 177.900390625 120 164.5 122.900390625 152.200195312 128 c 1 - 147.200195312 128 l 2 - 110.099609375 128 80 102.200195312 80 70.400390625 c 2 - 80 51.2001953125 l 2 - 80 40.599609375 90 32 102.400390625 32 c 2 - 281.599609375 32 l 2 - 294 32 304 40.599609375 304 51.2001953125 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" i d hyphen b a d g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" I d hyphen B a d g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" I d hyphen b a d g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" I D hyphen B A D G E -EndChar - -StartChar: id-card -Encoding: 62146 62146 477 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528 416 m 2 - 554.5 416 576 394.5 576 368 c 2 - 576 352 l 1 - 0 352 l 1 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 528 416 l 2 -0 16 m 2 - 0 320 l 1 - 576 320 l 1 - 576 16 l 2 - 576 -10.5 554.5 -32 528 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 -352 248 m 2 - 352 232 l 2 - 352 227.599609375 355.599609375 224 360 224 c 2 - 504 224 l 2 - 508.400390625 224 512 227.599609375 512 232 c 2 - 512 248 l 2 - 512 252.400390625 508.400390625 256 504 256 c 2 - 360 256 l 2 - 355.599609375 256 352 252.400390625 352 248 c 2 -352 184 m 2 - 352 168 l 2 - 352 163.599609375 355.599609375 160 360 160 c 2 - 504 160 l 2 - 508.400390625 160 512 163.599609375 512 168 c 2 - 512 184 l 2 - 512 188.400390625 508.400390625 192 504 192 c 2 - 360 192 l 2 - 355.599609375 192 352 188.400390625 352 184 c 2 -352 120 m 2 - 352 104 l 2 - 352 99.599609375 355.599609375 96 360 96 c 2 - 504 96 l 2 - 508.400390625 96 512 99.599609375 512 104 c 2 - 512 120 l 2 - 512 124.400390625 508.400390625 128 504 128 c 2 - 360 128 l 2 - 355.599609375 128 352 124.400390625 352 120 c 2 -176 256 m 0 - 140.700195312 256 112 227.299804688 112 192 c 0 - 112 156.700195312 140.700195312 128 176 128 c 0 - 211.299804688 128 240 156.700195312 240 192 c 0 - 240 227.299804688 211.299804688 256 176 256 c 0 -67.099609375 51.7998046875 m 0 - 63.900390625 42 72.2998046875 32 82.7001953125 32 c 2 - 269.299804688 32 l 2 - 279.700195312 32 288.099609375 41.900390625 284.900390625 51.7998046875 c 0 - 276.5 77.5 252.400390625 96 224 96 c 2 - 215.799804688 96 l 1 - 203.599609375 90.900390625 190.099609375 88 176 88 c 0 - 161.900390625 88 148.5 90.900390625 136.200195312 96 c 1 - 128 96 l 2 - 99.599609375 96 75.5 77.5 67.099609375 51.7998046875 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" i d hyphen c a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" I d hyphen C a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" I d hyphen c a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" I D hyphen C A R D -EndChar - -StartChar: thermometer-full -Encoding: 62151 62151 478 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 352 m 2 - 224 148.653320312 l 1 - 243.912109375 126.08984375 256 96.458984375 256 64 c 0 - 256 -6.6962890625 198.698242188 -64 128 -64 c 0 - 127.701171875 -64 127.389648438 -63.9990234375 127.090820312 -63.9970703125 c 0 - 56.7890625 -63.5087890625 -0.357421875 -5.6357421875 0.001953125 64.6669921875 c 0 - 0.166015625 96.8642578125 12.224609375 126.244140625 32 148.653320312 c 1 - 32 352 l 2 - 32 405.018554688 74.9814453125 448 128 448 c 0 - 181.018554688 448 224 405.018554688 224 352 c 2 -128 -16 m 2 - 172.112304688 -16 208 19.8876953125 208 64 c 0 - 208 98.337890625 188.629882812 116.190429688 176 130.501953125 c 1 - 176 352 l 2 - 176 378.466796875 154.466796875 400 128 400 c 0 - 101.533203125 400 80 378.466796875 80 352 c 2 - 80 130.501953125 l 1 - 67.2666015625 116.07421875 48.173828125 98.40234375 48.0009765625 64.421875 c 0 - 47.77734375 20.5458984375 83.564453125 -15.6943359375 127.423828125 -15.998046875 c 2 - 128 -16 l 2 -192 64 m 0 - 192 28.654296875 163.345703125 0 128 0 c 0 - 92.654296875 0 64 28.654296875 64 64 c 0 - 64 87.6845703125 76.8759765625 108.348632812 96 119.416992188 c 1 - 96 352 l 2 - 96 369.672851562 110.327148438 384 128 384 c 0 - 145.672851562 384 160 369.672851562 160 352 c 2 - 160 119.416992188 l 1 - 179.124023438 108.348632812 192 87.6845703125 192 64 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" t h e r m o m e t e r hyphen f u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" T h e r m o m e t e r hyphen F u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" T h e r m o m e t e r hyphen f u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" T H E R M O M E T E R hyphen F U L L -EndChar - -StartChar: thermometer-three-quarters -Encoding: 62152 62152 479 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 64 m 0 - 192 28.654296875 163.345703125 0 128 0 c 0 - 92.654296875 0 64 28.654296875 64 64 c 0 - 64 87.6845703125 76.8759765625 108.348632812 96 119.416992188 c 1 - 96 288 l 2 - 96 305.672851562 110.327148438 320 128 320 c 0 - 145.672851562 320 160 305.672851562 160 288 c 2 - 160 119.416992188 l 1 - 179.124023438 108.348632812 192 87.6845703125 192 64 c 0 -224 148.653320312 m 1 - 243.912109375 126.08984375 256 96.458984375 256 64 c 0 - 256 -6.6962890625 198.697265625 -64 128 -64 c 0 - 127.701171875 -64 127.390625 -63.9990234375 127.090820312 -63.9970703125 c 0 - 56.7890625 -63.5087890625 -0.357421875 -5.6357421875 0.001953125 64.6669921875 c 0 - 0.166015625 96.865234375 12.224609375 126.245117188 32 148.653320312 c 1 - 32 352 l 2 - 32 405.018554688 74.9814453125 448 128 448 c 0 - 181.018554688 448 224 405.018554688 224 352 c 2 - 224 148.653320312 l 1 -208 64 m 0 - 208 98.3388671875 188.629882812 116.190429688 176 130.501953125 c 1 - 176 352 l 2 - 176 378.466796875 154.466796875 400 128 400 c 0 - 101.533203125 400 80 378.466796875 80 352 c 2 - 80 130.501953125 l 1 - 67.267578125 116.07421875 48.1748046875 98.40234375 48.0009765625 64.421875 c 0 - 47.77734375 20.5458984375 83.564453125 -15.6943359375 127.423828125 -15.998046875 c 2 - 128 -16 l 2 - 172.112304688 -16 208 19.8876953125 208 64 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 2" t h e r m o m e t e r hyphen t h r e e hyphen q u a r t e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 2" T h e r m o m e t e r hyphen T h r e e hyphen Q u a r t e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 2" T h e r m o m e t e r hyphen t h r e e hyphen q u a r t e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 2" T H E R M O M E T E R hyphen T H R E E hyphen Q U A R T E R S -EndChar - -StartChar: thermometer-half -Encoding: 62153 62153 480 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 64 m 0 - 192 28.654296875 163.345703125 0 128 0 c 0 - 92.654296875 0 64 28.654296875 64 64 c 0 - 64 87.6845703125 76.8759765625 108.348632812 96 119.416992188 c 1 - 96 224 l 2 - 96 241.672851562 110.327148438 256 128 256 c 0 - 145.672851562 256 160 241.672851562 160 224 c 2 - 160 119.416992188 l 1 - 179.124023438 108.348632812 192 87.6845703125 192 64 c 0 -224 148.653320312 m 1 - 243.912109375 126.08984375 256 96.458984375 256 64 c 0 - 256 -6.6962890625 198.697265625 -64 128 -64 c 0 - 127.701171875 -64 127.390625 -63.9990234375 127.090820312 -63.9970703125 c 0 - 56.7890625 -63.5087890625 -0.357421875 -5.6357421875 0.001953125 64.6669921875 c 0 - 0.166015625 96.865234375 12.224609375 126.245117188 32 148.653320312 c 1 - 32 352 l 2 - 32 405.018554688 74.9814453125 448 128 448 c 0 - 181.018554688 448 224 405.018554688 224 352 c 2 - 224 148.653320312 l 1 -208 64 m 0 - 208 98.3388671875 188.629882812 116.190429688 176 130.501953125 c 1 - 176 352 l 2 - 176 378.466796875 154.466796875 400 128 400 c 0 - 101.533203125 400 80 378.466796875 80 352 c 2 - 80 130.501953125 l 1 - 67.267578125 116.07421875 48.1748046875 98.40234375 48.0009765625 64.421875 c 0 - 47.77734375 20.5458984375 83.564453125 -15.6943359375 127.423828125 -15.998046875 c 2 - 128 -16 l 2 - 172.112304688 -16 208 19.8876953125 208 64 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" t h e r m o m e t e r hyphen h a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" T h e r m o m e t e r hyphen H a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" T h e r m o m e t e r hyphen h a l f -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" T H E R M O M E T E R hyphen H A L F -EndChar - -StartChar: thermometer-quarter -Encoding: 62154 62154 481 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 64 m 0 - 192 28.654296875 163.345703125 0 128 0 c 0 - 92.654296875 0 64 28.654296875 64 64 c 0 - 64 87.6845703125 76.8759765625 108.348632812 96 119.416992188 c 1 - 96 160 l 2 - 96 177.672851562 110.327148438 192 128 192 c 0 - 145.672851562 192 160 177.672851562 160 160 c 2 - 160 119.416992188 l 1 - 179.124023438 108.348632812 192 87.6845703125 192 64 c 0 -224 148.653320312 m 1 - 243.912109375 126.08984375 256 96.458984375 256 64 c 0 - 256 -6.6962890625 198.697265625 -64 128 -64 c 0 - 127.701171875 -64 127.390625 -63.9990234375 127.090820312 -63.9970703125 c 0 - 56.7890625 -63.5087890625 -0.357421875 -5.6357421875 0.001953125 64.6669921875 c 0 - 0.166015625 96.865234375 12.224609375 126.245117188 32 148.653320312 c 1 - 32 352 l 2 - 32 405.018554688 74.9814453125 448 128 448 c 0 - 181.018554688 448 224 405.018554688 224 352 c 2 - 224 148.653320312 l 1 -208 64 m 0 - 208 98.3388671875 188.629882812 116.190429688 176 130.501953125 c 1 - 176 352 l 2 - 176 378.466796875 154.466796875 400 128 400 c 0 - 101.533203125 400 80 378.466796875 80 352 c 2 - 80 130.501953125 l 1 - 67.267578125 116.07421875 48.1748046875 98.40234375 48.0009765625 64.421875 c 0 - 47.77734375 20.5458984375 83.564453125 -15.6943359375 127.423828125 -15.998046875 c 2 - 128 -16 l 2 - 172.112304688 -16 208 19.8876953125 208 64 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" t h e r m o m e t e r hyphen q u a r t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" T h e r m o m e t e r hyphen Q u a r t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" T h e r m o m e t e r hyphen q u a r t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" T H E R M O M E T E R hyphen Q U A R T E R -EndChar - -StartChar: thermometer-empty -Encoding: 62155 62155 482 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 64 m 0 - 192 28.654296875 163.345703125 0 128 0 c 0 - 92.654296875 0 64 28.654296875 64 64 c 0 - 64 99.345703125 92.654296875 128 128 128 c 0 - 163.345703125 128 192 99.345703125 192 64 c 0 -224 148.653320312 m 1 - 243.912109375 126.08984375 256 96.458984375 256 64 c 0 - 256 -6.6962890625 198.697265625 -64 128 -64 c 0 - 127.701171875 -64 127.390625 -63.9990234375 127.090820312 -63.9970703125 c 0 - 56.7890625 -63.5087890625 -0.357421875 -5.6357421875 0.001953125 64.6669921875 c 0 - 0.166015625 96.865234375 12.224609375 126.245117188 32 148.653320312 c 1 - 32 352 l 2 - 32 405.018554688 74.9814453125 448 128 448 c 0 - 181.018554688 448 224 405.018554688 224 352 c 2 - 224 148.653320312 l 1 -208 64 m 0 - 208 98.3388671875 188.629882812 116.190429688 176 130.501953125 c 1 - 176 352 l 2 - 176 378.466796875 154.466796875 400 128 400 c 0 - 101.533203125 400 80 378.466796875 80 352 c 2 - 80 130.501953125 l 1 - 67.267578125 116.07421875 48.1748046875 98.40234375 48.0009765625 64.421875 c 0 - 47.77734375 20.5458984375 83.564453125 -15.6943359375 127.423828125 -15.998046875 c 2 - 128 -16 l 2 - 172.112304688 -16 208 19.8876953125 208 64 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" t h e r m o m e t e r hyphen e m p t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" T h e r m o m e t e r hyphen E m p t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" T h e r m o m e t e r hyphen e m p t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" T H E R M O M E T E R hyphen E M P T Y -EndChar - -StartChar: shower -Encoding: 62156 62156 483 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -389.66015625 312.400390625 m 2 - 231.599609375 154.33984375 l 2 - 222.23046875 144.969726562 207.030273438 144.969726562 197.66015625 154.33984375 c 2 - 186.33984375 165.66015625 l 2 - 176.969726562 175.030273438 176.969726562 190.23046875 186.33984375 199.599609375 c 2 - 186.450195312 199.709960938 l 1 - 152.419921875 239.919921875 151.290039062 298.650390625 183.059570312 340.08984375 c 1 - 171.08984375 347.639648438 156.919921875 352 141.759765625 352 c 0 - 98.8798828125 352 64 317.120117188 64 274.240234375 c 2 - 64 -32 l 1 - 0 -32 l 1 - 0 274.240234375 l 2 - 0 352.41015625 63.58984375 416 141.759765625 416 c 0 - 178.690429688 416 212.370117188 401.799804688 237.620117188 378.580078125 c 1 - 273.51953125 390.08984375 314.120117188 383.080078125 344.290039062 357.549804688 c 1 - 344.400390625 357.66015625 l 2 - 353.76953125 367.030273438 368.969726562 367.030273438 378.33984375 357.66015625 c 2 - 389.66015625 346.33984375 l 2 - 399.030273438 336.969726562 399.030273438 321.76953125 389.66015625 312.400390625 c 2 -384 240 m 0 - 384 231.163085938 376.836914062 224 368 224 c 0 - 359.163085938 224 352 231.163085938 352 240 c 0 - 352 248.836914062 359.163085938 256 368 256 c 0 - 376.836914062 256 384 248.836914062 384 240 c 0 -416 240 m 0 - 416 248.836914062 423.163085938 256 432 256 c 0 - 440.836914062 256 448 248.836914062 448 240 c 0 - 448 231.163085938 440.836914062 224 432 224 c 0 - 423.163085938 224 416 231.163085938 416 240 c 0 -512 240 m 0 - 512 231.163085938 504.836914062 224 496 224 c 0 - 487.163085938 224 480 231.163085938 480 240 c 0 - 480 248.836914062 487.163085938 256 496 256 c 0 - 504.836914062 256 512 248.836914062 512 240 c 0 -352 208 m 0 - 352 199.163085938 344.836914062 192 336 192 c 0 - 327.163085938 192 320 199.163085938 320 208 c 0 - 320 216.836914062 327.163085938 224 336 224 c 0 - 344.836914062 224 352 216.836914062 352 208 c 0 -400 224 m 0 - 408.836914062 224 416 216.836914062 416 208 c 0 - 416 199.163085938 408.836914062 192 400 192 c 0 - 391.163085938 192 384 199.163085938 384 208 c 0 - 384 216.836914062 391.163085938 224 400 224 c 0 -480 208 m 0 - 480 199.163085938 472.836914062 192 464 192 c 0 - 455.163085938 192 448 199.163085938 448 208 c 0 - 448 216.836914062 455.163085938 224 464 224 c 0 - 472.836914062 224 480 216.836914062 480 208 c 0 -320 176 m 0 - 320 167.163085938 312.836914062 160 304 160 c 0 - 295.163085938 160 288 167.163085938 288 176 c 0 - 288 184.836914062 295.163085938 192 304 192 c 0 - 312.836914062 192 320 184.836914062 320 176 c 0 -352 176 m 0 - 352 184.836914062 359.163085938 192 368 192 c 0 - 376.836914062 192 384 184.836914062 384 176 c 0 - 384 167.163085938 376.836914062 160 368 160 c 0 - 359.163085938 160 352 167.163085938 352 176 c 0 -448 176 m 0 - 448 167.163085938 440.836914062 160 432 160 c 0 - 423.163085938 160 416 167.163085938 416 176 c 0 - 416 184.836914062 423.163085938 192 432 192 c 0 - 440.836914062 192 448 184.836914062 448 176 c 0 -320 144 m 0 - 320 152.836914062 327.163085938 160 336 160 c 0 - 344.836914062 160 352 152.836914062 352 144 c 0 - 352 135.163085938 344.836914062 128 336 128 c 0 - 327.163085938 128 320 135.163085938 320 144 c 0 -416 144 m 0 - 416 135.163085938 408.836914062 128 400 128 c 0 - 391.163085938 128 384 135.163085938 384 144 c 0 - 384 152.836914062 391.163085938 160 400 160 c 0 - 408.836914062 160 416 152.836914062 416 144 c 0 -320 112 m 0 - 320 103.163085938 312.836914062 96 304 96 c 0 - 295.163085938 96 288 103.163085938 288 112 c 0 - 288 120.836914062 295.163085938 128 304 128 c 0 - 312.836914062 128 320 120.836914062 320 112 c 0 -384 112 m 0 - 384 103.163085938 376.836914062 96 368 96 c 0 - 359.163085938 96 352 103.163085938 352 112 c 0 - 352 120.836914062 359.163085938 128 368 128 c 0 - 376.836914062 128 384 120.836914062 384 112 c 0 -352 80 m 0 - 352 71.1630859375 344.836914062 64 336 64 c 0 - 327.163085938 64 320 71.1630859375 320 80 c 0 - 320 88.8369140625 327.163085938 96 336 96 c 0 - 344.836914062 96 352 88.8369140625 352 80 c 0 -320 48 m 0 - 320 39.1630859375 312.836914062 32 304 32 c 0 - 295.163085938 32 288 39.1630859375 288 48 c 0 - 288 56.8369140625 295.163085938 64 304 64 c 0 - 312.836914062 64 320 56.8369140625 320 48 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" s h o w e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S H O W E R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S h o w e r -EndChar - -StartChar: bath -Encoding: 62157 62157 484 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -488 192 m 2 - 501.254882812 192 512 181.254882812 512 168 c 2 - 512 152 l 2 - 512 138.745117188 501.254882812 128 488 128 c 2 - 480 128 l 1 - 480 96 l 2 - 480 67.5703125 467.637695312 42.03125 448 24.453125 c 1 - 448 -8 l 2 - 448 -21.2548828125 437.254882812 -32 424 -32 c 2 - 408 -32 l 2 - 394.745117188 -32 384 -21.2548828125 384 -8 c 2 - 384 0 l 1 - 128 0 l 1 - 128 -8 l 2 - 128 -21.2548828125 117.254882812 -32 104 -32 c 2 - 88 -32 l 2 - 74.7451171875 -32 64 -21.2548828125 64 -8 c 2 - 64 24.453125 l 1 - 44.3623046875 42.03125 32 67.5703125 32 96 c 2 - 32 128 l 1 - 24 128 l 2 - 10.7451171875 128 0 138.745117188 0 152 c 2 - 0 168 l 2 - 0 181.254882812 10.7451171875 192 24 192 c 2 - 32 192 l 1 - 32 336 l 2 - 32 380.112304688 67.8876953125 416 112 416 c 0 - 139.211914062 416 163.28125 402.333007812 177.739257812 381.512695312 c 1 - 199.623046875 387.577148438 223.967773438 382.6171875 241.916992188 366.1484375 c 1 - 246.629882812 370.323242188 253.833007812 370.168945312 258.344726562 365.657226562 c 2 - 269.659179688 354.342773438 l 2 - 274.344726562 349.65625 274.344726562 342.057617188 269.659179688 337.372070312 c 2 - 174.62890625 242.342773438 l 2 - 169.942382812 237.657226562 162.34375 237.657226562 157.658203125 242.342773438 c 2 - 146.34375 253.657226562 l 2 - 141.83203125 258.168945312 141.676757812 265.372070312 145.852539062 270.084960938 c 1 - 124.328125 293.543945312 122.5234375 327.913085938 139.014648438 353.120117188 c 1 - 133.33203125 362.0546875 123.350585938 368 112 368 c 0 - 94.35546875 368 80 353.64453125 80 336 c 2 - 80 192 l 1 - 488 192 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" b a t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" B a t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" B A T H -EndChar - -StartChar: podcast -Encoding: 62158 62158 485 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -267.428710938 -40.5634765625 m 0 - 262.286132812 -59.5732421875 242.858398438 -64 224 -64 c 0 - 205.142578125 -64 185.713867188 -59.5732421875 180.572265625 -40.5634765625 c 0 - 172.926757812 -12.1337890625 160 59.1015625 160 92.25 c 0 - 160 127.40625 191.141601562 136 224 136 c 0 - 256.858398438 136 288 127.40625 288 92.25 c 0 - 288 59.30078125 275.12890625 -11.9287109375 267.428710938 -40.5634765625 c 0 -156.8671875 159.446289062 m 0 - 159.541992188 156.827148438 159.266601562 152.4609375 156.23828125 150.260742188 c 0 - 146.92578125 143.49609375 139.77734375 134.918945312 135.002929688 124.8984375 c 0 - 133.260742188 121.241210938 128.502929688 120.240234375 125.549804688 123.010742188 c 0 - 97.5322265625 149.299804688 80 186.638671875 80 228 c 0 - 80 308.78515625 146.869140625 374.247070312 228.163085938 371.94140625 c 0 - 304.361328125 369.780273438 366.100585938 307.778320312 367.956054688 231.572265625 c 0 - 368.998046875 188.790039062 351.271484375 150.049804688 322.4453125 123.006835938 c 0 - 319.493164062 120.23828125 314.737304688 121.244140625 312.99609375 124.8984375 c 0 - 308.221679688 134.91796875 301.07421875 143.49609375 291.76171875 150.260742188 c 0 - 288.733398438 152.461914062 288.458984375 156.828125 291.133789062 159.448242188 c 0 - 308.935546875 176.883789062 320 201.172851562 320 228 c 0 - 320 282.193359375 274.862304688 326.041992188 220.20703125 323.92578125 c 0 - 170.477539062 322.000976562 130.13671875 281.768554688 128.083007812 232.044921875 c 0 - 126.909179688 203.619140625 138.173828125 177.75390625 156.8671875 159.446289062 c 0 -224 448 m 0 - 347.815429688 448 448 347.794921875 448 224 c 0 - 448 133.813476562 395.2265625 58.2734375 322.260742188 22.5927734375 c 0 - 317.928710938 20.4736328125 312.994140625 24.1357421875 313.725585938 28.9033203125 c 0 - 316.28125 45.544921875 318.350585938 62.095703125 319.349609375 76.1328125 c 1 - 367.841796875 107.509765625 400 162.068359375 400 224 c 0 - 400 321.203125 320.79296875 400.252929688 223.532226562 399.999023438 c 0 - 127.29296875 399.748046875 48.5947265625 321.336914062 48.0029296875 225.099609375 c 0 - 47.6259765625 163.768554688 78.7900390625 109.55859375 126.190429688 77.7529296875 c 0 - 127.71875 76.7265625 128.721679688 75.0771484375 128.868164062 73.2412109375 c 0 - 129.931640625 59.84765625 131.891601562 44.4140625 134.274414062 28.90234375 c 0 - 135.005859375 24.1357421875 130.072265625 20.4736328125 125.739257812 22.591796875 c 0 - 52.6015625 58.3525390625 0 134.0078125 0 224 c 0 - 0 347.815429688 100.204101562 448 224 448 c 0 -224 288 m 0 - 259.345703125 288 288 259.345703125 288 224 c 0 - 288 188.654296875 259.345703125 160 224 160 c 0 - 188.654296875 160 160 188.654296875 160 224 c 0 - 160 259.345703125 188.654296875 288 224 288 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" p o d c a s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" P o d c a s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" P O D C A S T -EndChar - -StartChar: window-maximize -Encoding: 62160 62160 486 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 416 m 2 - 490.5 416 512 394.5 512 368 c 2 - 512 16 l 2 - 512 -10.5 490.5 -32 464 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 464 416 l 2 -448 256 m 1 - 448 340 l 2 - 448 346.599609375 442.599609375 352 436 352 c 2 - 76 352 l 2 - 69.400390625 352 64 346.599609375 64 340 c 2 - 64 256 l 1 - 448 256 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" w i n d o w hyphen m a x i m i z e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" W i n d o w hyphen M a x i m i z e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" W i n d o w hyphen m a x i m i z e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" W I N D O W hyphen M A X I M I Z E -EndChar - -StartChar: window-minimize -Encoding: 62161 62161 487 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 96 m 2 - 490.5 96 512 74.5 512 48 c 2 - 512 16 l 2 - 512 -10.5 490.5 -32 464 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 48 l 2 - 0 74.5 21.5 96 48 96 c 2 - 464 96 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" w i n d o w hyphen m i n i m i z e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" W i n d o w hyphen M i n i m i z e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" W i n d o w hyphen m i n i m i z e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" W I N D O W hyphen M I N I M I Z E -EndChar - -StartChar: window-restore -Encoding: 62162 62162 488 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 400 m 2 - 512 112 l 2 - 512 85.5 490.5 64 464 64 c 2 - 416 64 l 1 - 416 272 l 2 - 416 316.099609375 380.099609375 352 336 352 c 2 - 128 352 l 1 - 128 400 l 2 - 128 426.5 149.5 448 176 448 c 2 - 464 448 l 2 - 490.5 448 512 426.5 512 400 c 2 -384 272 m 2 - 384 -16 l 2 - 384 -42.5 362.5 -64 336 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 272 l 2 - 0 298.5 21.5 320 48 320 c 2 - 336 320 l 2 - 362.5 320 384 298.5 384 272 c 2 -316 244 m 2 - 316 250.599609375 310.599609375 256 304 256 c 2 - 76 256 l 2 - 69.400390625 256 64 250.599609375 64 244 c 2 - 64 192 l 1 - 316 192 l 1 - 316 244 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" w i n d o w hyphen r e s t o r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" W i n d o w hyphen R e s t o r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" W i n d o w hyphen r e s t o r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" W I N D O W hyphen R E S T O R E -EndChar - -StartChar: microchip -Encoding: 62171 62171 489 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 400 m 2 - 416 -16 l 2 - 416 -42.509765625 394.509765625 -64 368 -64 c 2 - 144 -64 l 2 - 117.490234375 -64 96 -42.509765625 96 -16 c 2 - 96 400 l 2 - 96 426.509765625 117.490234375 448 144 448 c 2 - 368 448 l 2 - 394.509765625 448 416 426.509765625 416 400 c 2 -512 342 m 2 - 512 330 l 2 - 512 326.688476562 509.311523438 324 506 324 c 2 - 488 324 l 1 - 488 318 l 2 - 488 314.688476562 485.311523438 312 482 312 c 2 - 440 312 l 1 - 440 360 l 1 - 482 360 l 2 - 485.311523438 360 488 357.311523438 488 354 c 2 - 488 348 l 1 - 506 348 l 2 - 509.311523438 348 512 345.311523438 512 342 c 2 -512 246 m 2 - 512 234 l 2 - 512 230.688476562 509.311523438 228 506 228 c 2 - 488 228 l 1 - 488 222 l 2 - 488 218.688476562 485.311523438 216 482 216 c 2 - 440 216 l 1 - 440 264 l 1 - 482 264 l 2 - 485.311523438 264 488 261.311523438 488 258 c 2 - 488 252 l 1 - 506 252 l 2 - 509.311523438 252 512 249.311523438 512 246 c 2 -512 150 m 2 - 512 138 l 2 - 512 134.688476562 509.311523438 132 506 132 c 2 - 488 132 l 1 - 488 126 l 2 - 488 122.688476562 485.311523438 120 482 120 c 2 - 440 120 l 1 - 440 168 l 1 - 482 168 l 2 - 485.311523438 168 488 165.311523438 488 162 c 2 - 488 156 l 1 - 506 156 l 2 - 509.311523438 156 512 153.311523438 512 150 c 2 -512 54 m 2 - 512 42 l 2 - 512 38.6884765625 509.311523438 36 506 36 c 2 - 488 36 l 1 - 488 30 l 2 - 488 26.6884765625 485.311523438 24 482 24 c 2 - 440 24 l 1 - 440 72 l 1 - 482 72 l 2 - 485.311523438 72 488 69.3115234375 488 66 c 2 - 488 60 l 1 - 506 60 l 2 - 509.311523438 60 512 57.3115234375 512 54 c 2 -30 72 m 2 - 72 72 l 1 - 72 24 l 1 - 30 24 l 2 - 26.6884765625 24 24 26.6884765625 24 30 c 2 - 24 36 l 1 - 6 36 l 2 - 2.6884765625 36 0 38.6884765625 0 42 c 2 - 0 54 l 2 - 0 57.3115234375 2.6884765625 60 6 60 c 2 - 24 60 l 1 - 24 66 l 2 - 24 69.3115234375 26.6884765625 72 30 72 c 2 -30 168 m 2 - 72 168 l 1 - 72 120 l 1 - 30 120 l 2 - 26.6884765625 120 24 122.688476562 24 126 c 2 - 24 132 l 1 - 6 132 l 2 - 2.6884765625 132 0 134.688476562 0 138 c 2 - 0 150 l 2 - 0 153.311523438 2.6884765625 156 6 156 c 2 - 24 156 l 1 - 24 162 l 2 - 24 165.311523438 26.6884765625 168 30 168 c 2 -30 264 m 2 - 72 264 l 1 - 72 216 l 1 - 30 216 l 2 - 26.6884765625 216 24 218.688476562 24 222 c 2 - 24 228 l 1 - 6 228 l 2 - 2.6884765625 228 0 230.688476562 0 234 c 2 - 0 246 l 2 - 0 249.311523438 2.6884765625 252 6 252 c 2 - 24 252 l 1 - 24 258 l 2 - 24 261.311523438 26.6884765625 264 30 264 c 2 -30 360 m 2 - 72 360 l 1 - 72 312 l 1 - 30 312 l 2 - 26.6884765625 312 24 314.688476562 24 318 c 2 - 24 324 l 1 - 6 324 l 2 - 2.6884765625 324 0 326.688476562 0 330 c 2 - 0 342 l 2 - 0 345.311523438 2.6884765625 348 6 348 c 2 - 24 348 l 1 - 24 354 l 2 - 24 357.311523438 26.6884765625 360 30 360 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" m i c r o c h i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" M i c r o c h i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" M I C R O C H I P -EndChar - -StartChar: snowflake -Encoding: 62172 62172 490 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -440.299804688 102.799804688 m 2 - 447.700195312 98.599609375 450.200195312 89.099609375 445.900390625 81.7998046875 c 2 - 430.400390625 55 l 2 - 426.099609375 47.599609375 416.700195312 45 409.299804688 49.2998046875 c 2 - 375.5 68.7998046875 l 1 - 382.5 42.7998046875 l 2 - 384.700195312 34.599609375 379.799804688 26.099609375 371.599609375 23.900390625 c 2 - 356.700195312 19.900390625 l 2 - 348.5 17.7001953125 340 22.599609375 337.799804688 30.7998046875 c 2 - 318.799804688 101.599609375 l 1 - 256 137.799804688 l 1 - 256 60.2998046875 l 1 - 309.400390625 6.599609375 l 2 - 315.599609375 0.400390625 315.599609375 -9.7998046875 309.400390625 -16 c 2 - 298.099609375 -27.2998046875 l 2 - 291.900390625 -33.5 281.700195312 -33.5 275.5 -27.2998046875 c 2 - 255.799804688 -7.599609375 l 1 - 255.799804688 -48 l 2 - 255.799804688 -56.7998046875 248.599609375 -64 239.799804688 -64 c 2 - 207.799804688 -64 l 2 - 199 -64 191.799804688 -56.7998046875 191.799804688 -48 c 2 - 191.799804688 -7.7001953125 l 1 - 172.099609375 -27.400390625 l 2 - 165.900390625 -33.599609375 155.700195312 -33.599609375 149.5 -27.400390625 c 2 - 138.200195312 -16.099609375 l 2 - 131.900390625 -9.900390625 131.900390625 0.2998046875 138.200195312 6.5 c 2 - 191.900390625 60.2001953125 l 1 - 191.900390625 137.700195312 l 1 - 129.099609375 101.5 l 1 - 110.099609375 30.7001953125 l 2 - 107.900390625 22.5 99.400390625 17.599609375 91.2001953125 19.7998046875 c 2 - 76.2998046875 23.7998046875 l 2 - 68.099609375 26 63.2001953125 34.5 65.400390625 42.7001953125 c 2 - 72.400390625 68.7001953125 l 1 - 38.599609375 49.2001953125 l 2 - 31.2001953125 45 21.7998046875 47.5 17.5 54.900390625 c 2 - 2 81.7001953125 l 2 - -2.2001953125 89.099609375 0.2998046875 98.5 7.7001953125 102.799804688 c 2 - 41.5 122.400390625 l 1 - 15.5 129.400390625 l 2 - 7.2998046875 131.599609375 2.400390625 140.099609375 4.599609375 148.299804688 c 2 - 8.599609375 163.200195312 l 2 - 10.7998046875 171.400390625 19.2998046875 176.299804688 27.5 174.099609375 c 2 - 98.2998046875 155.099609375 l 1 - 162.099609375 192 l 1 - 98.2998046875 228.900390625 l 1 - 27.5 209.900390625 l 2 - 19.2998046875 207.700195312 10.7998046875 212.599609375 8.599609375 220.799804688 c 2 - 4.599609375 235.700195312 l 2 - 2.400390625 244 7.2998046875 252.5 15.599609375 254.700195312 c 2 - 41.599609375 261.700195312 l 1 - 7.7998046875 281.200195312 l 2 - 0.400390625 285.5 -2.2001953125 294.900390625 2.099609375 302.299804688 c 2 - 17.599609375 329 l 2 - 21.900390625 336.400390625 31.2998046875 339 38.7001953125 334.700195312 c 2 - 72.5 315.200195312 l 1 - 65.5 341.200195312 l 2 - 63.2998046875 349.400390625 68.2001953125 357.900390625 76.400390625 360.099609375 c 2 - 91.2998046875 364.099609375 l 2 - 99.5 366.299804688 108 361.400390625 110.200195312 353.200195312 c 2 - 129.200195312 282.400390625 l 1 - 192 246.200195312 l 1 - 192 323.700195312 l 1 - 138.299804688 377.400390625 l 2 - 132 383.599609375 132 393.799804688 138.299804688 400 c 2 - 149.700195312 411.299804688 l 2 - 155.900390625 417.5 166.099609375 417.5 172.299804688 411.299804688 c 2 - 192 391.599609375 l 1 - 192 432 l 2 - 192 440.799804688 199.200195312 448 208 448 c 2 - 240 448 l 2 - 248.799804688 448 256 440.799804688 256 432 c 2 - 256 391.599609375 l 1 - 275.799804688 411.299804688 l 2 - 282 417.5 292.200195312 417.5 298.400390625 411.299804688 c 2 - 309.700195312 400 l 2 - 315.900390625 393.799804688 315.900390625 383.599609375 309.700195312 377.400390625 c 2 - 256 323.700195312 l 1 - 256 246.200195312 l 1 - 318.799804688 282.400390625 l 1 - 337.799804688 353.200195312 l 2 - 340 361.400390625 348.5 366.299804688 356.700195312 364.099609375 c 2 - 371.599609375 360.099609375 l 2 - 379.799804688 357.900390625 384.700195312 349.400390625 382.5 341.200195312 c 2 - 375.5 315.200195312 l 1 - 409.299804688 334.700195312 l 2 - 416.700195312 338.900390625 426.099609375 336.400390625 430.400390625 329 c 2 - 445.900390625 302.200195312 l 2 - 450.099609375 294.799804688 447.599609375 285.400390625 440.200195312 281.099609375 c 2 - 406.400390625 261.599609375 l 1 - 432.400390625 254.599609375 l 2 - 440.599609375 252.400390625 445.5 243.900390625 443.299804688 235.700195312 c 2 - 439.299804688 220.799804688 l 2 - 437.099609375 212.599609375 428.599609375 207.700195312 420.400390625 209.900390625 c 2 - 349.599609375 228.900390625 l 1 - 285.799804688 192 l 1 - 349.700195312 155 l 1 - 420.5 174 l 2 - 428.700195312 176.200195312 437.200195312 171.299804688 439.400390625 163.099609375 c 2 - 443.400390625 148.200195312 l 2 - 445.599609375 140 440.700195312 131.5 432.5 129.299804688 c 2 - 406.5 122.299804688 l 1 - 440.299804688 102.799804688 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" s n o w f l a k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S n o w f l a k e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S N O W F L A K E -EndChar - -StartChar: utensil-spoon -Encoding: 62181 62181 491 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480.099609375 416.099609375 m 0 - 535.200195312 361.099609375 514.599609375 251.200195312 451.599609375 188.299804688 c 0 - 402.299804688 139 341.599609375 133.200195312 291.200195312 159.5 c 1 - 98.7998046875 -54.900390625 l 2 - 88.400390625 -66.5 70.2998046875 -67 59.2998046875 -56 c 2 - 8 -4.7001953125 l 2 - -3.099609375 6.2998046875 -2.599609375 24.2998046875 9 34.7998046875 c 2 - 223.5 227.200195312 l 1 - 197.200195312 277.599609375 203 338.299804688 252.299804688 387.599609375 c 0 - 315.200195312 450.599609375 425.099609375 471.200195312 480.099609375 416.099609375 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" u t e n s i l hyphen s p o o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" U t e n s i l hyphen S p o o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" U t e n s i l hyphen s p o o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" U T E N S I L hyphen S P O O N -EndChar - -StartChar: utensils -Encoding: 62183 62183 492 -Width: 416 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -207.900390625 432.799804688 m 0 - 208.700195312 428.099609375 224 338.299804688 224 304 c 0 - 224 251.700195312 196.200195312 214.400390625 155.099609375 199.400390625 c 1 - 168 -38.7001953125 l 2 - 168.700195312 -52.400390625 157.799804688 -64 144 -64 c 2 - 80 -64 l 2 - 66.2998046875 -64 55.2998046875 -52.5 56 -38.7001953125 c 2 - 68.900390625 199.400390625 l 1 - 27.7001953125 214.400390625 0 251.799804688 0 304 c 0 - 0 338.400390625 15.2998046875 428.099609375 16.099609375 432.799804688 c 0 - 19.2998046875 453.099609375 61.400390625 453.400390625 64 431.700195312 c 2 - 64 290.5 l 2 - 65.2998046875 287.099609375 79.099609375 287.299804688 80 290.5 c 0 - 81.400390625 315.799804688 87.900390625 429.700195312 88 432.299804688 c 0 - 91.2998046875 453.099609375 132.700195312 453.099609375 135.900390625 432.299804688 c 0 - 136.099609375 429.599609375 142.5 315.799804688 143.900390625 290.5 c 0 - 144.799804688 287.299804688 158.700195312 287.099609375 159.900390625 290.5 c 2 - 159.900390625 431.700195312 l 2 - 162.5 453.299804688 204.700195312 453.099609375 207.900390625 432.799804688 c 0 -327.099609375 147.099609375 m 1 - 170.599609375 269.5 309.5 448 392 448 c 0 - 405.299804688 448 416 437.200195312 416 424 c 2 - 416 -40 l 2 - 416 -53.2998046875 405.299804688 -64 392 -64 c 2 - 336 -64 l 2 - 322 -64 310.900390625 -52 312.099609375 -38 c 2 - 327.099609375 147.099609375 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" u t e n s i l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" U t e n s i l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" U T E N S I L S -EndChar - -StartChar: undo-alt -Encoding: 62186 62186 493 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -255.544921875 440 m 0 - 392.353515625 440.245117188 504.000976562 328.806640625 504 191.998046875 c 0 - 503.999023438 55.033203125 392.965820312 -56 256 -56 c 0 - 192.07421875 -56 133.797851562 -31.8134765625 89.822265625 7.908203125 c 0 - 84.708984375 12.5263671875 84.4677734375 20.46875 89.33984375 25.3408203125 c 2 - 129.001953125 65.0029296875 l 2 - 133.463867188 69.4638671875 140.626953125 69.716796875 145.370117188 65.5556640625 c 0 - 176.002929688 38.677734375 214.873046875 24 256 24 c 0 - 349.81640625 24 423.236328125 99.9912109375 423.994140625 190.551757812 c 0 - 424.79296875 286.016601562 346.908203125 360.791992188 254.509765625 359.994140625 c 0 - 212.081054688 359.627929688 172.143554688 343.620117188 141.280273438 314.720703125 c 1 - 183.030273438 272.970703125 l 2 - 198.149414062 257.850585938 187.44140625 232 166.05859375 232 c 2 - 32 232 l 2 - 18.7451171875 232 8 242.745117188 8 256 c 2 - 8 390.05859375 l 2 - 8 411.44140625 33.8505859375 422.149414062 48.970703125 407.029296875 c 2 - 84.6845703125 371.315429688 l 1 - 129.107421875 413.766601562 189.276367188 439.880859375 255.544921875 440 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" u n d o hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" U N D O hyphen A L T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" U n d o hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" U n d o hyphen a l t -EndChar - -StartChar: trash-alt -Encoding: 62189 62189 494 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 -16 m 2 - 32 320 l 1 - 416 320 l 1 - 416 -16 l 2 - 416 -42.49609375 394.49609375 -64 368 -64 c 2 - 80 -64 l 2 - 53.50390625 -64 32 -42.49609375 32 -16 c 2 -304 240 m 2 - 304 16 l 2 - 304 7.16796875 311.16796875 0 320 0 c 0 - 328.83203125 0 336 7.16796875 336 16 c 2 - 336 240 l 2 - 336 248.83203125 328.83203125 256 320 256 c 0 - 311.16796875 256 304 248.83203125 304 240 c 2 -208 240 m 2 - 208 16 l 2 - 208 7.16796875 215.16796875 0 224 0 c 0 - 232.83203125 0 240 7.16796875 240 16 c 2 - 240 240 l 2 - 240 248.83203125 232.83203125 256 224 256 c 0 - 215.16796875 256 208 248.83203125 208 240 c 2 -112 240 m 2 - 112 16 l 2 - 112 7.16796875 119.16796875 0 128 0 c 0 - 136.83203125 0 144 7.16796875 144 16 c 2 - 144 240 l 2 - 144 248.83203125 136.83203125 256 128 256 c 0 - 119.16796875 256 112 248.83203125 112 240 c 2 -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 16 352 l 2 - 7.16796875 352 0 359.16796875 0 368 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 136 416 l 1 - 145.400390625 434.700195312 l 2 - 148.990234375 442.041992188 158.536132812 448 166.708984375 448 c 2 - 166.799804688 448 l 1 - 281.099609375 448 l 1 - 281.1171875 448 l 2 - 289.319335938 448 298.943359375 442.041992188 302.599609375 434.700195312 c 2 - 312 416 l 1 - 432 416 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" t r a s h hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" T r a s h hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" T r a s h hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" T R A S H hyphen A L T -EndChar - -StartChar: sync-alt -Encoding: 62193 62193 495 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -370.719726562 314.719726562 m 1 - 339.458007812 343.9921875 298.887695312 360.038085938 255.84765625 360 c 0 - 178.389648438 359.931640625 111.51953125 306.822265625 93.056640625 233.150390625 c 0 - 91.712890625 227.787109375 86.9345703125 224 81.40625 224 c 2 - 24.1025390625 224 l 2 - 16.60546875 224 10.9091796875 230.806640625 12.2958984375 238.17578125 c 0 - 33.9326171875 353.076171875 134.813476562 440 256 440 c 0 - 322.448242188 440 382.791015625 413.864257812 427.315429688 371.315429688 c 1 - 463.030273438 407.030273438 l 2 - 478.149414062 422.149414062 504 411.44140625 504 390.05859375 c 2 - 504 256 l 2 - 504 242.745117188 493.254882812 232 480 232 c 2 - 345.94140625 232 l 2 - 324.55859375 232 313.850585938 257.850585938 328.969726562 272.970703125 c 2 - 370.719726562 314.719726562 l 1 -32 152 m 2 - 166.05859375 152 l 2 - 187.44140625 152 198.149414062 126.149414062 183.030273438 111.029296875 c 2 - 141.280273438 69.279296875 l 1 - 172.541992188 40.005859375 213.115234375 23.9599609375 256.15625 23.9990234375 c 0 - 333.57421875 24.0693359375 400.470703125 77.142578125 418.943359375 150.84765625 c 0 - 420.287109375 156.2109375 425.065429688 159.998046875 430.59375 159.998046875 c 2 - 487.8984375 159.998046875 l 2 - 495.396484375 159.998046875 501.091796875 153.19140625 499.705078125 145.822265625 c 0 - 478.067382812 30.923828125 377.186523438 -56 256 -56 c 0 - 189.551757812 -56 129.208984375 -29.8642578125 84.6845703125 12.6845703125 c 1 - 48.9697265625 -23.0302734375 l 2 - 33.8505859375 -38.1494140625 8 -27.44140625 8 -6.05859375 c 2 - 8 128 l 2 - 8 141.254882812 18.7451171875 152 32 152 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" s y n c hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" S y n c hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" S y n c hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" S Y N C hyphen A L T -EndChar - -StartChar: stopwatch -Encoding: 62194 62194 496 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -432 144 m 0 - 432 29.099609375 338.900390625 -64 224 -64 c 0 - 109.099609375 -64 16 29.099609375 16 144 c 0 - 16 248 92.2998046875 334.200195312 192 349.5 c 1 - 192 384 l 1 - 164 384 l 2 - 157.400390625 384 152 389.400390625 152 396 c 2 - 152 436 l 2 - 152 442.599609375 157.400390625 448 164 448 c 2 - 284 448 l 2 - 290.599609375 448 296 442.599609375 296 436 c 2 - 296 396 l 2 - 296 389.400390625 290.599609375 384 284 384 c 2 - 256 384 l 1 - 256 349.5 l 1 - 293.5 343.700195312 327.700195312 327.900390625 355.700195312 304.900390625 c 1 - 383.200195312 332.400390625 l 2 - 387.900390625 337.099609375 395.5 337.099609375 400.200195312 332.400390625 c 2 - 428.5 304.099609375 l 2 - 433.200195312 299.400390625 433.200195312 291.799804688 428.5 287.099609375 c 2 - 399.099609375 257.700195312 l 1 - 398.5 257.099609375 l 1 - 419.700195312 224.700195312 432 185.799804688 432 144 c 0 -256 108 m 2 - 256 259.5 l 2 - 256 266.099609375 250.599609375 271.5 244 271.5 c 2 - 204 271.5 l 2 - 197.400390625 271.5 192 266.099609375 192 259.5 c 2 - 192 108 l 2 - 192 101.400390625 197.400390625 96 204 96 c 2 - 244 96 l 2 - 250.599609375 96 256 101.400390625 256 108 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" s t o p w a t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S t o p w a t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S T O P W A T C H -EndChar - -StartChar: sign-out-alt -Encoding: 62197 62197 497 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -497 175 m 2 - 329 7 l 2 - 314 -8 288 2.5 288 24 c 2 - 288 120 l 1 - 152 120 l 2 - 138.700195312 120 128 130.700195312 128 144 c 2 - 128 240 l 2 - 128 253.299804688 138.700195312 264 152 264 c 2 - 288 264 l 1 - 288 360 l 2 - 288 381.400390625 313.900390625 392 329 377 c 2 - 497 209 l 2 - 506.299804688 199.599609375 506.299804688 184.400390625 497 175 c 2 -192 12 m 2 - 192 5.400390625 186.599609375 0 180 0 c 2 - 96 0 l 2 - 43 0 0 43 0 96 c 2 - 0 288 l 2 - 0 341 43 384 96 384 c 2 - 180 384 l 2 - 186.599609375 384 192 378.599609375 192 372 c 2 - 192 332 l 2 - 192 325.400390625 186.599609375 320 180 320 c 2 - 96 320 l 2 - 78.2998046875 320 64 305.700195312 64 288 c 2 - 64 96 l 2 - 64 78.2998046875 78.2998046875 64 96 64 c 2 - 180 64 l 2 - 186.599609375 64 192 58.599609375 192 52 c 2 - 192 12 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" s i g n hyphen o u t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" S i g n hyphen O u t hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" S i g n hyphen o u t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" S I G N hyphen O U T hyphen A L T -EndChar - -StartChar: sign-in-alt -Encoding: 62198 62198 498 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 0 m 2 - 332 0 l 2 - 325.400390625 0 320 5.400390625 320 12 c 2 - 320 52 l 2 - 320 58.599609375 325.400390625 64 332 64 c 2 - 416 64 l 2 - 433.700195312 64 448 78.2998046875 448 96 c 2 - 448 288 l 2 - 448 305.700195312 433.700195312 320 416 320 c 2 - 332 320 l 2 - 325.400390625 320 320 325.400390625 320 332 c 2 - 320 372 l 2 - 320 378.599609375 325.400390625 384 332 384 c 2 - 416 384 l 2 - 469 384 512 341 512 288 c 2 - 512 96 l 2 - 512 43 469 0 416 0 c 2 -369 201 m 2 - 378.299804688 191.599609375 378.299804688 176.400390625 369 167 c 2 - 201 -1 l 2 - 186 -16 160 -5.5 160 16 c 2 - 160 112 l 1 - 24 112 l 2 - 10.7001953125 112 0 122.700195312 0 136 c 2 - 0 232 l 2 - 0 245.299804688 10.7001953125 256 24 256 c 2 - 160 256 l 1 - 160 352 l 2 - 160 373.5 186 384 201 369 c 2 - 369 201 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" s i g n hyphen i n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S i g n hyphen I n hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S i g n hyphen i n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S I G N hyphen I N hyphen A L T -EndChar - -StartChar: redo-alt -Encoding: 62201 62201 499 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256.455078125 440 m 0 - 322.723632812 439.880859375 382.891601562 413.766601562 427.314453125 371.315429688 c 1 - 463.029296875 407.030273438 l 2 - 478.149414062 422.149414062 504 411.44140625 504 390.05859375 c 2 - 504 256 l 2 - 504 242.745117188 493.254882812 232 480 232 c 2 - 345.94140625 232 l 2 - 324.55859375 232 313.850585938 257.850585938 328.969726562 272.970703125 c 2 - 370.719726562 314.720703125 l 1 - 339.856445312 343.620117188 299.918945312 359.627929688 257.490234375 359.994140625 c 0 - 165.091796875 360.791992188 87.20703125 286.016601562 88.005859375 190.551757812 c 0 - 88.763671875 99.9912109375 162.18359375 24 256 24 c 0 - 297.126953125 24 335.997070312 38.677734375 366.62890625 65.5556640625 c 0 - 371.372070312 69.716796875 378.53515625 69.4638671875 382.997070312 65.0029296875 c 2 - 422.659179688 25.3408203125 l 2 - 427.53125 20.46875 427.290039062 12.5263671875 422.176757812 7.908203125 c 0 - 378.202148438 -31.8134765625 319.92578125 -56 256 -56 c 0 - 119.034179688 -56 8.0009765625 55.033203125 8 191.998046875 c 0 - 7.9990234375 328.806640625 119.646484375 440.245117188 256.455078125 440 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" r e d o hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" R E D O hyphen A L T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" R e d o hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" R e d o hyphen a l t -EndChar - -StartChar: poo -Encoding: 62206 62206 500 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -451.400390625 78.900390625 m 1 - 485.700195312 73.400390625 512 43.900390625 512 8 c 0 - 512 -31.7998046875 479.799804688 -64 440 -64 c 2 - 72 -64 l 2 - 32.2001953125 -64 0 -31.7998046875 0 8 c 0 - 0 43.900390625 26.2998046875 73.400390625 60.599609375 78.900390625 c 1 - 43.2998046875 92 32 112.599609375 32 136 c 0 - 32 175.799804688 64.2001953125 208 104 208 c 2 - 118.099609375 208 l 1 - 104.700195312 219.700195312 96 236.799804688 96 256 c 0 - 96 291.299804688 124.700195312 320 160 320 c 2 - 176 320 l 2 - 220.200195312 320 256 355.799804688 256 400 c 0 - 256 417.400390625 250.299804688 433.400390625 240.900390625 446.5 c 1 - 245.799804688 447.299804688 250.799804688 448 256 448 c 0 - 309 448 352 405 352 352 c 0 - 352 340.700195312 349.700195312 330.099609375 346.099609375 320 c 1 - 352 320 l 2 - 387.299804688 320 416 291.299804688 416 256 c 0 - 416 236.799804688 407.299804688 219.700195312 393.900390625 208 c 1 - 408 208 l 2 - 447.799804688 208 480 175.799804688 480 136 c 0 - 480 112.599609375 468.700195312 92 451.400390625 78.900390625 c 1 -192 192 m 0 - 174.299804688 192 160 177.700195312 160 160 c 0 - 160 142.299804688 174.299804688 128 192 128 c 0 - 209.700195312 128 224 142.299804688 224 160 c 0 - 224 177.700195312 209.700195312 192 192 192 c 0 -351.5 53 m 0 - 353.5 58.2998046875 349.5 64 343.700195312 64 c 2 - 168.299804688 64 l 2 - 162.5 64 158.5 58.2998046875 160.5 53 c 0 - 171 25.099609375 219 0 256 0 c 0 - 293 0 341 25.099609375 351.5 53 c 0 -320 128 m 0 - 337.700195312 128 352 142.299804688 352 160 c 0 - 352 177.700195312 337.700195312 192 320 192 c 0 - 302.299804688 192 288 177.700195312 288 160 c 0 - 288 142.299804688 302.299804688 128 320 128 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" p o o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" P o o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" P O O -EndChar - -StartChar: images -Encoding: 62210 62210 501 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480 32 m 1 - 480 16 l 2 - 480 -10.509765625 458.509765625 -32 432 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 272 l 2 - 0 298.509765625 21.490234375 320 48 320 c 2 - 64 320 l 1 - 64 112 l 2 - 64 67.8876953125 99.8876953125 32 144 32 c 2 - 480 32 l 1 -576 112 m 2 - 576 85.490234375 554.509765625 64 528 64 c 2 - 144 64 l 2 - 117.490234375 64 96 85.490234375 96 112 c 2 - 96 368 l 2 - 96 394.509765625 117.490234375 416 144 416 c 2 - 528 416 l 2 - 554.509765625 416 576 394.509765625 576 368 c 2 - 576 112 l 2 -256 320 m 0 - 256 346.509765625 234.509765625 368 208 368 c 0 - 181.490234375 368 160 346.509765625 160 320 c 0 - 160 293.490234375 181.490234375 272 208 272 c 0 - 234.509765625 272 256 293.490234375 256 320 c 0 -160 176 m 1 - 160 128 l 1 - 512 128 l 1 - 512 240 l 1 - 424.486328125 327.514648438 l 2 - 419.798828125 332.201171875 412.201171875 332.201171875 407.514648438 327.514648438 c 2 - 272 192 l 1 - 232.486328125 231.514648438 l 2 - 227.798828125 236.201171875 220.201171875 236.201171875 215.514648438 231.514648438 c 2 - 160 176 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" i m a g e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" I m a g e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" I M A G E S -EndChar - -StartChar: pencil-alt -Encoding: 62211 62211 502 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -497.900390625 305.900390625 m 2 - 451.799804688 259.799804688 l 2 - 447.099609375 255.099609375 439.5 255.099609375 434.799804688 259.799804688 c 2 - 323.799804688 370.799804688 l 2 - 319.099609375 375.5 319.099609375 383.099609375 323.799804688 387.799804688 c 2 - 369.900390625 433.900390625 l 2 - 388.599609375 452.599609375 419 452.599609375 437.799804688 433.900390625 c 2 - 497.900390625 373.799804688 l 2 - 516.700195312 355.099609375 516.700195312 324.700195312 497.900390625 305.900390625 c 2 -284.200195312 348.200195312 m 2 - 288.900390625 352.900390625 296.5 352.900390625 301.299804688 348.200195312 c 2 - 412.299804688 237.200195312 l 2 - 417 232.5 417 224.900390625 412.299804688 220.200195312 c 2 - 149.700195312 -42.400390625 l 1 - 28.2001953125 -63.7001953125 l 2 - 11.7998046875 -66.5 -2.5 -52.2998046875 0.400390625 -35.900390625 c 2 - 21.599609375 85.599609375 l 1 - 284.200195312 348.200195312 l 2 -124.099609375 108.099609375 m 0 - 129.599609375 102.599609375 138.400390625 102.599609375 143.900390625 108.099609375 c 2 - 297.900390625 262.099609375 l 2 - 303.400390625 267.599609375 303.400390625 276.400390625 297.900390625 281.900390625 c 0 - 292.400390625 287.400390625 283.599609375 287.400390625 278.099609375 281.900390625 c 2 - 124.099609375 127.900390625 l 2 - 118.599609375 122.400390625 118.599609375 113.599609375 124.099609375 108.099609375 c 0 -88 24 m 1 - 88 72 l 1 - 51.7001953125 72 l 1 - 40.400390625 7.5 l 1 - 71.5 -23.599609375 l 1 - 136 -12.2998046875 l 1 - 136 24 l 1 - 88 24 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" p e n c i l hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" P e n c i l hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" P e n c i l hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" P E N C I L hyphen A L T -EndChar - -StartChar: pen -Encoding: 62212 62212 503 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -290.740234375 354.759765625 m 1 - 418.759765625 226.740234375 l 1 - 140.76953125 -51.25 l 1 - 26.6298828125 -63.849609375 l 2 - 11.349609375 -65.5400390625 -1.5595703125 -52.6201171875 0.1396484375 -37.33984375 c 2 - 12.83984375 76.8798828125 l 1 - 290.740234375 354.759765625 l 1 -497.940429688 373.8203125 m 2 - 516.690429688 355.0703125 516.690429688 324.669921875 497.940429688 305.91015625 c 2 - 441.389648438 249.360351562 l 1 - 313.370117188 377.379882812 l 1 - 369.919921875 433.9296875 l 2 - 388.669921875 452.6796875 419.080078125 452.6796875 437.830078125 433.9296875 c 2 - 497.940429688 373.8203125 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" P e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" P E N -EndChar - -StartChar: pen-alt -Encoding: 62213 62213 504 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -497.940429688 373.830078125 m 2 - 516.690429688 355.0703125 516.690429688 324.669921875 497.940429688 305.919921875 c 2 - 441.389648438 249.370117188 l 1 - 313.370117188 377.389648438 l 1 - 369.919921875 433.940429688 l 2 - 388.669921875 452.690429688 419.080078125 452.690429688 437.830078125 433.940429688 c 2 - 497.940429688 373.830078125 l 2 -251.139648438 394.360351562 m 2 - 335.990234375 309.509765625 l 1 - 418.759765625 226.740234375 l 1 - 221.969726562 29.9501953125 l 2 - 177.147460938 -14.8701171875 89.634765625 -56.892578125 26.6298828125 -63.849609375 c 0 - 11.349609375 -65.5400390625 -1.5595703125 -52.6201171875 0.1396484375 -37.33984375 c 2 - 0.169921875 -37.1103515625 l 2 - 7.171875 25.80859375 49.185546875 113.205078125 93.9501953125 157.969726562 c 2 - 245.509765625 309.51953125 l 1 - 222.879882812 332.139648438 l 1 - 121.059570312 230.3203125 l 2 - 114.809570312 224.0703125 104.6796875 224.0703125 98.4296875 230.3203125 c 2 - 75.7998046875 252.950195312 l 2 - 69.5498046875 259.190429688 69.5498046875 269.3203125 75.7998046875 275.5703125 c 2 - 194.580078125 394.360351562 l 2 - 210.200195312 409.98046875 235.51953125 409.98046875 251.139648438 394.360351562 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" p e n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" P e n hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" P e n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" P E N hyphen A L T -EndChar - -StartChar: long-arrow-alt-down -Encoding: 62217 62217 505 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -168 102.05859375 m 1 - 214.057617188 102.05859375 l 2 - 235.440429688 102.05859375 246.1484375 76.20703125 231.029296875 61.087890625 c 2 - 144.969726562 -24.970703125 l 2 - 135.59765625 -34.34375 120.40234375 -34.34375 111.029296875 -24.970703125 c 2 - 24.9697265625 61.087890625 l 2 - 9.8505859375 76.2080078125 20.55859375 102.05859375 41.94140625 102.05859375 c 2 - 88 102.05859375 l 1 - 88 404 l 2 - 88 410.626953125 93.373046875 416 100 416 c 2 - 156 416 l 2 - 162.626953125 416 168 410.626953125 168 404 c 2 - 168 102.05859375 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" l o n g hyphen a r r o w hyphen a l t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" L o n g hyphen A r r o w hyphen A l t hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" L o n g hyphen a r r o w hyphen a l t hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" L O N G hyphen A R R O W hyphen A L T hyphen D O W N -EndChar - -StartChar: long-arrow-alt-left -Encoding: 62218 62218 506 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -134.05859375 152 m 1 - 134.05859375 105.942382812 l 2 - 134.05859375 84.5595703125 108.20703125 73.8515625 93.087890625 88.970703125 c 2 - 7.029296875 175.030273438 l 2 - -2.34375 184.40234375 -2.34375 199.59765625 7.029296875 208.970703125 c 2 - 93.087890625 295.030273438 l 2 - 108.208007812 310.149414062 134.05859375 299.44140625 134.05859375 278.05859375 c 2 - 134.05859375 232 l 1 - 436 232 l 2 - 442.626953125 232 448 226.626953125 448 220 c 2 - 448 164 l 2 - 448 157.373046875 442.626953125 152 436 152 c 2 - 134.05859375 152 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" l o n g hyphen a r r o w hyphen a l t hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" L o n g hyphen A r r o w hyphen A l t hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" L o n g hyphen a r r o w hyphen a l t hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" L O N G hyphen A R R O W hyphen A L T hyphen L E F T -EndChar - -StartChar: long-arrow-alt-right -Encoding: 62219 62219 507 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -313.94140625 232 m 1 - 313.94140625 278.057617188 l 2 - 313.94140625 299.440429688 339.79296875 310.1484375 354.912109375 295.029296875 c 2 - 440.970703125 208.969726562 l 2 - 450.34375 199.59765625 450.34375 184.40234375 440.970703125 175.029296875 c 2 - 354.912109375 88.9697265625 l 2 - 339.791992188 73.8505859375 313.94140625 84.55859375 313.94140625 105.94140625 c 2 - 313.94140625 152 l 1 - 12 152 l 2 - 5.373046875 152 0 157.373046875 0 164 c 2 - 0 220 l 2 - 0 226.626953125 5.373046875 232 12 232 c 2 - 313.94140625 232 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 10" l o n g hyphen a r r o w hyphen a l t hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 10" L o n g hyphen A r r o w hyphen A l t hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 10" L o n g hyphen a r r o w hyphen a l t hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 10" L O N G hyphen A R R O W hyphen A L T hyphen R I G H T -EndChar - -StartChar: long-arrow-alt-up -Encoding: 62220 62220 508 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -88 281.94140625 m 1 - 41.9423828125 281.94140625 l 2 - 20.5595703125 281.94140625 9.8515625 307.79296875 24.970703125 322.912109375 c 2 - 111.030273438 408.970703125 l 2 - 120.40234375 418.34375 135.59765625 418.34375 144.970703125 408.970703125 c 2 - 231.030273438 322.912109375 l 2 - 246.149414062 307.791992188 235.44140625 281.94140625 214.05859375 281.94140625 c 2 - 168 281.94140625 l 1 - 168 -20 l 2 - 168 -26.626953125 162.626953125 -32 156 -32 c 2 - 100 -32 l 2 - 93.373046875 -32 88 -26.626953125 88 -20 c 2 - 88 281.94140625 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" l o n g hyphen a r r o w hyphen a l t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" L o n g hyphen A r r o w hyphen A l t hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" L o n g hyphen a r r o w hyphen a l t hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" L O N G hyphen A R R O W hyphen A L T hyphen U P -EndChar - -StartChar: expand-arrows-alt -Encoding: 62238 62238 509 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 104 m 2 - 448 -8 l 1 - 448 -8.060546875 l 2 - 448 -21.275390625 437.275390625 -32 424.060546875 -32 c 2 - 424 -32 l 1 - 312 -32 l 2 - 290.610351562 -32 279.91015625 -6.099609375 295 9 c 2 - 331.200195312 45.2001953125 l 1 - 224 152.400390625 l 1 - 116.76953125 45.099609375 l 1 - 153 9 l 2 - 168.08984375 -6.099609375 157.389648438 -32 136 -32 c 2 - 24 -32 l 1 - 23.939453125 -32 l 2 - 10.724609375 -32 0 -21.275390625 0 -8.060546875 c 2 - 0 -8 l 1 - 0 104 l 2 - 0 125.400390625 25.8896484375 136.099609375 41 121 c 2 - 77.1904296875 84.7998046875 l 1 - 184.459960938 192 l 1 - 77.1796875 299.299804688 l 1 - 41 263 l 2 - 25.900390625 247.900390625 0 258.599609375 0 280 c 2 - 0 392 l 1 - 0 392.060546875 l 2 - 0 405.275390625 10.724609375 416 23.939453125 416 c 2 - 24 416 l 1 - 136 416 l 2 - 157.389648438 416 168.08984375 390.099609375 153 375 c 2 - 116.799804688 338.799804688 l 1 - 224 231.599609375 l 1 - 331.23046875 338.900390625 l 1 - 295 375 l 2 - 279.91015625 390.099609375 290.610351562 416 312 416 c 2 - 424 416 l 1 - 424.060546875 416 l 2 - 437.275390625 416 448 405.275390625 448 392.060546875 c 2 - 448 392 l 1 - 448 280 l 2 - 448 258.599609375 422.110351562 247.900390625 407 263 c 2 - 370.809570312 299.200195312 l 1 - 263.540039062 192 l 1 - 370.8203125 84.7001953125 l 1 - 407 120.900390625 l 2 - 422.099609375 136.099609375 448 125.400390625 448 104 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" e x p a n d hyphen a r r o w s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" E x p a n d hyphen A r r o w s hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" E x p a n d hyphen a r r o w s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" E X P A N D hyphen A R R O W S hyphen A L T -EndChar - -StartChar: clipboard -Encoding: 62248 62248 510 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 336 m 2 - 384 -16 l 2 - 384 -42.509765625 362.509765625 -64 336 -64 c 2 - 48 -64 l 2 - 21.490234375 -64 0 -42.509765625 0 -16 c 2 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 128 384 l 1 - 128 419.290039062 156.709960938 448 192 448 c 0 - 227.290039062 448 256 419.290039062 256 384 c 1 - 336 384 l 2 - 362.509765625 384 384 362.509765625 384 336 c 2 -192 408 m 0 - 178.745117188 408 168 397.254882812 168 384 c 0 - 168 370.745117188 178.745117188 360 192 360 c 0 - 205.254882812 360 216 370.745117188 216 384 c 0 - 216 397.254882812 205.254882812 408 192 408 c 0 -288 294 m 2 - 288 314 l 2 - 288 317.311523438 285.311523438 320 282 320 c 2 - 102 320 l 2 - 98.6884765625 320 96 317.311523438 96 314 c 2 - 96 294 l 2 - 96 290.688476562 98.6884765625 288 102 288 c 2 - 282 288 l 2 - 285.311523438 288 288 290.688476562 288 294 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" c l i p b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" C l i p b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" C L I P B O A R D -EndChar - -StartChar: arrows-alt-h -Encoding: 62263 62263 511 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -377.94140625 278.05859375 m 2 - 377.94140625 299.44140625 403.79296875 310.149414062 418.912109375 295.029296875 c 2 - 504.970703125 208.969726562 l 2 - 514.34375 199.596679688 514.34375 184.40234375 504.970703125 175.029296875 c 2 - 418.912109375 88.9697265625 l 2 - 403.791992188 73.8505859375 377.94140625 84.55859375 377.94140625 105.94140625 c 2 - 377.94140625 152 l 1 - 134.05859375 152 l 1 - 134.05859375 105.942382812 l 2 - 134.05859375 84.5595703125 108.20703125 73.8515625 93.087890625 88.970703125 c 2 - 7.029296875 175.030273438 l 2 - -2.34375 184.403320312 -2.34375 199.59765625 7.029296875 208.970703125 c 2 - 93.087890625 295.030273438 l 2 - 108.208007812 310.149414062 134.05859375 299.44140625 134.05859375 278.05859375 c 2 - 134.05859375 232 l 1 - 377.94140625 232 l 1 - 377.94140625 278.05859375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" a r r o w s hyphen a l t hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A r r o w s hyphen A l t hyphen H -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A r r o w s hyphen a l t hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A R R O W S hyphen A L T hyphen H -EndChar - -StartChar: arrows-alt-v -Encoding: 62264 62264 512 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -214.05859375 70.05859375 m 2 - 235.44140625 70.05859375 246.149414062 44.20703125 231.029296875 29.087890625 c 2 - 144.969726562 -56.970703125 l 2 - 135.596679688 -66.34375 120.40234375 -66.34375 111.029296875 -56.970703125 c 2 - 24.9697265625 29.087890625 l 2 - 9.8505859375 44.2080078125 20.55859375 70.05859375 41.94140625 70.05859375 c 2 - 88 70.05859375 l 1 - 88 313.94140625 l 1 - 41.9423828125 313.94140625 l 2 - 20.5595703125 313.94140625 9.8515625 339.79296875 24.970703125 354.912109375 c 2 - 111.030273438 440.970703125 l 2 - 120.403320312 450.34375 135.59765625 450.34375 144.970703125 440.970703125 c 2 - 231.030273438 354.912109375 l 2 - 246.149414062 339.791992188 235.44140625 313.94140625 214.05859375 313.94140625 c 2 - 168 313.94140625 l 1 - 168 70.05859375 l 1 - 214.05859375 70.05859375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" a r r o w s hyphen a l t hyphen v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A r r o w s hyphen A l t hyphen V -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A r r o w s hyphen a l t hyphen v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" A R R O W S hyphen A L T hyphen V -EndChar - -StartChar: arrow-alt-circle-down -Encoding: 62296 62296 513 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504 192 m 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 - 393 440 504 329 504 192 c 0 -212 308 m 2 - 212 192 l 1 - 141.099609375 192 l 2 - 130.400390625 192 125 179 132.599609375 171.5 c 2 - 247.5 57.2001953125 l 2 - 252.200195312 52.5 259.700195312 52.5 264.400390625 57.2001953125 c 2 - 379.299804688 171.5 l 2 - 386.900390625 179.099609375 381.5 192 370.799804688 192 c 2 - 300 192 l 1 - 300 308 l 2 - 300 314.599609375 294.599609375 320 288 320 c 2 - 224 320 l 2 - 217.400390625 320 212 314.599609375 212 308 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 8" a r r o w hyphen a l t hyphen c i r c l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 8" A r r o w hyphen A l t hyphen C i r c l e hyphen D o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 8" A r r o w hyphen a l t hyphen c i r c l e hyphen d o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 8" A R R O W hyphen A L T hyphen C I R C L E hyphen D O W N -EndChar - -StartChar: arrow-alt-circle-left -Encoding: 62297 62297 514 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 -56 m 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 -372 236 m 2 - 256 236 l 1 - 256 306.900390625 l 2 - 256 317.599609375 243 323 235.5 315.400390625 c 2 - 121.200195312 200.5 l 2 - 116.5 195.799804688 116.5 188.299804688 121.200195312 183.599609375 c 2 - 235.5 68.7001953125 l 2 - 243.099609375 61.099609375 256 66.5 256 77.2001953125 c 2 - 256 148 l 1 - 372 148 l 2 - 378.599609375 148 384 153.400390625 384 160 c 2 - 384 224 l 2 - 384 230.599609375 378.599609375 236 372 236 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 8" a r r o w hyphen a l t hyphen c i r c l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 8" A r r o w hyphen A l t hyphen C i r c l e hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 8" A r r o w hyphen a l t hyphen c i r c l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 8" A R R O W hyphen A L T hyphen C I R C L E hyphen L E F T -EndChar - -StartChar: arrow-alt-circle-right -Encoding: 62298 62298 515 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -140 148 m 2 - 256 148 l 1 - 256 77.099609375 l 2 - 256 66.400390625 269 61 276.5 68.599609375 c 2 - 390.799804688 183.5 l 2 - 395.5 188.200195312 395.5 195.700195312 390.799804688 200.400390625 c 2 - 276.5 315.400390625 l 2 - 268.900390625 323 256 317.599609375 256 306.900390625 c 2 - 256 236 l 1 - 140 236 l 2 - 133.400390625 236 128 230.599609375 128 224 c 2 - 128 160 l 2 - 128 153.400390625 133.400390625 148 140 148 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 5" a r r o w hyphen a l t hyphen c i r c l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 5" A r r o w hyphen A l t hyphen C i r c l e hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 5" A r r o w hyphen a l t hyphen c i r c l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 5" A R R O W hyphen A L T hyphen C I R C L E hyphen R I G H T -EndChar - -StartChar: arrow-alt-circle-up -Encoding: 62299 62299 516 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -8 192 m 0 - 8 329 119 440 256 440 c 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 -300 76 m 2 - 300 192 l 1 - 370.900390625 192 l 2 - 381.599609375 192 387 205 379.400390625 212.5 c 2 - 264.5 326.799804688 l 2 - 259.799804688 331.5 252.299804688 331.5 247.599609375 326.799804688 c 2 - 132.599609375 212.5 l 2 - 125 204.900390625 130.400390625 192 141.099609375 192 c 2 - 212 192 l 1 - 212 76 l 2 - 212 69.400390625 217.400390625 64 224 64 c 2 - 288 64 l 2 - 294.599609375 64 300 69.400390625 300 76 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" a r r o w hyphen a l t hyphen c i r c l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" A r r o w hyphen A l t hyphen C i r c l e hyphen U p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" A r r o w hyphen a l t hyphen c i r c l e hyphen u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" A R R O W hyphen A L T hyphen C I R C L E hyphen U P -EndChar - -StartChar: external-link-alt -Encoding: 62301 62301 517 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -432 128 m 2 - 440.83203125 128 448 120.83203125 448 112 c 2 - 448 -16 l 2 - 448 -42.49609375 426.49609375 -64 400 -64 c 2 - 48 -64 l 2 - 21.50390625 -64 0 -42.49609375 0 -16 c 2 - 0 336 l 2 - 0 362.49609375 21.50390625 384 48 384 c 2 - 208 384 l 2 - 216.83203125 384 224 376.83203125 224 368 c 2 - 224 336 l 2 - 224 327.16796875 216.83203125 320 208 320 c 2 - 64 320 l 1 - 64 0 l 1 - 384 0 l 1 - 384 112 l 2 - 384 120.83203125 391.16796875 128 400 128 c 2 - 432 128 l 2 -488 448 m 2 - 501.248046875 448 512 437.248046875 512 424 c 2 - 512 296 l 2 - 512 274.5 486 264 471 279 c 2 - 435.280273438 314.6796875 l 1 - 191.669921875 71 l 2 - 187.787109375 67.103515625 180.170898438 63.94140625 174.669921875 63.94140625 c 0 - 169.168945312 63.94140625 161.552734375 67.103515625 157.669921875 71 c 2 - 135 93.6298828125 l 2 - 131.103515625 97.5126953125 127.94140625 105.12890625 127.94140625 110.629882812 c 0 - 127.94140625 116.130859375 131.103515625 123.747070312 135 127.629882812 c 2 - 378.73046875 371.26953125 l 1 - 343 407 l 2 - 327.950195312 422.08984375 338.629882812 448 360 448 c 2 - 488 448 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" e x t e r n a l hyphen l i n k hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" E x t e r n a l hyphen L i n k hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" E x t e r n a l hyphen l i n k hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" E X T E R N A L hyphen L I N K hyphen A L T -EndChar - -StartChar: external-link-square-alt -Encoding: 62304 62304 518 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 368 m 2 - 448 16 l 2 - 448 -10.509765625 426.509765625 -32 400 -32 c 2 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 368 l 2 - 0 394.509765625 21.490234375 416 48 416 c 2 - 400 416 l 2 - 426.509765625 416 448 394.509765625 448 368 c 2 -360 352 m 2 - 248.029296875 352 l 2 - 226.715820312 352 215.94921875 326.138671875 231.057617188 311.029296875 c 2 - 263.041992188 279.041992188 l 1 - 67.5146484375 83.5146484375 l 2 - 62.8291015625 78.8291015625 62.8291015625 71.2314453125 67.5146484375 66.5439453125 c 2 - 98.5439453125 35.5146484375 l 2 - 103.231445312 30.8291015625 110.829101562 30.8291015625 115.514648438 35.5146484375 c 2 - 311.041015625 231.041015625 l 1 - 343.029296875 199.049804688 l 2 - 358.057617188 184.0234375 384 194.575195312 384 216.021484375 c 2 - 384 328 l 2 - 384 341.254882812 373.254882812 352 360 352 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 3" e x t e r n a l hyphen l i n k hyphen s q u a r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 3" E x t e r n a l hyphen L i n k hyphen S q u a r e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 3" E x t e r n a l hyphen l i n k hyphen s q u a r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 3" E X T E R N A L hyphen L I N K hyphen S Q U A R E hyphen A L T -EndChar - -StartChar: exchange-alt -Encoding: 62306 62306 519 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 280 m 2 - 0 296 l 2 - 0 309.254882812 10.7451171875 320 24 320 c 2 - 384 320 l 1 - 384 368 l 2 - 384 389.3671875 409.899414062 400.041992188 424.970703125 384.970703125 c 2 - 504.970703125 304.970703125 l 2 - 514.342773438 295.59765625 514.342773438 280.40234375 504.970703125 271.030273438 c 2 - 424.970703125 191.030273438 l 2 - 409.956054688 176.017578125 384 186.543945312 384 208 c 2 - 384 256 l 1 - 24 256 l 2 - 10.7451171875 256 0 266.745117188 0 280 c 2 -488 128 m 2 - 501.254882812 128 512 117.254882812 512 104 c 2 - 512 88 l 2 - 512 74.7451171875 501.254882812 64 488 64 c 2 - 128 64 l 1 - 128 16 l 2 - 128 -5.4365234375 102.056640625 -15.9970703125 87.029296875 -0.9697265625 c 2 - 7.029296875 79.0302734375 l 2 - -2.3427734375 88.40234375 -2.3427734375 103.59765625 7.029296875 112.970703125 c 2 - 87.029296875 192.970703125 l 2 - 102.137695312 208.080078125 128 197.314453125 128 176 c 2 - 128 128 l 1 - 488 128 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" e x c h a n g e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" E x c h a n g e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" E x c h a n g e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" E X C H A N G E hyphen A L T -EndChar - -StartChar: cloud-download-alt -Encoding: 62337 62337 520 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -537.599609375 221.400390625 m 1 - 596 209.599609375 640 157.900390625 640 96 c 0 - 640 25.2998046875 582.700195312 -32 512 -32 c 2 - 144 -32 l 2 - 64.5 -32 0 32.5 0 112 c 0 - 0 174.799804688 40.2001953125 228.200195312 96.2001953125 247.900390625 c 0 - 96.099609375 250.599609375 96 253.299804688 96 256 c 0 - 96 344.400390625 167.599609375 416 256 416 c 0 - 315.299804688 416 367 383.799804688 394.700195312 335.799804688 c 1 - 409.900390625 346 428.299804688 352 448 352 c 0 - 501 352 544 309 544 256 c 0 - 544 243.799804688 541.700195312 232.099609375 537.599609375 221.400390625 c 1 -404.700195312 132.700195312 m 2 - 414.799804688 142.799804688 407.599609375 160 393.400390625 160 c 2 - 328 160 l 1 - 328 272 l 2 - 328 280.799804688 320.799804688 288 312 288 c 2 - 264 288 l 2 - 255.200195312 288 248 280.799804688 248 272 c 2 - 248 160 l 1 - 182.599609375 160 l 2 - 168.400390625 160 161.200195312 142.799804688 171.299804688 132.700195312 c 2 - 276.700195312 27.2998046875 l 2 - 282.900390625 21.099609375 293.099609375 21.099609375 299.299804688 27.2998046875 c 2 - 404.700195312 132.700195312 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" c l o u d hyphen d o w n l o a d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" C l o u d hyphen D o w n l o a d hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" C l o u d hyphen d o w n l o a d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" C L O U D hyphen D O W N L O A D hyphen A L T -EndChar - -StartChar: cloud-upload-alt -Encoding: 62338 62338 521 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -537.599609375 221.400390625 m 1 - 596 209.599609375 640 157.900390625 640 96 c 0 - 640 25.2998046875 582.700195312 -32 512 -32 c 2 - 144 -32 l 2 - 64.5 -32 0 32.5 0 112 c 0 - 0 174.799804688 40.2001953125 228.200195312 96.2001953125 247.900390625 c 0 - 96.099609375 250.599609375 96 253.299804688 96 256 c 0 - 96 344.400390625 167.599609375 416 256 416 c 0 - 315.299804688 416 367 383.799804688 394.700195312 335.799804688 c 1 - 409.900390625 346 428.299804688 352 448 352 c 0 - 501 352 544 309 544 256 c 0 - 544 243.799804688 541.700195312 232.099609375 537.599609375 221.400390625 c 1 -393.400390625 160 m 2 - 407.599609375 160 414.799804688 177.200195312 404.700195312 187.299804688 c 2 - 299.299804688 292.700195312 l 2 - 293.099609375 298.900390625 282.900390625 298.900390625 276.700195312 292.700195312 c 2 - 171.299804688 187.299804688 l 2 - 161.200195312 177.200195312 168.299804688 160 182.599609375 160 c 2 - 248 160 l 1 - 248 48 l 2 - 248 39.2001953125 255.200195312 32 264 32 c 2 - 312 32 l 2 - 320.799804688 32 328 39.2001953125 328 48 c 2 - 328 160 l 1 - 393.400390625 160 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" c l o u d hyphen u p l o a d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" C l o u d hyphen U p l o a d hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" C l o u d hyphen u p l o a d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" C L O U D hyphen U P L O A D hyphen A L T -EndChar - -StartChar: gem -Encoding: 62373 62373 522 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -485.5 448 m 1 - 576 288 l 1 - 474.900390625 288 l 1 - 405.700195312 448 l 1 - 485.5 448 l 1 -357.5 448 m 1 - 426.700195312 288 l 1 - 149.299804688 288 l 1 - 218.5 448 l 1 - 357.5 448 l 1 -90.5 448 m 1 - 170.299804688 448 l 1 - 101.099609375 288 l 1 - 0 288 l 1 - 90.5 448 l 1 -0 256 m 1 - 100.700195312 256 l 1 - 223.700195312 4.2998046875 l 2 - 225.200195312 1.2001953125 221 -1.599609375 218.700195312 1 c 2 - 0 256 l 1 -148.200195312 256 m 1 - 427.799804688 256 l 1 - 290.799804688 -62.2001953125 l 2 - 289.799804688 -64.599609375 286.299804688 -64.599609375 285.299804688 -62.2001953125 c 2 - 148.200195312 256 l 1 -352.299804688 4.2998046875 m 2 - 475.299804688 256 l 1 - 576 256 l 1 - 357.299804688 1.099609375 l 2 - 355 -1.599609375 350.799804688 1.2001953125 352.299804688 4.2998046875 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" g e m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" G e m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" G E M -EndChar - -StartChar: level-down-alt -Encoding: 62398 62398 523 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -313.552734375 55.6689453125 m 2 - 209.586914062 -56.333984375 l 2 - 200.1015625 -66.5478515625 183.911132812 -66.5634765625 174.413085938 -56.333984375 c 2 - 70.4384765625 55.6689453125 l 2 - 56.232421875 70.96875 67.0615234375 96 88.025390625 96 c 2 - 152 96 l 1 - 152 368 l 1 - 68.0244140625 368 l 1 - 68.0224609375 368 l 2 - 65.279296875 368 61.478515625 369.575195312 59.5390625 371.514648438 c 2 - 3.5390625 427.514648438 l 2 - -4.021484375 435.07421875 1.3330078125 448 12.0244140625 448 c 2 - 208 448 l 2 - 221.254882812 448 232 437.254882812 232 424 c 2 - 232 96 l 1 - 295.965820312 96 l 2 - 316.84375 96 327.817382812 71.03125 313.552734375 55.6689453125 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" l e v e l hyphen d o w n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" L e v e l hyphen D o w n hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" L e v e l hyphen d o w n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" L E V E L hyphen D O W N hyphen A L T -EndChar - -StartChar: level-up-alt -Encoding: 62399 62399 524 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -313.552734375 328.331054688 m 2 - 327.817382812 312.96875 316.84375 288 295.965820312 288 c 2 - 232 288 l 1 - 232 -40 l 2 - 232 -53.2548828125 221.254882812 -64 208 -64 c 2 - 12.0244140625 -64 l 2 - 1.3330078125 -64 -4.021484375 -51.07421875 3.5390625 -43.5146484375 c 2 - 59.5390625 12.4853515625 l 2 - 61.478515625 14.4248046875 65.279296875 16 68.0224609375 16 c 2 - 68.0244140625 16 l 1 - 152 16 l 1 - 152 288 l 1 - 88.025390625 288 l 2 - 67.0615234375 288 56.232421875 313.03125 70.4384765625 328.331054688 c 2 - 174.413085938 440.333984375 l 2 - 183.911132812 450.563476562 200.1015625 450.547851562 209.586914062 440.333984375 c 2 - 313.552734375 328.331054688 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" l e v e l hyphen u p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" L e v e l hyphen U p hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" L e v e l hyphen u p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" L E V E L hyphen U P hyphen A L T -EndChar - -StartChar: lock-open -Encoding: 62401 62401 525 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -423.5 448 m 0 - 507.5 448.299804688 576 380 576 296 c 2 - 576 216 l 2 - 576 202.700195312 565.299804688 192 552 192 c 2 - 520 192 l 2 - 506.700195312 192 496 202.700195312 496 216 c 2 - 496 296 l 2 - 496 335.900390625 463.299804688 368.400390625 423.299804688 368 c 0 - 383.700195312 367.599609375 352 334.700195312 352 295.099609375 c 2 - 352 224 l 1 - 400 224 l 2 - 426.5 224 448 202.5 448 176 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 176 l 2 - 0 202.5 21.5 224 48 224 c 2 - 272 224 l 1 - 272 294.5 l 2 - 272 378.5 339.5 447.700195312 423.5 448 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" l o c k hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" L o c k hyphen O p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" L o c k hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" L O C K hyphen O P E N -EndChar - -StartChar: map-marker-alt -Encoding: 62405 62405 526 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -172.267578125 -53.669921875 m 0 - 26.9697265625 156.96875 0 178.586914062 0 256 c 0 - 0 362.0390625 85.9609375 448 192 448 c 0 - 298.0390625 448 384 362.0390625 384 256 c 0 - 384 178.586914062 357.030273438 156.96875 211.732421875 -53.669921875 c 0 - 202.197265625 -67.4443359375 181.801757812 -67.443359375 172.267578125 -53.669921875 c 0 -192 176 m 0 - 236.182617188 176 272 211.817382812 272 256 c 0 - 272 300.182617188 236.182617188 336 192 336 c 0 - 147.817382812 336 112 300.182617188 112 256 c 0 - 112 211.817382812 147.817382812 176 192 176 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" m a p hyphen m a r k e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" M a p hyphen M a r k e r hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" M a p hyphen m a r k e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" M A P hyphen M A R K E R hyphen A L T -EndChar - -StartChar: microphone-alt -Encoding: 62409 62409 527 -Width: 352 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 256 m 2 - 344.83984375 256 352 248.83984375 352 240 c 2 - 352 192 l 2 - 352 103.099609375 285.709960938 29.5302734375 200 17.76953125 c 1 - 200 -16 l 1 - 256 -16 l 2 - 264.83984375 -16 272 -23.16015625 272 -32 c 2 - 272 -48 l 2 - 272 -56.83984375 264.83984375 -64 256 -64 c 2 - 96 -64 l 2 - 87.16015625 -64 80 -56.83984375 80 -48 c 2 - 80 -32 l 2 - 80 -23.16015625 87.16015625 -16 96 -16 c 2 - 152 -16 l 1 - 152 18.150390625 l 1 - 63.9697265625 30.2900390625 0 110.200195312 0 199.83984375 c 2 - 0 240 l 2 - 0 248.83984375 7.16015625 256 16 256 c 2 - 32 256 l 2 - 40.83984375 256 48 248.83984375 48 240 c 2 - 48 197.700195312 l 2 - 48 130.889648438 96.7099609375 71.1103515625 163.209960938 64.6201171875 c 0 - 239.509765625 57.1796875 304 117.200195312 304 192 c 2 - 304 240 l 2 - 304 248.83984375 311.16015625 256 320 256 c 2 - 336 256 l 2 -176 96 m 0 - 122.98046875 96 80 138.98046875 80 192 c 2 - 80 352 l 2 - 80 405.01953125 122.98046875 448 176 448 c 0 - 229.01953125 448 272 405.01953125 272 352 c 1 - 186.669921875 352 l 2 - 180.780273438 352 176 348.419921875 176 344 c 2 - 176 328 l 2 - 176 323.580078125 180.780273438 320 186.669921875 320 c 2 - 272 320 l 1 - 272 288 l 1 - 186.669921875 288 l 2 - 180.780273438 288 176 284.419921875 176 280 c 2 - 176 264 l 2 - 176 259.580078125 180.780273438 256 186.669921875 256 c 2 - 272 256 l 1 - 272 224 l 1 - 186.669921875 224 l 2 - 180.780273438 224 176 220.419921875 176 216 c 2 - 176 200 l 2 - 176 195.580078125 180.780273438 192 186.669921875 192 c 2 - 272 192 l 1 - 272 138.98046875 229.01953125 96 176 96 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" m i c r o p h o n e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" M i c r o p h o n e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" M i c r o p h o n e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" M I C R O P H O N E hyphen A L T -EndChar - -StartChar: mobile-alt -Encoding: 62413 62413 528 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -272 448 m 2 - 298.5 448 320 426.5 320 400 c 2 - 320 -16 l 2 - 320 -42.5 298.5 -64 272 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 272 448 l 2 -160 -32 m 0 - 177.700195312 -32 192 -17.7001953125 192 0 c 0 - 192 17.7001953125 177.700195312 32 160 32 c 0 - 142.299804688 32 128 17.7001953125 128 0 c 0 - 128 -17.7001953125 142.299804688 -32 160 -32 c 0 -272 76 m 2 - 272 388 l 2 - 272 394.599609375 266.599609375 400 260 400 c 2 - 60 400 l 2 - 53.400390625 400 48 394.599609375 48 388 c 2 - 48 76 l 2 - 48 69.400390625 53.400390625 64 60 64 c 2 - 260 64 l 2 - 266.599609375 64 272 69.400390625 272 76 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" m o b i l e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" M o b i l e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" M o b i l e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" M O B I L E hyphen A L T -EndChar - -StartChar: money-bill-alt -Encoding: 62417 62417 529 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -352 160 m 2 - 356.419921875 160 360 156.419921875 360 152 c 2 - 360 136 l 2 - 360 131.580078125 356.419921875 128 352 128 c 2 - 288 128 l 2 - 283.580078125 128 280 131.580078125 280 136 c 2 - 280 152 l 2 - 280 156.419921875 283.580078125 160 288 160 c 2 - 304 160 l 1 - 304 215.440429688 l 1 - 303.530273438 215.129882812 l 2 - 302.41796875 214.388671875 300.430664062 213.786132812 299.09375 213.786132812 c 0 - 296.73046875 213.786132812 293.75 215.3828125 292.440429688 217.349609375 c 2 - 283.559570312 230.66015625 l 2 - 282.818359375 231.772460938 282.215820312 233.759765625 282.215820312 235.095703125 c 0 - 282.215820312 237.458984375 283.8125 240.440429688 285.780273438 241.75 c 2 - 301.110351562 251.969726562 l 2 - 305.049804688 254.599609375 309.6796875 256 314.419921875 256 c 2 - 328 256 l 2 - 332.419921875 256 336 252.419921875 336 248 c 2 - 336 160 l 1 - 352 160 l 2 -608 384 m 2 - 625.669921875 384 640 369.669921875 640 352 c 2 - 640 32 l 2 - 640 14.330078125 625.669921875 0 608 0 c 2 - 32 0 l 2 - 14.330078125 0 0 14.330078125 0 32 c 2 - 0 352 l 2 - 0 369.669921875 14.330078125 384 32 384 c 2 - 608 384 l 2 -48 48 m 1 - 112 48 l 1 - 112 83.349609375 83.349609375 112 48 112 c 1 - 48 48 l 1 -48 272 m 1 - 83.349609375 272 112 300.650390625 112 336 c 1 - 48 336 l 1 - 48 272 l 1 -320 80 m 0 - 373 80 416 130.129882812 416 192 c 0 - 416 253.860351562 373.01953125 304 320 304 c 0 - 266.98046875 304 224 253.860351562 224 192 c 0 - 224 130.150390625 266.98046875 80 320 80 c 0 -592 48 m 1 - 592 112 l 1 - 556.650390625 112 528 83.349609375 528 48 c 1 - 592 48 l 1 -592 272 m 1 - 592 336 l 1 - 528 336 l 1 - 528 300.650390625 556.650390625 272 592 272 c 1 -EndSplineSet -Validated: 524805 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" m o n e y hyphen b i l l hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" M o n e y hyphen B i l l hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" M o n e y hyphen b i l l hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" M O N E Y hyphen B I L L hyphen A L T -EndChar - -StartChar: phone-slash -Encoding: 62429 62429 530 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -268.200195312 66.599609375 m 1 - 279.700195312 72 290.900390625 78.2001953125 301.799804688 84.7001953125 c 1 - 381.799804688 22.900390625 l 1 - 305.799804688 -31.599609375 212.799804688 -64 112.099609375 -64 c 0 - 100.799804688 -64 91.2001953125 -56.2001953125 88.7001953125 -45.400390625 c 2 - 64.7001953125 58.599609375 l 2 - 62.099609375 70 67.900390625 81.5 78.599609375 86.099609375 c 2 - 190.599609375 134.099609375 l 2 - 200.400390625 138.299804688 211.799804688 135.5 218.599609375 127.200195312 c 2 - 268.200195312 66.599609375 l 1 -633.799804688 -10.099609375 m 2 - 640.799804688 -15.5 642.099609375 -25.599609375 636.700195312 -32.400390625 c 2 - 617.099609375 -57.7001953125 l 2 - 611.599609375 -64.7001953125 601.599609375 -65.900390625 594.599609375 -60.5 c 2 - 6.2001953125 394.200195312 l 2 - -0.7998046875 399.599609375 -2 409.599609375 3.400390625 416.599609375 c 2 - 23 441.799804688 l 2 - 28.5 448.799804688 38.5 450 45.5 444.599609375 c 2 - 399.400390625 171.099609375 l 1 - 417.5 193.599609375 433.200195312 217.799804688 445.400390625 243.900390625 c 1 - 384.799804688 293.5 l 2 - 376.5 300.200195312 373.700195312 311.700195312 377.900390625 321.5 c 2 - 425.900390625 433.5 l 2 - 430.5 444.099609375 442.099609375 450 453.400390625 447.400390625 c 2 - 557.400390625 423.400390625 l 2 - 568.299804688 420.900390625 576 411.200195312 576 400 c 0 - 576 291.099609375 537.900390625 191.599609375 475.099609375 112.5 c 1 - 633.799804688 -10.099609375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" p h o n e hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" P h o n e hyphen S l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" P h o n e hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" P H O N E hyphen S L A S H -EndChar - -StartChar: portrait -Encoding: 62432 62432 531 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 448 m 2 - 362.5 448 384 426.5 384 400 c 2 - 384 -16 l 2 - 384 -42.5 362.5 -64 336 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 336 448 l 2 -192 320 m 0 - 156.700195312 320 128 291.299804688 128 256 c 0 - 128 220.700195312 156.700195312 192 192 192 c 0 - 227.299804688 192 256 220.700195312 256 256 c 0 - 256 291.299804688 227.299804688 320 192 320 c 0 -304 83.2001953125 m 2 - 304 102.400390625 l 2 - 304 134.200195312 273.900390625 160 236.799804688 160 c 2 - 231.799804688 160 l 1 - 219.599609375 154.900390625 206.099609375 152 192 152 c 0 - 177.900390625 152 164.5 154.900390625 152.200195312 160 c 1 - 147.200195312 160 l 2 - 110.099609375 160 80 134.200195312 80 102.400390625 c 2 - 80 83.2001953125 l 2 - 80 72.599609375 90 64 102.400390625 64 c 2 - 281.599609375 64 l 2 - 294 64 304 72.599609375 304 83.2001953125 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" p o r t r a i t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" P o r t r a i t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" P O R T R A I T -EndChar - -StartChar: reply -Encoding: 62437 62437 532 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -8.30859375 258.1640625 m 2 - 184.313476562 410.149414062 l 2 - 199.71875 423.454101562 224 412.653320312 224 391.985351562 c 2 - 224 311.931640625 l 1 - 384.62890625 310.092773438 512 277.900390625 512 125.673828125 c 0 - 512 64.2333984375 472.418945312 3.365234375 428.666992188 -28.4580078125 c 0 - 415.013671875 -38.388671875 395.555664062 -25.9248046875 400.58984375 -9.8271484375 c 0 - 445.93359375 135.184570312 379.083007812 173.682617188 224 175.915039062 c 1 - 224 88 l 2 - 224 67.2998046875 199.700195312 56.546875 184.313476562 69.8359375 c 2 - 8.30859375 221.8359375 l 2 - -2.76171875 231.3984375 -2.77734375 248.588867188 8.30859375 258.1640625 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" r e p l y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" R E P L Y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" R e p l y -EndChar - -StartChar: shield-alt -Encoding: 62445 62445 533 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -466.5 364.299804688 m 2 - 484.299804688 356.900390625 496 339.400390625 496 320 c 0 - 496 98.7001953125 360.099609375 -24.599609375 274.400390625 -60.2998046875 c 0 - 262.599609375 -65.2001953125 249.299804688 -65.2001953125 237.5 -60.2998046875 c 0 - 130.5 -15.7001953125 16 121.5 16 320 c 0 - 16 339.400390625 27.7001953125 356.900390625 45.599609375 364.299804688 c 2 - 237.599609375 444.299804688 l 2 - 242.490234375 446.329101562 250.755859375 447.974609375 256.049804688 447.974609375 c 0 - 261.344726562 447.974609375 269.609375 446.329101562 274.5 444.299804688 c 2 - 466.5 364.299804688 l 2 -256.099609375 1.7001953125 m 1 - 349.799804688 48.2998046875 428.599609375 158 431.900390625 309.400390625 c 1 - 256 382.700195312 l 1 - 256.099609375 1.7001953125 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" s h i e l d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" S h i e l d hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" S h i e l d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" S H I E L D hyphen A L T -EndChar - -StartChar: tablet-alt -Encoding: 62458 62458 534 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 448 m 2 - 426.5 448 448 426.5 448 400 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 400 l 2 - 0 426.5 21.5 448 48 448 c 2 - 400 448 l 2 -224 -32 m 0 - 241.700195312 -32 256 -17.7001953125 256 0 c 0 - 256 17.7001953125 241.700195312 32 224 32 c 0 - 206.299804688 32 192 17.7001953125 192 0 c 0 - 192 -17.7001953125 206.299804688 -32 224 -32 c 0 -400 76 m 2 - 400 388 l 2 - 400 394.599609375 394.599609375 400 388 400 c 2 - 60 400 l 2 - 53.400390625 400 48 394.599609375 48 388 c 2 - 48 76 l 2 - 48 69.400390625 53.400390625 64 60 64 c 2 - 388 64 l 2 - 394.599609375 64 400 69.400390625 400 76 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" t a b l e t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" T a b l e t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" T A B L E T hyphen A L T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" T a b l e t hyphen A l t -EndChar - -StartChar: tachometer-alt -Encoding: 62461 62461 535 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 416 m 0 - 447.059570312 416 576 287.059570312 576 128 c 0 - 576 75.2001953125 561.75 25.740234375 536.940429688 -16.7998046875 c 0 - 531.330078125 -26.419921875 520.639648438 -32 509.5 -32 c 2 - 66.5 -32 l 2 - 55.3603515625 -32 44.669921875 -26.419921875 39.0595703125 -16.7998046875 c 0 - 14.25 25.740234375 0 75.2001953125 0 128 c 0 - 0 287.059570312 128.940429688 416 288 416 c 0 -288 352 m 0 - 270.330078125 352 256.009765625 337.669921875 256.009765625 320 c 0 - 256.009765625 302.330078125 270.33984375 288 288.009765625 288 c 0 - 294.6796875 288 300.51953125 290.51953125 305.650390625 294.009765625 c 2 - 314.870117188 321.6796875 l 2 - 315.6796875 324.120117188 317.209960938 326.08984375 318.3203125 328.349609375 c 0 - 314.580078125 341.870117188 302.709960938 352 288 352 c 0 -96 64 m 0 - 113.669921875 64 128 78.330078125 128 96 c 0 - 128 113.669921875 113.669921875 128 96 128 c 0 - 78.330078125 128 64 113.669921875 64 96 c 0 - 64 78.330078125 78.330078125 64 96 64 c 0 -144 224 m 0 - 161.669921875 224 176 238.330078125 176 256 c 0 - 176 273.669921875 161.669921875 288 144 288 c 0 - 126.330078125 288 112 273.669921875 112 256 c 0 - 112 238.330078125 126.330078125 224 144 224 c 0 -390.76953125 296.41015625 m 2 - 394.950195312 308.98046875 388.169921875 322.580078125 375.599609375 326.76953125 c 0 - 362.969726562 331.049804688 349.41015625 324.16015625 345.240234375 311.599609375 c 2 - 283.900390625 127.58984375 l 1 - 250.5 125.4296875 224 97.9404296875 224 64 c 0 - 224 52.2802734375 227.379882812 41.4501953125 232.879882812 32 c 1 - 343.120117188 32 l 1 - 348.620117188 41.4501953125 352 52.2802734375 352 64 c 0 - 352 83.4599609375 343.129882812 100.669921875 329.440429688 112.41015625 c 1 - 390.76953125 296.41015625 l 2 -405.4296875 239.209960938 m 1 - 411.110351562 230.26953125 420.620117188 224 432 223.990234375 c 0 - 449.669921875 223.990234375 464 238.3203125 464 255.990234375 c 0 - 464 273.66015625 449.669921875 287.990234375 432 287.990234375 c 0 - 428.080078125 287.990234375 424.419921875 287.049804688 420.950195312 285.759765625 c 2 - 405.4296875 239.209960938 l 1 -480 64 m 0 - 497.669921875 64 512 78.330078125 512 96 c 0 - 512 113.669921875 497.669921875 128 480 128 c 0 - 462.330078125 128 448 113.669921875 448 96 c 0 - 448 78.330078125 462.330078125 64 480 64 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" t a c h o m e t e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" T a c h o m e t e r hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" T a c h o m e t e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" T A C H O M E T E R hyphen A L T -EndChar - -StartChar: ticket-alt -Encoding: 62463 62463 536 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128 288 m 1 - 448 288 l 1 - 448 96 l 1 - 128 96 l 1 - 128 288 l 1 -528 192 m 0 - 528 165.490234375 549.490234375 144 576 144 c 1 - 576 48 l 2 - 576 21.490234375 554.509765625 0 528 0 c 2 - 48 0 l 2 - 21.490234375 0 0 21.490234375 0 48 c 2 - 0 144 l 1 - 26.509765625 144 48 165.490234375 48 192 c 0 - 48 218.509765625 26.509765625 240 0 240 c 1 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 528 384 l 2 - 554.509765625 384 576 362.509765625 576 336 c 2 - 576 240 l 1 - 549.490234375 240 528 218.509765625 528 192 c 0 -480 296 m 2 - 480 309.254882812 469.254882812 320 456 320 c 2 - 120 320 l 2 - 106.745117188 320 96 309.254882812 96 296 c 2 - 96 88 l 2 - 96 74.7451171875 106.745117188 64 120 64 c 2 - 456 64 l 2 - 469.254882812 64 480 74.7451171875 480 88 c 2 - 480 296 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" t i c k e t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T i c k e t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T I C K E T hyphen A L T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T i c k e t hyphen A l t -EndChar - -StartChar: user-alt -Encoding: 62470 62470 537 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 160 m 0 - 176.5 160 112 224.5 112 304 c 0 - 112 383.5 176.5 448 256 448 c 0 - 335.5 448 400 383.5 400 304 c 0 - 400 224.5 335.5 160 256 160 c 0 -384 128 m 2 - 454.700195312 128 512 70.7001953125 512 0 c 2 - 512 -16 l 2 - 512 -42.5 490.5 -64 464 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 0 l 2 - 0 70.7001953125 57.2998046875 128 128 128 c 2 - 183.099609375 128 l 1 - 205.400390625 117.799804688 230 112 256 112 c 0 - 282 112 306.700195312 117.799804688 328.900390625 128 c 1 - 384 128 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" u s e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" U s e r hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" U s e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" U S E R hyphen A L T -EndChar - -StartChar: window-close -Encoding: 62480 62480 538 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 416 m 2 - 490.5 416 512 394.5 512 368 c 2 - 512 16 l 2 - 512 -10.5 490.5 -32 464 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 464 416 l 2 -380.400390625 125.5 m 2 - 313.299804688 192 l 1 - 380.400390625 258.5 l 2 - 385.200195312 263.299804688 385.200195312 271.099609375 380.400390625 275.900390625 c 2 - 339.900390625 316.400390625 l 2 - 335.099609375 321.200195312 327.299804688 321.200195312 322.5 316.400390625 c 2 - 256 249.299804688 l 1 - 189.5 316.400390625 l 2 - 184.700195312 321.200195312 176.900390625 321.200195312 172.099609375 316.400390625 c 2 - 131.599609375 275.900390625 l 2 - 126.799804688 271.099609375 126.799804688 263.299804688 131.599609375 258.5 c 2 - 198.700195312 192 l 1 - 131.599609375 125.5 l 2 - 126.799804688 120.700195312 126.799804688 112.900390625 131.599609375 108.099609375 c 2 - 172.099609375 67.599609375 l 2 - 176.900390625 62.7998046875 184.700195312 62.7998046875 189.5 67.599609375 c 2 - 256 134.700195312 l 1 - 322.5 67.599609375 l 2 - 327.299804688 62.7998046875 335.099609375 62.7998046875 339.900390625 67.599609375 c 2 - 380.400390625 108.099609375 l 2 - 385.200195312 112.900390625 385.200195312 120.700195312 380.400390625 125.5 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" w i n d o w hyphen c l o s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" W i n d o w hyphen C l o s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" W i n d o w hyphen c l o s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" W I N D O W hyphen C L O S E -EndChar - -StartChar: baseball-ball -Encoding: 62515 62515 539 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -368.5 84.099609375 m 1 - 381.400390625 57.400390625 398.799804688 33.900390625 419.900390625 13.5 c 1 - 375.299804688 -29.5 314.799804688 -56 248 -56 c 0 - 181.099609375 -56 120.5 -29.400390625 76 13.7001953125 c 1 - 97.2001953125 34.099609375 114.599609375 57.7001953125 127.5 84.400390625 c 1 - 98.7001953125 98.2998046875 l 1 - 87.599609375 75.2998046875 72.599609375 55 54.400390625 37.2998046875 c 1 - 20.400390625 79.7001953125 0 133.400390625 0 192 c 0 - 0 250.599609375 20.400390625 304.299804688 54.400390625 346.799804688 c 1 - 72.2001953125 329.5 86.900390625 309.700195312 97.900390625 287.400390625 c 1 - 126.599609375 301.5 l 1 - 113.799804688 327.400390625 96.599609375 350.400390625 75.900390625 370.299804688 c 1 - 120.5 413.400390625 181.099609375 440 248 440 c 0 - 315 440 375.599609375 413.299804688 420.200195312 370.200195312 c 1 - 399.400390625 350.200195312 382.200195312 327.200195312 369.400390625 301.200195312 c 1 - 398.099609375 287.099609375 l 1 - 409.099609375 309.5 423.900390625 329.299804688 441.700195312 346.599609375 c 1 - 475.5 304.200195312 495.900390625 250.5 495.900390625 192 c 0 - 495.900390625 133.400390625 475.400390625 79.599609375 441.400390625 37.099609375 c 1 - 423.299804688 54.7998046875 408.400390625 75.099609375 397.299804688 98 c 1 - 368.5 84.099609375 l 1 -140.200195312 116.099609375 m 1 - 157.5 170 154.5 224.299804688 139.5 269.900390625 c 1 - 109.099609375 259.900390625 l 1 - 122.400390625 219.700195312 124.599609375 172.299804688 109.700195312 125.900390625 c 1 - 140.200195312 116.099609375 l 1 -356.5 269.5 m 1 - 341.5 224 338.5 169.700195312 355.799804688 115.700195312 c 1 - 386.299804688 125.5 l 1 - 371.400390625 172 373.700195312 219.400390625 386.900390625 259.5 c 1 - 356.5 269.5 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" b a s e b a l l hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B a s e b a l l hyphen B a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B a s e b a l l hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B A S E B A L L hyphen B A L L -EndChar - -StartChar: basketball-ball -Encoding: 62516 62516 540 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -212.299804688 437.700195312 m 1 - 210.799804688 387.700195312 195.299804688 342.299804688 167.5 306.5 c 1 - 90.099609375 383.900390625 l 1 - 126.099609375 413.599609375 168.5 431.400390625 212.299804688 437.700195312 c 1 -248 226 m 1 - 201.700195312 272.299804688 l 1 - 238.900390625 317.700195312 259.200195312 376.099609375 260.400390625 440 c 1 - 312.299804688 437.400390625 363.5 418.900390625 405.900390625 383.900390625 c 1 - 248 226 l 1 -56.099609375 349.900390625 m 1 - 133.5 272.5 l 1 - 97.7998046875 244.700195312 52.2998046875 229.200195312 2.2998046875 227.700195312 c 1 - 8.599609375 271.5 26.400390625 313.900390625 56.099609375 349.900390625 c 1 -328.299804688 145.700195312 m 1 - 282 192 l 1 - 439.900390625 349.900390625 l 1 - 474.900390625 307.5 493.400390625 256.299804688 496 204.400390625 c 1 - 432 203.099609375 373.599609375 182.799804688 328.299804688 145.700195312 c 1 -248 158 m 1 - 294.299804688 111.700195312 l 1 - 257.200195312 66.400390625 236.900390625 8 235.599609375 -56 c 1 - 183.700195312 -53.400390625 132.5 -34.7998046875 90.099609375 0.099609375 c 1 - 248 158 l 1 -439.900390625 34.099609375 m 1 - 362.5 111.5 l 1 - 398.200195312 139.200195312 443.599609375 154.700195312 493.700195312 156.299804688 c 1 - 487.400390625 112.5 469.599609375 70.099609375 439.900390625 34.099609375 c 1 -167.700195312 238.299804688 m 1 - 214 192 l 1 - 56.099609375 34.099609375 l 1 - 21.099609375 76.5 2.599609375 127.700195312 0 179.599609375 c 1 - 63.900390625 180.700195312 122.299804688 201.099609375 167.700195312 238.299804688 c 1 -283.700195312 -53.7001953125 m 1 - 285.299804688 -3.7001953125 300.799804688 41.7998046875 328.5 77.5 c 1 - 405.900390625 0.099609375 l 1 - 369.900390625 -29.599609375 327.5 -47.400390625 283.700195312 -53.7001953125 c 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" b a s k e t b a l l hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" B a s k e t b a l l hyphen B a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" B a s k e t b a l l hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" B A S K E T B A L L hyphen B A L L -EndChar - -StartChar: bowling-ball -Encoding: 62518 62518 541 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -120 256 m 0 - 137.700195312 256 152 270.299804688 152 288 c 0 - 152 305.700195312 137.700195312 320 120 320 c 0 - 102.299804688 320 88 305.700195312 88 288 c 0 - 88 270.299804688 102.299804688 256 120 256 c 0 -184 352 m 0 - 184 334.299804688 198.299804688 320 216 320 c 0 - 233.700195312 320 248 334.299804688 248 352 c 0 - 248 369.700195312 233.700195312 384 216 384 c 0 - 198.299804688 384 184 369.700195312 184 352 c 0 -232 208 m 0 - 249.700195312 208 264 222.299804688 264 240 c 0 - 264 257.700195312 249.700195312 272 232 272 c 0 - 214.299804688 272 200 257.700195312 200 240 c 0 - 200 222.299804688 214.299804688 208 232 208 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" b o w l i n g hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" B o w l i n g hyphen B a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" B o w l i n g hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" B O W L I N G hyphen B A L L -EndChar - -StartChar: chess -Encoding: 62521 62521 542 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -74 240 m 1 - 40.08984375 330.379882812 l 2 - 39.52734375 331.879882812 39.0703125 334.397460938 39.0703125 336 c 0 - 39.0703125 344.83203125 46.23828125 352 55.0703125 352 c 2 - 55.08984375 352 l 1 - 112 352 l 1 - 112 384 l 1 - 88 384 l 2 - 83.583984375 384 80 387.583984375 80 392 c 2 - 80 408 l 2 - 80 412.416015625 83.583984375 416 88 416 c 2 - 112 416 l 1 - 112 440 l 2 - 112 444.416015625 115.583984375 448 120 448 c 2 - 136 448 l 2 - 140.416015625 448 144 444.416015625 144 440 c 2 - 144 416 l 1 - 168 416 l 2 - 172.416015625 416 176 412.416015625 176 408 c 2 - 176 392 l 2 - 176 387.583984375 172.416015625 384 168 384 c 2 - 144 384 l 1 - 144 352 l 1 - 200.889648438 352 l 1 - 200.909179688 352 l 2 - 209.741210938 352 216.909179688 344.83203125 216.909179688 336 c 0 - 216.909179688 334.397460938 216.453125 331.879882812 215.889648438 330.379882812 c 2 - 182 240 l 1 - 192 240 l 2 - 200.83203125 240 208 232.83203125 208 224 c 2 - 208 208 l 2 - 208 199.16796875 200.83203125 192 192 192 c 2 - 176.059570312 192 l 1 - 176.17578125 156.138671875 183.31640625 98.794921875 192 64 c 1 - 64 64 l 1 - 72.68359375 98.794921875 79.82421875 156.138671875 79.9404296875 192 c 1 - 64 192 l 2 - 55.16796875 192 48 199.16796875 48 208 c 2 - 48 224 l 2 - 48 232.83203125 55.16796875 240 64 240 c 2 - 74 240 l 1 -247.16015625 -11.580078125 m 2 - 252.040039062 -14.021484375 256 -20.431640625 256 -25.888671875 c 2 - 256 -25.8896484375 l 1 - 256 -48 l 2 - 256 -56.83203125 248.83203125 -64 240 -64 c 2 - 16 -64 l 2 - 7.16796875 -64 0 -56.83203125 0 -48 c 2 - 0 -25.8896484375 l 2 - 0.0009765625 -20.4306640625 3.9658203125 -14.01953125 8.849609375 -11.580078125 c 2 - 32 0 l 1 - 32 16 l 2 - 32 24.83203125 39.16796875 32 48 32 c 2 - 208 32 l 2 - 216.83203125 32 224 24.83203125 224 16 c 2 - 224 0 l 1 - 247.16015625 -11.580078125 l 2 -339.9296875 146.200195312 m 1 - 315.360351562 167 l 2 - 309.103515625 172.28125 304.013671875 183.211914062 304 191.400390625 c 2 - 304 250 l 2 - 304 253.311523438 306.688476562 256 310 256 c 2 - 336.389648438 256 l 2 - 339.702148438 256 342.389648438 253.311523438 342.389648438 250 c 2 - 342.389648438 224 l 1 - 367.099609375 224 l 1 - 367.099609375 250 l 2 - 367.099609375 253.311523438 369.788085938 256 373.099609375 256 c 2 - 426.91015625 256 l 2 - 430.221679688 256 432.91015625 253.311523438 432.91015625 250 c 2 - 432.91015625 224 l 1 - 457.620117188 224 l 1 - 457.620117188 250 l 2 - 457.620117188 253.311523438 460.307617188 256 463.620117188 256 c 2 - 490 256 l 2 - 493.311523438 256 496 253.311523438 496 250 c 2 - 496 191.459960938 l 1 - 496 191.428710938 l 2 - 496 183.236328125 490.923828125 172.291992188 484.669921875 167 c 2 - 460.0703125 146.209960938 l 1 - 463.360351562 64 l 1 - 336.639648438 64 l 1 - 339.9296875 146.200195312 l 1 -384 144 m 2 - 384 112 l 1 - 416 112 l 1 - 416 144 l 2 - 416 152.83203125 408.83203125 160 400 160 c 0 - 391.16796875 160 384 152.83203125 384 144 c 2 -503.16015625 -11.580078125 m 2 - 508.040039062 -14.021484375 512 -20.431640625 512 -25.888671875 c 2 - 512 -25.8896484375 l 1 - 512 -48 l 2 - 512 -56.83203125 504.83203125 -64 496 -64 c 2 - 304 -64 l 2 - 295.16796875 -64 288 -56.83203125 288 -48 c 2 - 288 -25.8896484375 l 2 - 288.000976562 -20.4306640625 291.965820312 -14.01953125 296.849609375 -11.580078125 c 2 - 320 0 l 1 - 320 16 l 2 - 320 24.83203125 327.16796875 32 336 32 c 2 - 464 32 l 2 - 472.83203125 32 480 24.83203125 480 16 c 2 - 480 0 l 1 - 503.16015625 -11.580078125 l 2 -EndSplineSet -Validated: 524293 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" c h e s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" C h e s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" C H E S S -EndChar - -StartChar: chess-bishop -Encoding: 62522 62522 543 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -8 160.120117188 m 0 - 8 233.5 67.8095703125 341.200195312 120.599609375 385.490234375 c 1 - 106.599609375 388.91015625 96 401 96 416 c 0 - 96 433.6640625 110.3359375 448 128 448 c 2 - 192 448 l 2 - 209.6640625 448 224 433.6640625 224 416 c 0 - 224 400.950195312 213.400390625 388.91015625 199.400390625 385.490234375 c 1 - 223.799804688 365 249.469726562 330.809570312 270.26953125 292.900390625 c 1 - 162.379882812 184.969726562 l 2 - 161.087890625 183.676757812 160.0390625 181.143554688 160.0390625 179.315429688 c 0 - 160.0390625 177.486328125 161.087890625 174.953125 162.379882812 173.66015625 c 2 - 173.690429688 162.349609375 l 2 - 174.983398438 161.057617188 177.516601562 160.008789062 179.344726562 160.008789062 c 0 - 181.172851562 160.008789062 183.70703125 161.057617188 185 162.349609375 c 2 - 285.309570312 262.6796875 l 1 - 301.26953125 227.219726562 312 190.73046875 312 160.120117188 c 0 - 312 108.51953125 289.860351562 86.2900390625 256 75.51953125 c 1 - 256 32 l 1 - 64 32 l 1 - 64 75.51953125 l 1 - 30.1396484375 86.2900390625 8 108.48046875 8 160.120117188 c 0 -304 0 m 2 - 312.83203125 0 320 -7.16796875 320 -16 c 2 - 320 -48 l 2 - 320 -56.83203125 312.83203125 -64 304 -64 c 2 - 16 -64 l 2 - 7.16796875 -64 0 -56.83203125 0 -48 c 2 - 0 -16 l 2 - 0 -7.16796875 7.16796875 0 16 0 c 2 - 304 0 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" c h e s s hyphen b i s h o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" C h e s s hyphen B i s h o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" C h e s s hyphen b i s h o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" C H E S S hyphen B I S H O P -EndChar - -StartChar: chess-board -Encoding: 62524 62524 544 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -255.900390625 447.799804688 m 1 - 255.900390625 383.799804688 l 1 - 191.900390625 383.799804688 l 1 - 191.900390625 447.799804688 l 1 - 255.900390625 447.799804688 l 1 -0 383.830078125 m 1 - 64 383.830078125 l 1 - 64 319.830078125 l 1 - 0 319.830078125 l 1 - 0 383.830078125 l 1 -128 447.799804688 m 1 - 128 383.799804688 l 1 - 64 383.799804688 l 1 - 64 447.799804688 l 1 - 128 447.799804688 l 1 -192 191.900390625 m 1 - 256 191.900390625 l 1 - 256 127.900390625 l 1 - 192 127.900390625 l 1 - 192 191.900390625 l 1 -0 255.879882812 m 1 - 64 255.879882812 l 1 - 64 191.879882812 l 1 - 0 191.879882812 l 1 - 0 255.879882812 l 1 -383.849609375 447.799804688 m 1 - 383.849609375 383.799804688 l 1 - 319.849609375 383.799804688 l 1 - 319.849609375 447.799804688 l 1 - 383.849609375 447.799804688 l 1 -511.849609375 447.799804688 m 1 - 511.849609375 383.799804688 l 1 - 447.849609375 383.799804688 l 1 - 447.849609375 447.799804688 l 1 - 511.849609375 447.799804688 l 1 -128 191.900390625 m 1 - 128 127.900390625 l 1 - 64 127.900390625 l 1 - 64 191.900390625 l 1 - 128 191.900390625 l 1 -511.799804688 0 m 1 - 447.799804688 0 l 1 - 447.799804688 64 l 1 - 511.799804688 64 l 1 - 511.799804688 0 l 1 -511.799804688 128 m 1 - 447.799804688 128 l 1 - 447.799804688 192 l 1 - 511.799804688 192 l 1 - 511.799804688 128 l 1 -383.849609375 -64 m 1 - 383.849609375 0 l 1 - 447.849609375 0 l 1 - 447.849609375 -64 l 1 - 383.849609375 -64 l 1 -511.849609375 255.879882812 m 1 - 447.849609375 255.879882812 l 1 - 447.849609375 319.879882812 l 1 - 511.849609375 319.879882812 l 1 - 511.849609375 255.879882812 l 1 -128 -64 m 1 - 128 0 l 1 - 192 0 l 1 - 192 -64 l 1 - 128 -64 l 1 -0 -64 m 1 - 0 0 l 1 - 64 0 l 1 - 64 -64 l 1 - 0 -64 l 1 -255.900390625 -64 m 1 - 255.900390625 0 l 1 - 319.900390625 0 l 1 - 319.900390625 -64 l 1 - 255.900390625 -64 l 1 -0 127.9296875 m 1 - 64 127.9296875 l 1 - 64 63.9296875 l 1 - 0 63.9296875 l 1 - 0 127.9296875 l 1 -319.879882812 319.849609375 m 1 - 255.879882812 319.849609375 l 1 - 255.879882812 383.849609375 l 1 - 319.879882812 383.849609375 l 1 - 319.879882812 319.849609375 l 1 -255.879882812 191.849609375 m 1 - 255.879882812 255.849609375 l 1 - 319.879882812 255.849609375 l 1 - 319.879882812 191.849609375 l 1 - 255.879882812 191.849609375 l 1 -191.879882812 63.849609375 m 1 - 255.879882812 63.849609375 l 1 - 255.879882812 -0.150390625 l 1 - 191.879882812 -0.150390625 l 1 - 191.879882812 63.849609375 l 1 -319.879882812 127.849609375 m 1 - 319.879882812 191.849609375 l 1 - 383.879882812 191.849609375 l 1 - 383.879882812 127.849609375 l 1 - 319.879882812 127.849609375 l 1 -319.879882812 255.799804688 m 1 - 319.879882812 319.799804688 l 1 - 383.879882812 319.799804688 l 1 - 383.879882812 255.799804688 l 1 - 319.879882812 255.799804688 l 1 -319.879882812 63.8701171875 m 1 - 383.879882812 63.8701171875 l 1 - 383.879882812 -0.1298828125 l 1 - 319.879882812 -0.1298828125 l 1 - 319.879882812 63.8701171875 l 1 -64 63.9501953125 m 1 - 128 63.9501953125 l 1 - 128 -0.0498046875 l 1 - 64 -0.0498046875 l 1 - 64 63.9501953125 l 1 -192 319.849609375 m 1 - 128 319.849609375 l 1 - 128 383.849609375 l 1 - 192 383.849609375 l 1 - 192 319.849609375 l 1 -383.919921875 63.9501953125 m 1 - 383.919921875 127.950195312 l 1 - 447.919921875 127.950195312 l 1 - 447.919921875 63.9501953125 l 1 - 383.919921875 63.9501953125 l 1 -255.919921875 255.879882812 m 1 - 191.919921875 255.879882812 l 1 - 191.919921875 319.879882812 l 1 - 255.919921875 319.879882812 l 1 - 255.919921875 255.879882812 l 1 -383.919921875 383.830078125 m 1 - 447.919921875 383.830078125 l 1 - 447.919921875 319.830078125 l 1 - 383.919921875 319.830078125 l 1 - 383.919921875 383.830078125 l 1 -255.919921875 127.9296875 m 1 - 319.919921875 127.9296875 l 1 - 319.919921875 63.9296875 l 1 - 255.919921875 63.9296875 l 1 - 255.919921875 127.9296875 l 1 -191.919921875 255.879882812 m 1 - 192 191.879882812 l 1 - 128 191.879882812 l 1 - 128 255.879882812 l 1 - 191.919921875 255.879882812 l 1 -383.83984375 191.879882812 m 1 - 383.83984375 255.879882812 l 1 - 447.83984375 255.879882812 l 1 - 447.83984375 191.879882812 l 1 - 383.83984375 191.879882812 l 1 -128 319.849609375 m 1 - 128 255.849609375 l 1 - 64 255.849609375 l 1 - 64 319.849609375 l 1 - 128 319.849609375 l 1 -128 127.9296875 m 1 - 192 127.9296875 l 1 - 192 63.9296875 l 1 - 128 63.9296875 l 1 - 128 127.9296875 l 1 -EndSplineSet -Validated: 524805 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" c h e s s hyphen b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" C h e s s hyphen B o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" C h e s s hyphen b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" C H E S S hyphen B O A R D -EndChar - -StartChar: chess-king -Encoding: 62527 62527 545 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 0 m 2 - 408.83203125 0 416 -7.16796875 416 -16 c 2 - 416 -48 l 2 - 416 -56.83203125 408.83203125 -64 400 -64 c 2 - 48 -64 l 2 - 39.16796875 -64 32 -56.83203125 32 -48 c 2 - 32 -16 l 2 - 32 -7.16796875 39.16796875 0 48 0 c 2 - 400 0 l 2 -416 288 m 2 - 433.650390625 287.986328125 447.975585938 273.650390625 447.975585938 256 c 0 - 447.975585938 253.305664062 447.323242188 249.032226562 446.51953125 246.459960938 c 2 - 373.440429688 32 l 1 - 74.5595703125 32 l 1 - 1.48046875 246.459960938 l 2 - 0.6767578125 249.032226562 0.0244140625 253.305664062 0.0244140625 256 c 0 - 0.0244140625 273.650390625 14.349609375 287.986328125 32 288 c 2 - 192 288 l 1 - 192 336 l 1 - 152 336 l 2 - 147.583984375 336 144 339.583984375 144 344 c 2 - 144 392 l 2 - 144 396.416015625 147.583984375 400 152 400 c 2 - 192 400 l 1 - 192 440 l 2 - 192 444.416015625 195.583984375 448 200 448 c 2 - 248 448 l 2 - 252.416015625 448 256 444.416015625 256 440 c 2 - 256 400 l 1 - 296 400 l 2 - 300.416015625 400 304 396.416015625 304 392 c 2 - 304 344 l 2 - 304 339.583984375 300.416015625 336 296 336 c 2 - 256 336 l 1 - 256 288 l 1 - 416 288 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" c h e s s hyphen k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C h e s s hyphen K i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C h e s s hyphen k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C H E S S hyphen K I N G -EndChar - -StartChar: chess-knight -Encoding: 62529 62529 546 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -19 175.530273438 m 2 - 8.51171875 180.192382812 0 193.29296875 0 204.770507812 c 2 - 0 204.790039062 l 1 - 0 342 l 1 - 0 342.05859375 l 2 - 0 347.533203125 3.1357421875 355.122070312 7 359 c 2 - 16 368 l 1 - 1.7900390625 396.419921875 l 2 - 0.8017578125 398.392578125 0 401.783203125 0 403.989257812 c 2 - 0 404 l 2 - 0 410.624023438 5.3759765625 416 12 416 c 2 - 159.940429688 416 l 2 - 265.940429688 416 351.860351562 330 351.860351562 224 c 2 - 351.860351562 32 l 1 - 32 32 l 1 - 32 46.51953125 l 1 - 32 46.5419921875 l 2 - 32 73.8203125 51.796875 105.869140625 76.1904296875 118.080078125 c 2 - 133.41015625 146.73046875 l 2 - 148.0546875 154.053710938 159.940429688 173.287109375 159.940429688 189.66015625 c 2 - 159.940429688 189.669921875 l 1 - 159.940429688 240 l 1 - 137.8203125 228.919921875 l 2 - 132.369140625 226.194335938 126.747070312 219.182617188 125.26953125 213.26953125 c 2 - 116.049804688 182.620117188 l 2 - 113.599609375 174.466796875 105.1953125 165.282226562 97.2900390625 162.120117188 c 2 - 84.509765625 157 l 2 - 81.3515625 155.737304688 76.0283203125 154.711914062 72.626953125 154.711914062 c 0 - 68.8779296875 154.711914062 63.0556640625 155.947265625 59.6298828125 157.469726562 c 2 - 19 175.530273438 l 2 -52 320 m 0 - 40.9599609375 320 32 311.040039062 32 300 c 0 - 32 288.959960938 40.9599609375 280 52 280 c 0 - 63.0400390625 280 72 288.959960938 72 300 c 0 - 72 311.040039062 63.0400390625 320 52 320 c 0 -368 0 m 2 - 376.83203125 0 384 -7.16796875 384 -16 c 2 - 384 -48 l 2 - 384 -56.83203125 376.83203125 -64 368 -64 c 2 - 16 -64 l 2 - 7.16796875 -64 0 -56.83203125 0 -48 c 2 - 0 -16 l 2 - 0 -7.16796875 7.16796875 0 16 0 c 2 - 368 0 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" c h e s s hyphen k n i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C h e s s hyphen K n i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C h e s s hyphen k n i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C H E S S hyphen K N I G H T -EndChar - -StartChar: chess-pawn -Encoding: 62531 62531 547 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -105.099609375 224 m 1 - 75.7099609375 242.379882812 56 274.780273438 56 312 c 0 - 56 369.408203125 102.591796875 416 160 416 c 0 - 217.408203125 416 264 369.408203125 264 312 c 0 - 264 274.780273438 244.290039062 242.379882812 214.900390625 224 c 1 - 240 224 l 2 - 248.83203125 224 256 216.83203125 256 208 c 2 - 256 176 l 2 - 256 167.16796875 248.83203125 160 240 160 c 2 - 224 160 l 1 - 224 154.509765625 l 2 - 224 110.509765625 228.110351562 67.91015625 248 32 c 1 - 72 32 l 1 - 91.8603515625 67.91015625 96 110.509765625 96 154.509765625 c 2 - 96 160 l 1 - 80 160 l 2 - 71.16796875 160 64 167.16796875 64 176 c 2 - 64 208 l 2 - 64 216.83203125 71.16796875 224 80 224 c 2 - 105.099609375 224 l 1 -304 0 m 2 - 312.83203125 0 320 -7.16796875 320 -16 c 2 - 320 -48 l 2 - 320 -56.83203125 312.83203125 -64 304 -64 c 2 - 16 -64 l 2 - 7.16796875 -64 0 -56.83203125 0 -48 c 2 - 0 -16 l 2 - 0 -7.16796875 7.16796875 0 16 0 c 2 - 304 0 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" c h e s s hyphen p a w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C h e s s hyphen P a w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C h e s s hyphen p a w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C H E S S hyphen P A W N -EndChar - -StartChar: chess-queen -Encoding: 62533 62533 548 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 336 m 0 - 225.087890625 336 200 361.087890625 200 392 c 0 - 200 422.912109375 225.087890625 448 256 448 c 0 - 286.912109375 448 312 422.912109375 312 392 c 0 - 312 361.087890625 286.912109375 336 256 336 c 0 -432 0 m 2 - 440.83203125 0 448 -7.16796875 448 -16 c 2 - 448 -48 l 2 - 448 -56.83203125 440.83203125 -64 432 -64 c 2 - 80 -64 l 2 - 71.16796875 -64 64 -56.83203125 64 -48 c 2 - 64 -16 l 2 - 64 -7.16796875 71.16796875 0 80 0 c 2 - 432 0 l 2 -504.870117188 263.83984375 m 2 - 508.8046875 261.21875 511.999023438 255.252929688 511.999023438 250.524414062 c 0 - 511.999023438 248.439453125 511.2421875 245.234375 510.309570312 243.370117188 c 2 - 407.759765625 32 l 1 - 104.240234375 32 l 1 - 1.6904296875 243.330078125 l 2 - 0.7578125 245.194335938 0.0009765625 248.399414062 0.0009765625 250.484375 c 0 - 0.0009765625 255.212890625 3.1953125 261.178710938 7.1298828125 263.799804688 c 2 - 35.7001953125 279.799804688 l 2 - 43.0595703125 284.709960938 52.509765625 282.349609375 57.7900390625 275.259765625 c 0 - 65.650390625 264.624023438 82.763671875 255.9921875 95.9892578125 255.9921875 c 0 - 96.912109375 255.9921875 98.4091796875 256.044921875 99.330078125 256.110351562 c 0 - 125 257.849609375 144 280.91015625 144 306.599609375 c 0 - 144 313.997070312 150.002929688 320 157.400390625 320 c 1 - 157.400390625 320 l 1 - 196.169921875 320 l 2 - 202.209960938 320 207.780273438 316.009765625 209.030273438 310.08984375 c 0 - 213.459960938 289.053710938 234.501953125 271.98046875 256 271.98046875 c 0 - 277.498046875 271.98046875 298.540039062 289.053710938 302.969726562 310.08984375 c 0 - 304.219726562 316 309.830078125 320 315.830078125 320 c 2 - 354.599609375 320 l 2 - 361.997070312 320 368 313.997070312 368 306.599609375 c 0 - 368 283.0703125 383.700195312 261.139648438 406.83984375 256.849609375 c 0 - 409.329101562 256.365234375 413.407226562 255.970703125 415.943359375 255.970703125 c 0 - 429.109375 255.970703125 446.190429688 264.532226562 454.0703125 275.080078125 c 0 - 459.450195312 282.219726562 468.919921875 284.759765625 476.360351562 279.759765625 c 2 - 504.870117188 263.83984375 l 2 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" c h e s s hyphen q u e e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C h e s s hyphen Q u e e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C h e s s hyphen q u e e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C H E S S hyphen Q U E E N -EndChar - -StartChar: chess-rook -Encoding: 62535 62535 549 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -368 416 m 2 - 376.83203125 416 384 408.83203125 384 400 c 2 - 384 224 l 1 - 320 192 l 1 - 320 144.280273438 321.540039062 97 333.209960938 32 c 1 - 50.7900390625 32 l 1 - 62.4599609375 97 64 143.669921875 64 192 c 1 - 0 224 l 1 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 72.099609375 416 l 2 - 80.931640625 416 88.099609375 408.83203125 88.099609375 400 c 2 - 88.099609375 352 l 1 - 136 352 l 1 - 136 400 l 2 - 136 408.83203125 143.16796875 416 152 416 c 2 - 232 416 l 2 - 240.83203125 416 248 408.83203125 248 400 c 2 - 248 352 l 1 - 296 352 l 1 - 296 400 l 2 - 296 408.83203125 303.16796875 416 312 416 c 2 - 368 416 l 2 -224 128 m 1 - 224 192 l 2 - 224 209.6640625 209.6640625 224 192 224 c 0 - 174.3359375 224 160 209.6640625 160 192 c 2 - 160 128 l 1 - 224 128 l 1 -368 0 m 2 - 376.83203125 0 384 -7.16796875 384 -16 c 2 - 384 -48 l 2 - 384 -56.83203125 376.83203125 -64 368 -64 c 2 - 16 -64 l 2 - 7.16796875 -64 0 -56.83203125 0 -48 c 2 - 0 -16 l 2 - 0 -7.16796875 7.16796875 0 16 0 c 2 - 368 0 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" c h e s s hyphen r o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C h e s s hyphen R o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C h e s s hyphen r o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C H E S S hyphen R O O K -EndChar - -StartChar: dumbbell -Encoding: 62539 62539 550 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -104 352 m 2 - 117.299804688 352 128 341.299804688 128 328 c 2 - 128 56 l 2 - 128 42.7001953125 117.299804688 32 104 32 c 2 - 56 32 l 2 - 42.7001953125 32 32 42.7001953125 32 56 c 2 - 32 160 l 1 - 8 160 l 2 - 3.599609375 160 0 163.599609375 0 168 c 2 - 0 216 l 2 - 0 220.400390625 3.599609375 224 8 224 c 2 - 32 224 l 1 - 32 328 l 2 - 32 341.299804688 42.7001953125 352 56 352 c 2 - 104 352 l 2 -632 224 m 2 - 636.400390625 224 640 220.400390625 640 216 c 2 - 640 168 l 2 - 640 163.599609375 636.400390625 160 632 160 c 2 - 608 160 l 1 - 608 56 l 2 - 608 42.7001953125 597.299804688 32 584 32 c 2 - 536 32 l 2 - 522.700195312 32 512 42.7001953125 512 56 c 2 - 512 328 l 2 - 512 341.299804688 522.700195312 352 536 352 c 2 - 584 352 l 2 - 597.299804688 352 608 341.299804688 608 328 c 2 - 608 224 l 1 - 632 224 l 2 -456 416 m 2 - 469.299804688 416 480 405.299804688 480 392 c 2 - 480 -8 l 2 - 480 -21.2998046875 469.299804688 -32 456 -32 c 2 - 408 -32 l 2 - 394.700195312 -32 384 -21.2998046875 384 -8 c 2 - 384 160 l 1 - 256 160 l 1 - 256 -8 l 2 - 256 -21.2998046875 245.299804688 -32 232 -32 c 2 - 184 -32 l 2 - 170.700195312 -32 160 -21.2998046875 160 -8 c 2 - 160 392 l 2 - 160 405.299804688 170.700195312 416 184 416 c 2 - 232 416 l 2 - 245.299804688 416 256 405.299804688 256 392 c 2 - 256 224 l 1 - 384 224 l 1 - 384 392 l 2 - 384 405.299804688 394.700195312 416 408 416 c 2 - 456 416 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" d u m b b e l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" D u m b b e l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" D U M B B E L L -EndChar - -StartChar: football-ball -Encoding: 62542 62542 551 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -481.5 387.700195312 m 0 - 487.799804688 363.799804688 495.200195312 326.700195312 496 283.200195312 c 1 - 339.400390625 440 l 1 - 383 439.099609375 420.299804688 431.5 444.200195312 425.099609375 c 0 - 462.400390625 420.200195312 476.700195312 405.900390625 481.5 387.700195312 c 0 -14.5 -3.7001953125 m 0 - 8.2001953125 20.2001953125 0.7998046875 57.2998046875 0 100.799804688 c 1 - 156.599609375 -56 l 1 - 113 -55.099609375 75.7001953125 -47.5 51.7998046875 -41.099609375 c 0 - 33.599609375 -36.2001953125 19.2998046875 -21.900390625 14.5 -3.7001953125 c 0 -4.2001953125 164.599609375 m 1 - 26.7998046875 317.299804688 143.099609375 416.599609375 275.599609375 436 c 1 - 491.900390625 219.400390625 l 1 - 469.200195312 66.7001953125 352.900390625 -32.599609375 220.400390625 -52 c 1 - 4.2001953125 164.599609375 l 1 -321.5 288.200195312 m 2 - 293.200195312 259.700195312 l 1 - 264.900390625 288 l 2 - 261.799804688 291.099609375 256.700195312 291.099609375 253.599609375 288 c 2 - 242.299804688 276.700195312 l 2 - 239.200195312 273.599609375 239.200195312 268.5 242.299804688 265.400390625 c 2 - 270.599609375 237.099609375 l 1 - 248 214.5 l 1 - 219.700195312 242.799804688 l 2 - 216.599609375 245.900390625 211.5 245.900390625 208.400390625 242.799804688 c 2 - 197.099609375 231.5 l 2 - 194 228.400390625 194 223.299804688 197.099609375 220.200195312 c 2 - 225.400390625 191.900390625 l 1 - 202.799804688 169.299804688 l 1 - 174.5 197.599609375 l 2 - 171.400390625 200.700195312 166.299804688 200.700195312 163.200195312 197.599609375 c 2 - 151.900390625 186.299804688 l 2 - 148.799804688 183.200195312 148.799804688 178.099609375 151.900390625 175 c 2 - 180.200195312 146.799804688 l 1 - 151.900390625 118.5 l 2 - 148.799804688 115.400390625 148.799804688 110.299804688 151.900390625 107.200195312 c 2 - 163.200195312 95.900390625 l 2 - 166.299804688 92.7998046875 171.400390625 92.7998046875 174.5 95.900390625 c 2 - 202.799804688 124.200195312 l 1 - 231.099609375 95.900390625 l 2 - 234.200195312 92.7998046875 239.299804688 92.7998046875 242.400390625 95.900390625 c 2 - 253.700195312 107.200195312 l 2 - 256.799804688 110.299804688 256.799804688 115.400390625 253.700195312 118.5 c 2 - 225.400390625 146.799804688 l 1 - 248 169.400390625 l 1 - 276.299804688 141.099609375 l 2 - 279.400390625 138 284.5 138 287.599609375 141.099609375 c 2 - 298.900390625 152.400390625 l 2 - 302 155.5 302 160.599609375 298.900390625 163.700195312 c 2 - 270.599609375 192 l 1 - 293.200195312 214.700195312 l 1 - 321.5 186.400390625 l 2 - 324.599609375 183.299804688 329.700195312 183.299804688 332.799804688 186.400390625 c 2 - 344.099609375 197.700195312 l 2 - 347.200195312 200.799804688 347.200195312 205.900390625 344.099609375 209 c 2 - 315.799804688 237.299804688 l 1 - 344.099609375 265.599609375 l 2 - 347.200195312 268.700195312 347.200195312 273.799804688 344.099609375 276.900390625 c 2 - 332.799804688 288.200195312 l 2 - 329.700195312 291.299804688 324.599609375 291.299804688 321.5 288.200195312 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" f o o t b a l l hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" F o o t b a l l hyphen B a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" F o o t b a l l hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" F O O T B A L L hyphen B A L L -EndChar - -StartChar: golf-ball -Encoding: 62544 62544 552 -Width: 416 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 32 m 1 - 320 32 l 1 - 320 14.2998046875 305.700195312 0 288 0 c 2 - 272 0 l 2 - 254.299804688 0 240 -14.2998046875 240 -32 c 2 - 240 -52 l 2 - 240 -58.599609375 234.599609375 -64 228 -64 c 2 - 188 -64 l 2 - 181.400390625 -64 176 -58.599609375 176 -52 c 2 - 176 -32 l 2 - 176 -14.2998046875 161.700195312 0 144 0 c 2 - 128 0 l 2 - 110.299804688 0 96 14.2998046875 96 32 c 1 -416 240 m 0 - 416 165.799804688 377 100.799804688 318.5 64 c 1 - 97.5 64 l 1 - 39 100.799804688 0 165.799804688 0 240 c 0 - 0 354.900390625 93.099609375 448 208 448 c 0 - 322.900390625 448 416 354.900390625 416 240 c 0 -235.900390625 196.099609375 m 0 - 254.200195312 196.099609375 269 210.900390625 269 229.200195312 c 0 - 269 243.599609375 259.700195312 255.5 246.900390625 260.099609375 c 1 - 256.5 233.299804688 231.299804688 208.799804688 205 218.200195312 c 1 - 209.599609375 205.400390625 221.5 196.099609375 235.900390625 196.099609375 c 0 -285 149.200195312 m 0 - 285 163.599609375 275.700195312 175.5 262.900390625 180.099609375 c 1 - 272.5 153.299804688 247.299804688 128.799804688 221 138.200195312 c 1 - 225.599609375 125.400390625 237.5 116.099609375 251.900390625 116.099609375 c 0 - 270.200195312 116.099609375 285 131 285 149.200195312 c 0 -349 213.200195312 m 0 - 349 227.599609375 339.700195312 239.5 326.900390625 244.099609375 c 1 - 336.5 217.299804688 311.299804688 192.799804688 285 202.200195312 c 1 - 289.599609375 189.400390625 301.5 180.099609375 315.900390625 180.099609375 c 0 - 334.200195312 180.099609375 349 195 349 213.200195312 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" g o l f hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" G o l f hyphen B a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" G o l f hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" G O L F hyphen B A L L -EndChar - -StartChar: hockey-puck -Encoding: 62547 62547 553 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 288 m 0 - 0 341 114.599609375 384 256 384 c 0 - 397.400390625 384 512 341 512 288 c 0 - 512 235 397.400390625 192 256 192 c 0 - 114.599609375 192 0 235 0 288 c 0 -0 205.799804688 m 1 - 113.5 123.400390625 398.599609375 123.5 512 205.799804688 c 1 - 512 96 l 2 - 512 43 397.400390625 0 256 0 c 0 - 114.599609375 0 0 43 0 96 c 2 - 0 205.799804688 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" h o c k e y hyphen p u c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" H o c k e y hyphen p u c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" H O C K E Y hyphen P U C K -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" H o c k e y hyphen P u c k -EndChar - -StartChar: quidditch -Encoding: 62552 62552 554 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256.5 231.200195312 m 1 - 343.200195312 122 l 1 - 343.200195312 122 326.599609375 19.599609375 266.599609375 -28.099609375 c 0 - 206.700195312 -75.7998046875 0 -62.2001953125 0 -62.2001953125 c 1 - 0 -62.2001953125 3.7998046875 -39.099609375 11 -6.7998046875 c 1 - 105.599609375 105.400390625 l 2 - 109.599609375 110.099609375 104.700195312 117 99 114.900390625 c 2 - 38.599609375 92.7998046875 l 1 - 53 134.5 71.2998046875 172.799804688 93.2001953125 190.299804688 c 0 - 153.099609375 238.099609375 256.5 231.200195312 256.5 231.200195312 c 1 -494.5 96.2001953125 m 0 - 538.5 96.2001953125 574.299804688 60.5 574.299804688 16.2998046875 c 0 - 574.299804688 -27.7998046875 538.599609375 -63.599609375 494.5 -63.599609375 c 0 - 450.400390625 -63.599609375 414.700195312 -27.7998046875 414.700195312 16.2998046875 c 0 - 414.700195312 60.400390625 450.5 96.2001953125 494.5 96.2001953125 c 0 -636.5 417 m 2 - 642 410.099609375 640.900390625 400 634 394.5 c 2 - 401.5 216.599609375 l 1 - 435.599609375 173.700195312 l 2 - 440.700195312 167.299804688 437.299804688 157.799804688 429.299804688 156.099609375 c 2 - 370.5 143.700195312 l 1 - 283.799804688 252.900390625 l 1 - 309.099609375 307.5 l 2 - 312.599609375 314.900390625 322.599609375 316.099609375 327.700195312 309.700195312 c 2 - 361.799804688 266.700195312 l 1 - 594.299804688 444.599609375 l 2 - 601.200195312 450 611.200195312 448.900390625 616.700195312 442 c 2 - 636.5 417 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" q u i d d i t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" Q u i d d i t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" Q U I D D I T C H -EndChar - -StartChar: square-full -Encoding: 62556 62556 555 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 -64 m 1 - 0 -64 l 1 - 0 448 l 1 - 512 448 l 1 - 512 -64 l 1 -EndSplineSet -Validated: 513 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" s q u a r e hyphen f u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S q u a r e hyphen F u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S q u a r e hyphen f u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S Q U A R E hyphen F U L L -EndChar - -StartChar: table-tennis -Encoding: 62557 62557 556 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496.200195312 151.5 m 1 - 432.099609375 194.700195312 346.700195312 179.400390625 300.599609375 117.299804688 c 1 - 89.099609375 328.799804688 l 1 - 145.099609375 384.900390625 l 2 - 229 469 365.099609375 469 449 384.900390625 c 0 - 512 321.799804688 527.700195312 229.299804688 496.200195312 151.5 c 1 -278.299804688 71.7998046875 m 1 - 274.599609375 59.099609375 272 45.900390625 272.099609375 32.099609375 c 0 - 272.099609375 12.599609375 276 -6 283.099609375 -23 c 1 - 257.400390625 -20.2001953125 232.5 -9.400390625 212.799804688 10.2998046875 c 2 - 177.099609375 46 l 1 - 87.7998046875 -57.2998046875 l 2 - 80.2998046875 -65.900390625 67.099609375 -66.400390625 59.099609375 -58.2998046875 c 2 - 5.7001953125 -4.7998046875 l 2 - -2.400390625 3.2998046875 -1.900390625 16.5 6.7001953125 24 c 2 - 109.700195312 113.400390625 l 1 - 75.2001953125 148 l 2 - 36.2001953125 187.099609375 30.599609375 246.799804688 57.900390625 292.099609375 c 1 - 278.299804688 71.7998046875 l 1 -416 128 m 0 - 469 128 512 85 512 32 c 0 - 512 -21 469 -64 416 -64 c 0 - 363 -64 320 -21 320 32 c 0 - 320 85 363 128 416 128 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" t a b l e hyphen t e n n i s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" T a b l e hyphen T e n n i s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" T a b l e hyphen t e n n i s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" T A B L E hyphen T E N N I S -EndChar - -StartChar: volleyball-ball -Encoding: 62559 62559 557 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -231.389648438 204.51953125 m 1 - 170.495117188 167.109375 105.041992188 81.00390625 85.2900390625 12.3203125 c 1 - 65.0419921875 31.515625 39.55078125 67.8486328125 28.3896484375 93.419921875 c 1 - 51.1904296875 187.8203125 117.889648438 267.8203125 208.690429688 310.219726562 c 1 - 220.579101562 282.254882812 230.749023438 234.901367188 231.389648438 204.51953125 c 1 -194.490234375 338.919921875 m 1 - 110.490234375 299.419921875 45.490234375 230.51953125 12.08984375 147.419921875 c 1 - -7.7099609375 256.719726562 46.08984375 359.8203125 137.08984375 409.620117188 c 1 - 156.099609375 392.677734375 181.814453125 361.00390625 194.490234375 338.919921875 c 1 -382.08984375 173.8203125 m 1 - 351.920898438 177.491210938 305.821289062 192.35546875 279.190429688 207 c 1 - 277.236328125 278.484375 235.34765625 378.262695312 185.690429688 429.719726562 c 1 - 232.990234375 443.719726562 269.889648438 439.919921875 284.58984375 438.219726562 c 1 - 354.790039062 371.3203125 390.690429688 273.620117188 382.08984375 173.8203125 c 1 -257.389648438 164.3203125 m 1 - 307.08984375 137.51953125 361.389648438 123.51953125 415.990234375 123.419921875 c 0 - 438.668945312 123.560546875 474.912109375 128.219726562 496.889648438 133.8203125 c 1 - 490.33203125 106.619140625 471.42578125 66.34375 454.690429688 43.919921875 c 1 - 361.690429688 16.6201171875 259.190429688 34.419921875 177.190429688 91.7197265625 c 1 - 195.470703125 116.015625 231.400390625 148.541015625 257.389648438 164.3203125 c 1 -159.08984375 64.6201171875 m 1 - 212.690429688 27.3203125 303.08984375 -13.580078125 415.990234375 2.51953125 c 1 - 377.829101562 -29.8271484375 306.2578125 -56.0791015625 256.232421875 -56.0791015625 c 0 - 217.716796875 -56.0791015625 159.81640625 -39.7275390625 126.990234375 -19.580078125 c 1 - 133.389648438 10.2197265625 143.889648438 38.6201171875 159.08984375 64.6201171875 c 1 -339.389648438 425.219726562 m 1 - 435.290039062 390.919921875 503.990234375 299.620117188 503.990234375 191.8203125 c 0 - 503.990234375 189.8203125 503.690429688 187.8203125 503.690429688 185.8203125 c 0 - 479.724609375 177.981445312 439.810546875 171.619140625 414.595703125 171.619140625 c 0 - 414.428710938 171.619140625 414.157226562 171.620117188 413.990234375 171.620117188 c 1 - 421.889648438 264.01953125 394.690429688 354.8203125 339.389648438 425.219726562 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" v o l l e y b a l l hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" V o l l e y b a l l hyphen B a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" V o l l e y b a l l hyphen b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" V O L L E Y B A L L hyphen B A L L -EndChar - -StartChar: allergies -Encoding: 62561 62561 558 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 336 m 0 - 433.599609375 336 448 321.599609375 448 304 c 2 - 448 127.900390625 l 2 - 447.799804688 113.900390625 446.099609375 99.2998046875 442.900390625 85.599609375 c 2 - 416.400390625 -27.099609375 l 2 - 411.299804688 -48.7998046875 392 -64.099609375 369.700195312 -64.099609375 c 2 - 172.099609375 -64.099609375 l 2 - 156.799804688 -64.099609375 142.299804688 -56.7001953125 133.299804688 -44.2998046875 c 2 - 7.7001953125 128.400390625 l 2 - -5.2998046875 146.299804688 -1.400390625 171.299804688 16.5 184.299804688 c 0 - 34.400390625 197.299804688 59.400390625 193.400390625 72.400390625 175.5 c 2 - 96 143 l 1 - 96 384 l 2 - 96 401.599609375 110.400390625 416 128 416 c 0 - 145.599609375 416 160 401.599609375 160 384 c 2 - 160 232 l 2 - 160 227.599609375 163.599609375 224 168 224 c 2 - 184 224 l 2 - 188.400390625 224 192 227.599609375 192 232 c 2 - 192 416 l 2 - 192 433.599609375 206.400390625 448 224 448 c 0 - 241.599609375 448 256 433.599609375 256 416 c 2 - 256 232 l 2 - 256 227.599609375 259.599609375 224 264 224 c 2 - 280 224 l 2 - 284.400390625 224 288 227.599609375 288 232 c 2 - 288 384 l 2 - 288 401.599609375 302.400390625 416 320 416 c 0 - 337.599609375 416 352 401.599609375 352 384 c 2 - 352 232 l 2 - 352 227.599609375 355.599609375 224 360 224 c 2 - 376 224 l 2 - 380.400390625 224 384 227.599609375 384 232 c 2 - 384 304 l 2 - 384 321.599609375 398.400390625 336 416 336 c 0 -176 32 m 0 - 184.799804688 32 192 39.2001953125 192 48 c 0 - 192 56.7998046875 184.799804688 64 176 64 c 0 - 167.200195312 64 160 56.7998046875 160 48 c 0 - 160 39.2001953125 167.200195312 32 176 32 c 0 -176 128 m 0 - 184.799804688 128 192 135.200195312 192 144 c 0 - 192 152.799804688 184.799804688 160 176 160 c 0 - 167.200195312 160 160 152.799804688 160 144 c 0 - 160 135.200195312 167.200195312 128 176 128 c 0 -240 0 m 0 - 248.799804688 0 256 7.2001953125 256 16 c 0 - 256 24.7998046875 248.799804688 32 240 32 c 0 - 231.200195312 32 224 24.7998046875 224 16 c 0 - 224 7.2001953125 231.200195312 0 240 0 c 0 -240 96 m 0 - 248.799804688 96 256 103.200195312 256 112 c 0 - 256 120.799804688 248.799804688 128 240 128 c 0 - 231.200195312 128 224 120.799804688 224 112 c 0 - 224 103.200195312 231.200195312 96 240 96 c 0 -304 64 m 0 - 312.799804688 64 320 71.2001953125 320 80 c 0 - 320 88.7998046875 312.799804688 96 304 96 c 0 - 295.200195312 96 288 88.7998046875 288 80 c 0 - 288 71.2001953125 295.200195312 64 304 64 c 0 -336 0 m 0 - 344.799804688 0 352 7.2001953125 352 16 c 0 - 352 24.7998046875 344.799804688 32 336 32 c 0 - 327.200195312 32 320 24.7998046875 320 16 c 0 - 320 7.2001953125 327.200195312 0 336 0 c 0 -368 128 m 0 - 376.799804688 128 384 135.200195312 384 144 c 0 - 384 152.799804688 376.799804688 160 368 160 c 0 - 359.200195312 160 352 152.799804688 352 144 c 0 - 352 135.200195312 359.200195312 128 368 128 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" a l l e r g i e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" A l l e r g i e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" A L L E R G I E S -EndChar - -StartChar: band-aid -Encoding: 62562 62562 559 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 288 m 2 - 0 323.299804688 28.7001953125 352 64 352 c 2 - 160 352 l 1 - 160 32 l 1 - 64 32 l 2 - 28.7001953125 32 0 60.7001953125 0 96 c 2 - 0 288 l 2 -576 352 m 2 - 611.299804688 352 640 323.299804688 640 288 c 2 - 640 96 l 2 - 640 60.7001953125 611.299804688 32 576 32 c 2 - 480 32 l 1 - 480 352 l 1 - 576 352 l 2 -192 32 m 1 - 192 352 l 1 - 448 352 l 1 - 448 32 l 1 - 192 32 l 1 -368 264 m 0 - 354.700195312 264 344 253.299804688 344 240 c 0 - 344 226.700195312 354.700195312 216 368 216 c 0 - 381.299804688 216 392 226.700195312 392 240 c 0 - 392 253.299804688 381.299804688 264 368 264 c 0 -368 168 m 0 - 354.700195312 168 344 157.299804688 344 144 c 0 - 344 130.700195312 354.700195312 120 368 120 c 0 - 381.299804688 120 392 130.700195312 392 144 c 0 - 392 157.299804688 381.299804688 168 368 168 c 0 -272 264 m 0 - 258.700195312 264 248 253.299804688 248 240 c 0 - 248 226.700195312 258.700195312 216 272 216 c 0 - 285.299804688 216 296 226.700195312 296 240 c 0 - 296 253.299804688 285.299804688 264 272 264 c 0 -272 168 m 0 - 258.700195312 168 248 157.299804688 248 144 c 0 - 248 130.700195312 258.700195312 120 272 120 c 0 - 285.299804688 120 296 130.700195312 296 144 c 0 - 296 157.299804688 285.299804688 168 272 168 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" b a n d hyphen a i d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B a n d hyphen A i d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B a n d hyphen a i d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B A N D hyphen A I D -EndChar - -StartChar: box -Encoding: 62566 62566 560 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -509.5 263.400390625 m 2 - 510.299804688 261 510.299804688 258.5 510.700195312 256 c 2 - 272 256 l 1 - 272 448 l 1 - 413.400390625 448 l 2 - 434.099609375 448 452.400390625 434.799804688 458.900390625 415.200195312 c 2 - 509.5 263.400390625 l 2 -240 448 m 1 - 240 256 l 1 - 1.2998046875 256 l 2 - 1.7001953125 258.5 1.7001953125 261 2.5 263.400390625 c 2 - 53.099609375 415.200195312 l 2 - 59.599609375 434.799804688 77.900390625 448 98.599609375 448 c 2 - 240 448 l 1 -0 224 m 1 - 512 224 l 1 - 512 -16 l 2 - 512 -42.5 490.5 -64 464 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 224 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" b o x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" B o x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" B O X -EndChar - -StartChar: boxes -Encoding: 62568 62568 561 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -560 160 m 2 - 568.799804688 160 576 152.799804688 576 144 c 2 - 576 -48 l 2 - 576 -56.7998046875 568.799804688 -64 560 -64 c 2 - 336 -64 l 2 - 327.200195312 -64 320 -56.7998046875 320 -48 c 2 - 320 144 l 2 - 320 152.799804688 327.200195312 160 336 160 c 2 - 416 160 l 1 - 416 64 l 1 - 448 85.2998046875 l 1 - 480 64 l 1 - 480 160 l 1 - 560 160 l 2 -176 224 m 2 - 167.200195312 224 160 231.200195312 160 240 c 2 - 160 432 l 2 - 160 440.799804688 167.200195312 448 176 448 c 2 - 256 448 l 1 - 256 352 l 1 - 288 373.299804688 l 1 - 320 352 l 1 - 320 448 l 1 - 400 448 l 2 - 408.799804688 448 416 440.799804688 416 432 c 2 - 416 240 l 2 - 416 231.200195312 408.799804688 224 400 224 c 2 - 176 224 l 2 -240 160 m 2 - 248.799804688 160 256 152.799804688 256 144 c 2 - 256 -48 l 2 - 256 -56.7998046875 248.799804688 -64 240 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 144 l 2 - 0 152.799804688 7.2001953125 160 16 160 c 2 - 96 160 l 1 - 96 64 l 1 - 128 85.2998046875 l 1 - 160 64 l 1 - 160 160 l 1 - 240 160 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" b o x e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" B o x e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" B O X E S -EndChar - -StartChar: briefcase-medical -Encoding: 62569 62569 562 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 320 m 2 - 490.5 320 512 298.5 512 272 c 2 - 512 -16 l 2 - 512 -42.5 490.5 -64 464 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 272 l 2 - 0 298.5 21.5 320 48 320 c 2 - 128 320 l 1 - 128 368 l 2 - 128 394.5 149.5 416 176 416 c 2 - 336 416 l 2 - 362.5 416 384 394.5 384 368 c 2 - 384 320 l 1 - 464 320 l 2 -192 352 m 1 - 192 320 l 1 - 320 320 l 1 - 320 352 l 1 - 192 352 l 1 -352 104 m 2 - 352 152 l 2 - 352 156.400390625 348.400390625 160 344 160 c 2 - 288 160 l 1 - 288 216 l 2 - 288 220.400390625 284.400390625 224 280 224 c 2 - 232 224 l 2 - 227.599609375 224 224 220.400390625 224 216 c 2 - 224 160 l 1 - 168 160 l 2 - 163.599609375 160 160 156.400390625 160 152 c 2 - 160 104 l 2 - 160 99.599609375 163.599609375 96 168 96 c 2 - 224 96 l 1 - 224 40 l 2 - 224 35.599609375 227.599609375 32 232 32 c 2 - 280 32 l 2 - 284.400390625 32 288 35.599609375 288 40 c 2 - 288 96 l 1 - 344 96 l 2 - 348.400390625 96 352 99.599609375 352 104 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" b r i e f c a s e hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" B r i e f c a s e hyphen M e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" B r i e f c a s e hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 19" B R I E F C A S E hyphen M E D I C A L -EndChar - -StartChar: burn -Encoding: 62570 62570 563 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 448 m 1 - 303.799804688 347.099609375 384 227.400390625 384 147.5 c 0 - 384 23 305 -64 192 -64 c 0 - 79 -64 0 23 0 147.5 c 0 - 0 227.099609375 79.7001953125 346.700195312 192 448 c 1 -192 0 m 0 - 248.5 0 288 39 288 94.7998046875 c 0 - 288 108.299804688 283.400390625 156.299804688 192 256 c 1 - 100.599609375 156.299804688 96 108.299804688 96 94.7998046875 c 0 - 96 39 135.5 0 192 0 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" b u r n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" B u r n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" B U R N -EndChar - -StartChar: capsules -Encoding: 62571 62571 564 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -555.299804688 147.900390625 m 2 - 591.5 96.2001953125 579 24.900390625 527.299804688 -11.2998046875 c 0 - 507.299804688 -25.2998046875 484.5 -32 461.799804688 -32 c 0 - 425.700195312 -32 390.200195312 -15 368 16.7998046875 c 2 - 236.799804688 204.099609375 l 2 - 231.299804688 212 227.299804688 220.5 224 229.099609375 c 2 - 224 80 l 2 - 224 18.099609375 173.900390625 -32 112 -32 c 0 - 50.099609375 -32 0 18.099609375 0 80 c 2 - 0 304 l 2 - 0 365.900390625 50.099609375 416 112 416 c 0 - 172 416 220.5 368.799804688 223.400390625 309.5 c 1 - 231.200195312 330.5 245.200195312 349.5 264.900390625 363.299804688 c 0 - 284.900390625 377.299804688 307.799804688 384 330.400390625 384 c 0 - 366.400390625 384 401.900390625 367 424.200195312 335.200195312 c 2 - 555.299804688 147.900390625 l 2 -160 192 m 1 - 160 304 l 2 - 160 330.5 138.5 352 112 352 c 0 - 85.5 352 64 330.5 64 304 c 2 - 64 192 l 1 - 160 192 l 1 -354.799804688 147.099609375 m 1 - 437.299804688 204.799804688 l 1 - 371.700195312 298.5 l 2 - 362.299804688 312 346.900390625 320 330.400390625 320 c 0 - 320.099609375 320 310.099609375 316.900390625 301.599609375 310.900390625 c 0 - 290.599609375 303.200195312 283.200195312 291.599609375 280.900390625 278.400390625 c 0 - 278.5 265.200195312 281.5 251.799804688 289.200195312 240.799804688 c 2 - 354.799804688 147.099609375 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" c a p s u l e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" C a p s u l e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" C A P S U L E S -EndChar - -StartChar: clipboard-check -Encoding: 62572 62572 565 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 384 m 2 - 362.5 384 384 362.5 384 336 c 2 - 384 -16 l 2 - 384 -42.5 362.5 -64 336 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 128 384 l 1 - 128 419.299804688 156.700195312 448 192 448 c 0 - 227.299804688 448 256 419.299804688 256 384 c 1 - 336 384 l 2 -192 408 m 0 - 178.700195312 408 168 397.299804688 168 384 c 0 - 168 370.700195312 178.700195312 360 192 360 c 0 - 205.299804688 360 216 370.700195312 216 384 c 0 - 216 397.299804688 205.299804688 408 192 408 c 0 -313.200195312 176.200195312 m 2 - 317.900390625 180.900390625 318 188.400390625 313.299804688 193.200195312 c 2 - 285.099609375 221.599609375 l 2 - 280.400390625 226.299804688 272.799804688 226.400390625 268.099609375 221.700195312 c 2 - 162.099609375 116.5 l 1 - 116.099609375 162.900390625 l 2 - 111.400390625 167.599609375 103.799804688 167.700195312 99.099609375 163 c 2 - 70.7001953125 134.799804688 l 2 - 66 130.099609375 65.900390625 122.5 70.599609375 117.799804688 c 2 - 153.200195312 34.5 l 2 - 157.900390625 29.7998046875 165.5 29.7001953125 170.200195312 34.400390625 c 2 - 313.200195312 176.200195312 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" c l i p b o a r d hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" C l i p b o a r d hyphen C h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" C l i p b o a r d hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" C L I P B O A R D hyphen C H E C K -EndChar - -StartChar: clipboard-list -Encoding: 62573 62573 566 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 384 m 2 - 362.5 384 384 362.5 384 336 c 2 - 384 -16 l 2 - 384 -42.5 362.5 -64 336 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 128 384 l 1 - 128 419.299804688 156.700195312 448 192 448 c 0 - 227.299804688 448 256 419.299804688 256 384 c 1 - 336 384 l 2 -96 24 m 0 - 109.299804688 24 120 34.7001953125 120 48 c 0 - 120 61.2998046875 109.299804688 72 96 72 c 0 - 82.7001953125 72 72 61.2998046875 72 48 c 0 - 72 34.7001953125 82.7001953125 24 96 24 c 0 -96 120 m 0 - 109.299804688 120 120 130.700195312 120 144 c 0 - 120 157.299804688 109.299804688 168 96 168 c 0 - 82.7001953125 168 72 157.299804688 72 144 c 0 - 72 130.700195312 82.7001953125 120 96 120 c 0 -96 216 m 0 - 109.299804688 216 120 226.700195312 120 240 c 0 - 120 253.299804688 109.299804688 264 96 264 c 0 - 82.7001953125 264 72 253.299804688 72 240 c 0 - 72 226.700195312 82.7001953125 216 96 216 c 0 -192 408 m 0 - 178.700195312 408 168 397.299804688 168 384 c 0 - 168 370.700195312 178.700195312 360 192 360 c 0 - 205.299804688 360 216 370.700195312 216 384 c 0 - 216 397.299804688 205.299804688 408 192 408 c 0 -320 40 m 2 - 320 56 l 2 - 320 60.400390625 316.400390625 64 312 64 c 2 - 168 64 l 2 - 163.599609375 64 160 60.400390625 160 56 c 2 - 160 40 l 2 - 160 35.599609375 163.599609375 32 168 32 c 2 - 312 32 l 2 - 316.400390625 32 320 35.599609375 320 40 c 2 -320 136 m 2 - 320 152 l 2 - 320 156.400390625 316.400390625 160 312 160 c 2 - 168 160 l 2 - 163.599609375 160 160 156.400390625 160 152 c 2 - 160 136 l 2 - 160 131.599609375 163.599609375 128 168 128 c 2 - 312 128 l 2 - 316.400390625 128 320 131.599609375 320 136 c 2 -320 232 m 2 - 320 248 l 2 - 320 252.400390625 316.400390625 256 312 256 c 2 - 168 256 l 2 - 163.599609375 256 160 252.400390625 160 248 c 2 - 160 232 l 2 - 160 227.599609375 163.599609375 224 168 224 c 2 - 312 224 l 2 - 316.400390625 224 320 227.599609375 320 232 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" c l i p b o a r d hyphen l i s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C l i p b o a r d hyphen L i s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C l i p b o a r d hyphen l i s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C L I P B O A R D hyphen L I S T -EndChar - -StartChar: diagnoses -Encoding: 62576 62576 567 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 192 m 0 - 487.200195312 192 480 199.200195312 480 208 c 0 - 480 216.799804688 487.200195312 224 496 224 c 0 - 504.799804688 224 512 216.799804688 512 208 c 0 - 512 199.200195312 504.799804688 192 496 192 c 0 -320 272 m 0 - 271.5 272 232 311.5 232 360 c 0 - 232 408.5 271.5 448 320 448 c 0 - 368.5 448 408 408.5 408 360 c 0 - 408 311.5 368.5 272 320 272 c 0 -59.7998046875 84 m 2 - 42.099609375 110.700195312 l 2 - 33.2998046875 124 34.5 145.299804688 52.099609375 155.799804688 c 0 - 59.5 160.200195312 69.599609375 165.799804688 80.7998046875 171.799804688 c 1 - 112.400390625 144.5 159.799804688 167.599609375 160 207.799804688 c 1 - 207.099609375 225.5 263 240 320 240 c 0 - 365.099609375 240 409.299804688 230.799804688 449.200195312 218.200195312 c 1 - 437.5 165.299804688 508.799804688 137 536.900390625 183.099609375 c 1 - 558.299804688 172.700195312 576.099609375 162.799804688 588 155.700195312 c 0 - 605.599609375 145.200195312 606.799804688 123.799804688 598 110.599609375 c 2 - 580.200195312 83.900390625 l 2 - 570 68.7998046875 550.900390625 66.099609375 537.299804688 74.099609375 c 0 - 521.099609375 83.7001953125 481.099609375 105.900390625 432 122.700195312 c 1 - 432 32 l 1 - 208 32 l 1 - 208 122.799804688 l 1 - 158.900390625 105.900390625 118.900390625 83.7998046875 102.700195312 74.2001953125 c 0 - 89.099609375 66.2001953125 70 68.7001953125 59.7998046875 84 c 2 -368 104 m 0 - 354.700195312 104 344 93.2998046875 344 80 c 0 - 344 66.7001953125 354.700195312 56 368 56 c 0 - 381.299804688 56 392 66.7001953125 392 80 c 0 - 392 93.2998046875 381.299804688 104 368 104 c 0 -272 200 m 0 - 258.700195312 200 248 189.299804688 248 176 c 0 - 248 162.700195312 258.700195312 152 272 152 c 0 - 285.299804688 152 296 162.700195312 296 176 c 0 - 296 189.299804688 285.299804688 200 272 200 c 0 -112 192 m 0 - 103.200195312 192 96 199.200195312 96 208 c 0 - 96 216.799804688 103.200195312 224 112 224 c 0 - 120.799804688 224 128 216.799804688 128 208 c 0 - 128 199.200195312 120.799804688 192 112 192 c 0 -624 0 m 2 - 632.799804688 0 640 -7.2001953125 640 -16 c 2 - 640 -48 l 2 - 640 -56.7998046875 632.799804688 -64 624 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 -16 l 2 - 0 -7.2001953125 7.2001953125 0 16 0 c 2 - 624 0 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" d i a g n o s e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" D i a g n o s e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" D I A G N O S E S -EndChar - -StartChar: dna -Encoding: 62577 62577 568 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0.099609375 -46.099609375 m 0 - 5.2998046875 -3.2001953125 31.5 107.799804688 160 192 c 1 - 31.400390625 276.200195312 5.2998046875 387.200195312 0.099609375 430.099609375 c 0 - -1 439.599609375 6.5 447.900390625 16.099609375 447.900390625 c 2 - 48.400390625 448 l 2 - 56.5 448.099609375 63.2998046875 442.099609375 64.400390625 434.099609375 c 0 - 65.099609375 429.099609375 66.2001953125 423 67.7998046875 416 c 1 - 380.200195312 416 l 1 - 381.799804688 423 382.900390625 429.200195312 383.599609375 434.099609375 c 0 - 384.700195312 442.099609375 391.5 448 399.599609375 448 c 2 - 432 447.900390625 l 2 - 441.599609375 447.900390625 449 439.599609375 447.900390625 430.099609375 c 0 - 442.099609375 382.200195312 410.5 248.900390625 238.400390625 163.400390625 c 0 - 206.700195312 147.599609375 181 130.099609375 159.700195312 112 c 1 - 287.299804688 112 l 1 - 281.700195312 116.799804688 276.5 121.599609375 270.299804688 126.200195312 c 1 - 291.700195312 137.400390625 311.200195312 149.200195312 328.799804688 161.599609375 c 1 - 422.099609375 82.900390625 443.099609375 -8.2001953125 447.700195312 -46.099609375 c 0 - 448.900390625 -55.599609375 441.400390625 -63.900390625 431.799804688 -63.900390625 c 2 - 399.5 -64 l 2 - 391.400390625 -64.099609375 384.599609375 -58.099609375 383.5 -50.099609375 c 0 - 382.900390625 -45.2001953125 381.599609375 -38.900390625 380 -32 c 1 - 67.7001953125 -32 l 1 - 66.099609375 -39 65 -45.2001953125 64.2998046875 -50.099609375 c 0 - 63.2001953125 -58.099609375 56.400390625 -64 48.2998046875 -64 c 2 - 16 -63.900390625 l 2 - 6.400390625 -63.900390625 -1 -55.599609375 0.099609375 -46.099609375 c 0 -224 228.400390625 m 1 - 249.099609375 242 270.400390625 256.799804688 288.200195312 272 c 1 - 159.700195312 272 l 1 - 177.599609375 256.799804688 198.900390625 242.099609375 224 228.400390625 c 1 -355.099609375 352 m 1 - 93 352 l 1 - 98.7001953125 341.599609375 105.700195312 330.900390625 114 320 c 1 - 334.099609375 320 l 1 - 342.299804688 330.900390625 349.299804688 341.599609375 355.099609375 352 c 1 -92.900390625 32 m 1 - 354.5 32 l 1 - 348.700195312 42.400390625 341.599609375 53.099609375 333.299804688 64 c 1 - 113.900390625 64 l 1 - 105.700195312 53.099609375 98.7001953125 42.400390625 92.900390625 32 c 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" d n a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" D n a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" D N A -EndChar - -StartChar: dolly -Encoding: 62578 62578 569 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -294.200195312 170.299804688 m 1 - 241.200195312 329.700195312 l 2 - 238.400390625 338 242.900390625 347.099609375 251.299804688 349.900390625 c 2 - 312.900390625 370.400390625 l 1 - 346 271 l 1 - 406.700195312 291.099609375 l 1 - 373.599609375 390.5 l 1 - 434.700195312 410.900390625 l 2 - 443 413.700195312 452.099609375 409.200195312 454.900390625 400.799804688 c 2 - 515.299804688 219.599609375 l 2 - 518.099609375 211.299804688 513.599609375 202.200195312 505.200195312 199.400390625 c 2 - 343.700195312 145.599609375 l 1 - 328.900390625 156.900390625 312.200195312 165.299804688 294.200195312 170.299804688 c 1 -575.200195312 121.599609375 m 2 - 578 113.200195312 573.400390625 104.200195312 565.099609375 101.400390625 c 2 - 351.799804688 30.2001953125 l 1 - 350.700195312 -27.599609375 298.599609375 -73.099609375 238.400390625 -62.400390625 c 0 - 199 -55.5 167.200195312 -22.599609375 161.099609375 16.7998046875 c 0 - 155.400390625 53.7001953125 171 86.900390625 197.099609375 107.299804688 c 1 - 104.900390625 384 l 1 - 16 384 l 2 - 7.2001953125 384 0 391.200195312 0 400 c 2 - 0 432 l 2 - 0 440.799804688 7.2001953125 448 16 448 c 2 - 128 448 l 2 - 141.799804688 448 154 439.200195312 158.400390625 426.099609375 c 2 - 257.799804688 127.900390625 l 1 - 287.700195312 127.299804688 314.099609375 112.900390625 331.299804688 90.900390625 c 1 - 544.799804688 162.099609375 l 2 - 553.099609375 164.900390625 562.200195312 160.400390625 565 152 c 2 - 575.200195312 121.599609375 l 2 -256 -16 m 0 - 282.5 -16 304 5.5 304 32 c 0 - 304 58.5 282.5 80 256 80 c 0 - 229.5 80 208 58.5 208 32 c 0 - 208 5.5 229.5 -16 256 -16 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" d o l l y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" D O L L Y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" D o l l y -EndChar - -StartChar: dolly-flatbed -Encoding: 62580 62580 570 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -208 128 m 2 - 199.200195312 128 192 135.200195312 192 144 c 2 - 192 400 l 2 - 192 408.799804688 199.200195312 416 208 416 c 2 - 352 416 l 1 - 352 288 l 1 - 400 320 l 1 - 448 288 l 1 - 448 416 l 1 - 592 416 l 2 - 600.799804688 416 608 408.799804688 608 400 c 2 - 608 144 l 2 - 608 135.200195312 600.799804688 128 592 128 c 2 - 208 128 l 2 -624 64 m 2 - 632.799804688 64 640 56.7998046875 640 48 c 2 - 640 16 l 2 - 640 7.2001953125 632.799804688 0 624 0 c 2 - 541.200195312 0 l 1 - 542.900390625 -5 544.099609375 -10.400390625 544.099609375 -16 c 0 - 544.099609375 -42.5 522.599609375 -64 496.099609375 -64 c 0 - 469.599609375 -64 448.099609375 -42.5 448.099609375 -16 c 0 - 448.099609375 -10.400390625 449.200195312 -5 451 0 c 1 - 253.099609375 0 l 1 - 254.799804688 -5 256 -10.400390625 256 -16 c 0 - 256 -42.5 234.5 -64 208 -64 c 0 - 181.5 -64 160 -42.5 160 -16 c 0 - 160 -10.400390625 161.099609375 -5 162.900390625 0 c 1 - 80 0 l 2 - 71.2001953125 0 64 7.2001953125 64 16 c 2 - 64 384 l 1 - 16 384 l 2 - 7.2001953125 384 0 391.200195312 0 400 c 2 - 0 432 l 2 - 0 440.799804688 7.2001953125 448 16 448 c 2 - 112 448 l 2 - 120.799804688 448 128 440.799804688 128 432 c 2 - 128 64 l 1 - 624 64 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" d o l l y hyphen f l a t b e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" D o l l y hyphen F l a t b e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" D o l l y hyphen f l a t b e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" D O L L Y hyphen F L A T B E D -EndChar - -StartChar: file-medical -Encoding: 62583 62583 571 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -288 152 m 2 - 288 156.400390625 284.400390625 160 280 160 c 2 - 224 160 l 1 - 224 216 l 2 - 224 220.400390625 220.400390625 224 216 224 c 2 - 168 224 l 2 - 163.599609375 224 160 220.400390625 160 216 c 2 - 160 160 l 1 - 104 160 l 2 - 99.599609375 160 96 156.400390625 96 152 c 2 - 96 104 l 2 - 96 99.599609375 99.599609375 96 104 96 c 2 - 160 96 l 1 - 160 40 l 2 - 160 35.599609375 163.599609375 32 168 32 c 2 - 216 32 l 2 - 220.400390625 32 224 35.599609375 224 40 c 2 - 224 96 l 1 - 280 96 l 2 - 284.400390625 96 288 99.599609375 288 104 c 2 - 288 152 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" f i l e hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" F i l e hyphen M e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" F i l e hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" F I L E hyphen M E D I C A L -EndChar - -StartChar: file-medical-alt -Encoding: 62584 62584 572 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 312 m 2 - 288 298.799804688 298.799804688 288 312 288 c 2 - 448 288 l 1 - 448 -40 l 2 - 448 -53.2998046875 437.299804688 -64 424 -64 c 2 - 88 -64 l 2 - 74.7001953125 -64 64 -53.2998046875 64 -40 c 2 - 64 128 l 1 - 134.099609375 128 l 1 - 168.900390625 58.5 l 2 - 171.799804688 52.599609375 180.299804688 52.599609375 183.200195312 58.5 c 2 - 240 172.200195312 l 1 - 262.099609375 128 l 1 - 352 128 l 2 - 360.799804688 128 368 135.200195312 368 144 c 0 - 368 152.799804688 360.799804688 160 352 160 c 2 - 281.799804688 160 l 1 - 247.099609375 229.5 l 2 - 244.200195312 235.400390625 235.700195312 235.400390625 232.799804688 229.5 c 2 - 176 115.799804688 l 1 - 156.099609375 155.599609375 l 2 - 154.700195312 158.299804688 151.900390625 160 148.900390625 160 c 2 - 8 160 l 2 - 3.599609375 160 0 163.599609375 0 168 c 2 - 0 184 l 2 - 0 188.400390625 3.599609375 192 8 192 c 2 - 64 192 l 1 - 64 424 l 2 - 64 437.299804688 74.7001953125 448 88 448 c 2 - 288 448 l 1 - 288 312 l 2 -441 343 m 2 - 445.5 338.5 448 332.400390625 448 326.099609375 c 2 - 448 320 l 1 - 320 320 l 1 - 320 448 l 1 - 326.099609375 448 l 2 - 332.5 448 338.599609375 445.5 343.099609375 441 c 2 - 441 343 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" f i l e hyphen m e d i c a l hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" F i l e hyphen M e d i c a l hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" F i l e hyphen m e d i c a l hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" F I L E hyphen M E D I C A L hyphen A L T -EndChar - -StartChar: first-aid -Encoding: 62585 62585 573 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 368 m 2 - 0 394.5 21.5 416 48 416 c 2 - 96 416 l 1 - 96 -32 l 1 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 -128 -32 m 1 - 128 416 l 1 - 448 416 l 1 - 448 -32 l 1 - 128 -32 l 1 -192 216 m 2 - 192 168 l 2 - 192 163.599609375 195.599609375 160 200 160 c 2 - 256 160 l 1 - 256 104 l 2 - 256 99.599609375 259.599609375 96 264 96 c 2 - 312 96 l 2 - 316.400390625 96 320 99.599609375 320 104 c 2 - 320 160 l 1 - 376 160 l 2 - 380.400390625 160 384 163.599609375 384 168 c 2 - 384 216 l 2 - 384 220.400390625 380.400390625 224 376 224 c 2 - 320 224 l 1 - 320 280 l 2 - 320 284.400390625 316.400390625 288 312 288 c 2 - 264 288 l 2 - 259.599609375 288 256 284.400390625 256 280 c 2 - 256 224 l 1 - 200 224 l 2 - 195.599609375 224 192 220.400390625 192 216 c 2 -528 416 m 2 - 554.5 416 576 394.5 576 368 c 2 - 576 16 l 2 - 576 -10.5 554.5 -32 528 -32 c 2 - 480 -32 l 1 - 480 416 l 1 - 528 416 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" f i r s t hyphen a i d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" F i r s t hyphen A i d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" F i r s t hyphen a i d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" F I R S T hyphen A I D -EndChar - -StartChar: hospital-alt -Encoding: 62589 62589 574 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 352 m 2 - 561.700195312 352 576 337.700195312 576 320 c 2 - 576 -48 l 2 - 576 -56.7998046875 568.799804688 -64 560 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 320 l 2 - 0 337.700195312 14.2998046875 352 32 352 c 2 - 160 352 l 1 - 160 416 l 2 - 160 433.700195312 174.299804688 448 192 448 c 2 - 384 448 l 2 - 401.700195312 448 416 433.700195312 416 416 c 2 - 416 352 l 1 - 544 352 l 2 -160 12 m 2 - 160 52 l 2 - 160 58.599609375 154.599609375 64 148 64 c 2 - 108 64 l 2 - 101.400390625 64 96 58.599609375 96 52 c 2 - 96 12 l 2 - 96 5.400390625 101.400390625 0 108 0 c 2 - 148 0 l 2 - 154.599609375 0 160 5.400390625 160 12 c 2 -160 140 m 2 - 160 180 l 2 - 160 186.599609375 154.599609375 192 148 192 c 2 - 108 192 l 2 - 101.400390625 192 96 186.599609375 96 180 c 2 - 96 140 l 2 - 96 133.400390625 101.400390625 128 108 128 c 2 - 148 128 l 2 - 154.599609375 128 160 133.400390625 160 140 c 2 -320 12 m 2 - 320 52 l 2 - 320 58.599609375 314.599609375 64 308 64 c 2 - 268 64 l 2 - 261.400390625 64 256 58.599609375 256 52 c 2 - 256 12 l 2 - 256 5.400390625 261.400390625 0 268 0 c 2 - 308 0 l 2 - 314.599609375 0 320 5.400390625 320 12 c 2 -320 140 m 2 - 320 180 l 2 - 320 186.599609375 314.599609375 192 308 192 c 2 - 268 192 l 2 - 261.400390625 192 256 186.599609375 256 180 c 2 - 256 140 l 2 - 256 133.400390625 261.400390625 128 268 128 c 2 - 308 128 l 2 - 314.599609375 128 320 133.400390625 320 140 c 2 -336 310 m 2 - 336 330 l 2 - 336 333.299804688 333.299804688 336 330 336 c 2 - 304 336 l 1 - 304 362 l 2 - 304 365.299804688 301.299804688 368 298 368 c 2 - 278 368 l 2 - 274.700195312 368 272 365.299804688 272 362 c 2 - 272 336 l 1 - 246 336 l 2 - 242.700195312 336 240 333.299804688 240 330 c 2 - 240 310 l 2 - 240 306.700195312 242.700195312 304 246 304 c 2 - 272 304 l 1 - 272 278 l 2 - 272 274.700195312 274.700195312 272 278 272 c 2 - 298 272 l 2 - 301.299804688 272 304 274.700195312 304 278 c 2 - 304 304 l 1 - 330 304 l 2 - 333.299804688 304 336 306.700195312 336 310 c 2 -480 12 m 2 - 480 52 l 2 - 480 58.599609375 474.599609375 64 468 64 c 2 - 428 64 l 2 - 421.400390625 64 416 58.599609375 416 52 c 2 - 416 12 l 2 - 416 5.400390625 421.400390625 0 428 0 c 2 - 468 0 l 2 - 474.599609375 0 480 5.400390625 480 12 c 2 -480 140 m 2 - 480 180 l 2 - 480 186.599609375 474.599609375 192 468 192 c 2 - 428 192 l 2 - 421.400390625 192 416 186.599609375 416 180 c 2 - 416 140 l 2 - 416 133.400390625 421.400390625 128 428 128 c 2 - 468 128 l 2 - 474.599609375 128 480 133.400390625 480 140 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" h o s p i t a l hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" H o s p i t a l hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" H o s p i t a l hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" H O S P I T A L hyphen A L T -EndChar - -StartChar: hospital-symbol -Encoding: 62590 62590 575 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 448 m 0 - 397.400390625 448 512 333.400390625 512 192 c 0 - 512 50.599609375 397.400390625 -64 256 -64 c 0 - 114.599609375 -64 0 50.599609375 0 192 c 0 - 0 333.400390625 114.599609375 448 256 448 c 0 -368 72 m 2 - 368 312 l 2 - 368 316.400390625 364.400390625 320 360 320 c 2 - 312 320 l 2 - 307.599609375 320 304 316.400390625 304 312 c 2 - 304 224 l 1 - 208 224 l 1 - 208 312 l 2 - 208 316.400390625 204.400390625 320 200 320 c 2 - 152 320 l 2 - 147.599609375 320 144 316.400390625 144 312 c 2 - 144 72 l 2 - 144 67.599609375 147.599609375 64 152 64 c 2 - 200 64 l 2 - 204.400390625 64 208 67.599609375 208 72 c 2 - 208 160 l 1 - 304 160 l 1 - 304 72 l 2 - 304 67.599609375 307.599609375 64 312 64 c 2 - 360 64 l 2 - 364.400390625 64 368 67.599609375 368 72 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" h o s p i t a l hyphen s y m b o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H o s p i t a l hyphen S y m b o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H o s p i t a l hyphen s y m b o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H O S P I T A L hyphen S Y M B O L -EndChar - -StartChar: id-card-alt -Encoding: 62591 62591 576 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528 384 m 2 - 554.5 384 576 362.5 576 336 c 2 - 576 -16 l 2 - 576 -42.5 554.5 -64 528 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 192 384 l 1 - 192 288 l 1 - 384 288 l 1 - 384 384 l 1 - 528 384 l 2 -288 224 m 0 - 252.700195312 224 224 195.299804688 224 160 c 0 - 224 124.700195312 252.700195312 96 288 96 c 0 - 323.299804688 96 352 124.700195312 352 160 c 0 - 352 195.299804688 323.299804688 224 288 224 c 0 -381.299804688 0 m 2 - 391.700195312 0 400.099609375 10 396.900390625 19.7998046875 c 0 - 388.5 45.5 364.400390625 64 336 64 c 2 - 327.799804688 64 l 1 - 315.599609375 58.900390625 302.099609375 56 288 56 c 0 - 273.900390625 56 260.5 58.900390625 248.200195312 64 c 1 - 240 64 l 2 - 211.5 64 187.400390625 45.400390625 179.099609375 19.7998046875 c 0 - 175.900390625 10 184.299804688 0 194.700195312 0 c 2 - 381.299804688 0 l 2 -352 416 m 2 - 352 320 l 1 - 224 320 l 1 - 224 416 l 2 - 224 433.700195312 238.299804688 448 256 448 c 2 - 320 448 l 2 - 337.700195312 448 352 433.700195312 352 416 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" i d hyphen c a r d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" I d hyphen C a r d hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" I d hyphen c a r d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" I D hyphen C A R D hyphen A L T -EndChar - -StartChar: notes-medical -Encoding: 62593 62593 577 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 384 m 2 - 362.5 384 384 362.5 384 336 c 2 - 384 -16 l 2 - 384 -42.5 362.5 -64 336 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 128 384 l 1 - 128 419.299804688 156.700195312 448 192 448 c 0 - 227.299804688 448 256 419.299804688 256 384 c 1 - 336 384 l 2 -192 408 m 0 - 178.700195312 408 168 397.299804688 168 384 c 0 - 168 370.700195312 178.700195312 360 192 360 c 0 - 205.299804688 360 216 370.700195312 216 384 c 0 - 216 397.299804688 205.299804688 408 192 408 c 0 -288 104 m 2 - 288 152 l 2 - 288 156.400390625 284.400390625 160 280 160 c 2 - 224 160 l 1 - 224 216 l 2 - 224 220.400390625 220.400390625 224 216 224 c 2 - 168 224 l 2 - 163.599609375 224 160 220.400390625 160 216 c 2 - 160 160 l 1 - 104 160 l 2 - 99.599609375 160 96 156.400390625 96 152 c 2 - 96 104 l 2 - 96 99.599609375 99.599609375 96 104 96 c 2 - 160 96 l 1 - 160 40 l 2 - 160 35.599609375 163.599609375 32 168 32 c 2 - 216 32 l 2 - 220.400390625 32 224 35.599609375 224 40 c 2 - 224 96 l 1 - 280 96 l 2 - 284.400390625 96 288 99.599609375 288 104 c 2 -288 296 m 2 - 288 312 l 2 - 288 316.400390625 284.400390625 320 280 320 c 2 - 104 320 l 2 - 99.599609375 320 96 316.400390625 96 312 c 2 - 96 296 l 2 - 96 291.599609375 99.599609375 288 104 288 c 2 - 280 288 l 2 - 284.400390625 288 288 291.599609375 288 296 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" n o t e s hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" N o t e s hyphen M e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" N o t e s hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" N O T E S hyphen M E D I C A L -EndChar - -StartChar: pallet -Encoding: 62594 62594 578 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -144 192 m 2 - 135.200195312 192 128 199.200195312 128 208 c 2 - 128 432 l 2 - 128 440.799804688 135.200195312 448 144 448 c 2 - 256 448 l 1 - 256 320 l 1 - 320 352 l 1 - 384 320 l 1 - 384 448 l 1 - 496 448 l 2 - 504.799804688 448 512 440.799804688 512 432 c 2 - 512 208 l 2 - 512 199.200195312 504.799804688 192 496 192 c 2 - 144 192 l 2 -624 64 m 2 - 576 64 l 1 - 576 0 l 1 - 624 0 l 2 - 632.799804688 0 640 -7.2001953125 640 -16 c 2 - 640 -48 l 2 - 640 -56.7998046875 632.799804688 -64 624 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 -16 l 2 - 0 -7.2001953125 7.2001953125 0 16 0 c 2 - 64 0 l 1 - 64 64 l 1 - 16 64 l 2 - 7.2001953125 64 0 71.2001953125 0 80 c 2 - 0 112 l 2 - 0 120.799804688 7.2001953125 128 16 128 c 2 - 624 128 l 2 - 632.799804688 128 640 120.799804688 640 112 c 2 - 640 80 l 2 - 640 71.2001953125 632.799804688 64 624 64 c 2 -288 0 m 1 - 288 64 l 1 - 128 64 l 1 - 128 0 l 1 - 288 0 l 1 -512 0 m 1 - 512 64 l 1 - 352 64 l 1 - 352 0 l 1 - 512 0 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" p a l l e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" P a l l e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" P A L L E T -EndChar - -StartChar: pills -Encoding: 62596 62596 579 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -112 416 m 0 - 173.900390625 416 224 365.900390625 224 304 c 2 - 224 80 l 2 - 224 18.099609375 173.900390625 -32 112 -32 c 0 - 50.099609375 -32 0 18.099609375 0 80 c 2 - 0 304 l 2 - 0 365.900390625 50.099609375 416 112 416 c 0 -160 192 m 1 - 160 304 l 2 - 160 330.5 138.5 352 112 352 c 0 - 85.5 352 64 330.5 64 304 c 2 - 64 192 l 1 - 160 192 l 1 -299.700195312 221.700195312 m 2 - 510.5 10.900390625 l 2 - 514 7.400390625 513.700195312 1.5 509.700195312 -1.400390625 c 0 - 447.200195312 -46.7001953125 359.599609375 -41.7998046875 303.299804688 14.5 c 0 - 247 70.7998046875 242.099609375 158.400390625 287.400390625 220.900390625 c 0 - 290.299804688 224.799804688 296.200195312 225.200195312 299.700195312 221.700195312 c 2 -529.5 240.700195312 m 0 - 585.900390625 184.400390625 590.700195312 96.900390625 545.400390625 34.2998046875 c 0 - 542.5 30.400390625 536.599609375 30 533.099609375 33.5 c 2 - 322.299804688 244.299804688 l 2 - 318.799804688 247.799804688 319.099609375 253.700195312 323.099609375 256.599609375 c 0 - 385.599609375 301.900390625 473.200195312 297 529.5 240.700195312 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" p i l l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" P i l l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" P I L L S -EndChar - -StartChar: prescription-bottle -Encoding: 62597 62597 580 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 256 m 1 - 32 320 l 1 - 352 320 l 1 - 352 -32 l 2 - 352 -49.599609375 337.599609375 -64 320 -64 c 2 - 64 -64 l 2 - 46.400390625 -64 32 -49.599609375 32 -32 c 2 - 32 32 l 1 - 152 32 l 2 - 156.400390625 32 160 35.599609375 160 40 c 2 - 160 56 l 2 - 160 60.400390625 156.400390625 64 152 64 c 2 - 32 64 l 1 - 32 128 l 1 - 152 128 l 2 - 156.400390625 128 160 131.599609375 160 136 c 2 - 160 152 l 2 - 160 156.400390625 156.400390625 160 152 160 c 2 - 32 160 l 1 - 32 224 l 1 - 152 224 l 2 - 156.400390625 224 160 227.599609375 160 232 c 2 - 160 248 l 2 - 160 252.400390625 156.400390625 256 152 256 c 2 - 32 256 l 1 -360 448 m 2 - 373.200195312 448 384 437.200195312 384 424 c 2 - 384 376 l 2 - 384 362.799804688 373.200195312 352 360 352 c 2 - 24 352 l 2 - 10.7998046875 352 0 362.799804688 0 376 c 2 - 0 424 l 2 - 0 437.200195312 10.7998046875 448 24 448 c 2 - 360 448 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" p r e s c r i p t i o n hyphen b o t t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" P r e s c r i p t i o n hyphen B o t t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" P r e s c r i p t i o n hyphen b o t t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" P R E S C R I P T I O N hyphen B O T T L E -EndChar - -StartChar: prescription-bottle-alt -Encoding: 62598 62598 581 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -360 448 m 2 - 373.200195312 448 384 437.200195312 384 424 c 2 - 384 376 l 2 - 384 362.799804688 373.200195312 352 360 352 c 2 - 24 352 l 2 - 10.7998046875 352 0 362.799804688 0 376 c 2 - 0 424 l 2 - 0 437.200195312 10.7998046875 448 24 448 c 2 - 360 448 l 2 -32 -32 m 2 - 32 320 l 1 - 352 320 l 1 - 352 -32 l 2 - 352 -49.599609375 337.599609375 -64 320 -64 c 2 - 64 -64 l 2 - 46.400390625 -64 32 -49.599609375 32 -32 c 2 -96 152 m 2 - 96 104 l 2 - 96 99.599609375 99.599609375 96 104 96 c 2 - 160 96 l 1 - 160 40 l 2 - 160 35.599609375 163.599609375 32 168 32 c 2 - 216 32 l 2 - 220.400390625 32 224 35.599609375 224 40 c 2 - 224 96 l 1 - 280 96 l 2 - 284.400390625 96 288 99.599609375 288 104 c 2 - 288 152 l 2 - 288 156.400390625 284.400390625 160 280 160 c 2 - 224 160 l 1 - 224 216 l 2 - 224 220.400390625 220.400390625 224 216 224 c 2 - 168 224 l 2 - 163.599609375 224 160 220.400390625 160 216 c 2 - 160 160 l 1 - 104 160 l 2 - 99.599609375 160 96 156.400390625 96 152 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 4" p r e s c r i p t i o n hyphen b o t t l e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 4" P r e s c r i p t i o n hyphen B o t t l e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 4" P r e s c r i p t i o n hyphen b o t t l e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 4" P R E S C R I P T I O N hyphen B O T T L E hyphen A L T -EndChar - -StartChar: procedures -Encoding: 62599 62599 582 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528 224 m 2 - 589.900390625 224 640 173.900390625 640 112 c 2 - 640 -48 l 2 - 640 -56.7998046875 632.799804688 -64 624 -64 c 2 - 592 -64 l 2 - 583.200195312 -64 576 -56.7998046875 576 -48 c 2 - 576 0 l 1 - 64 0 l 1 - 64 -48 l 2 - 64 -56.7998046875 56.7998046875 -64 48 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 304 l 2 - 0 312.799804688 7.2001953125 320 16 320 c 2 - 48 320 l 2 - 56.7998046875 320 64 312.799804688 64 304 c 2 - 64 64 l 1 - 256 64 l 1 - 256 208 l 2 - 256 216.799804688 263.200195312 224 272 224 c 2 - 528 224 l 2 -136 352 m 2 - 131.599609375 352 128 355.599609375 128 360 c 2 - 128 376 l 2 - 128 380.400390625 131.599609375 384 136 384 c 2 - 276.900390625 384 l 2 - 280 384 282.700195312 382.299804688 284.099609375 379.599609375 c 2 - 304 339.799804688 l 1 - 353.700195312 439.200195312 l 2 - 359.599609375 451 376.400390625 451 382.299804688 439.200195312 c 2 - 409.900390625 384 l 1 - 512 384 l 2 - 520.799804688 384 528 376.799804688 528 368 c 0 - 528 359.200195312 520.799804688 352 512 352 c 2 - 390.099609375 352 l 1 - 368 396.200195312 l 1 - 318.299804688 296.799804688 l 2 - 312.400390625 285 295.599609375 285 289.700195312 296.799804688 c 2 - 262.099609375 352 l 1 - 136 352 l 2 -160 96 m 0 - 124.700195312 96 96 124.700195312 96 160 c 0 - 96 195.299804688 124.700195312 224 160 224 c 0 - 195.299804688 224 224 195.299804688 224 160 c 0 - 224 124.700195312 195.299804688 96 160 96 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" p r o c e d u r e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" P r o c e d u r e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" P R O C E D U R E S -EndChar - -StartChar: shipping-fast -Encoding: 62603 62603 583 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 96 m 2 - 632.799804688 96 640 88.7998046875 640 80 c 2 - 640 48 l 2 - 640 39.2001953125 632.799804688 32 624 32 c 2 - 576 32 l 1 - 576 -21 533 -64 480 -64 c 0 - 427 -64 384 -21 384 32 c 1 - 256 32 l 1 - 256 -21 213 -64 160 -64 c 0 - 107 -64 64 -21 64 32 c 2 - 64 160 l 1 - 216 160 l 2 - 220.400390625 160 224 163.599609375 224 168 c 2 - 224 184 l 2 - 224 188.400390625 220.400390625 192 216 192 c 2 - 8 192 l 2 - 3.599609375 192 0 195.599609375 0 200 c 2 - 0 216 l 2 - 0 220.400390625 3.599609375 224 8 224 c 2 - 248 224 l 2 - 252.400390625 224 256 227.599609375 256 232 c 2 - 256 248 l 2 - 256 252.400390625 252.400390625 256 248 256 c 2 - 40 256 l 2 - 35.599609375 256 32 259.599609375 32 264 c 2 - 32 280 l 2 - 32 284.400390625 35.599609375 288 40 288 c 2 - 280 288 l 2 - 284.400390625 288 288 291.599609375 288 296 c 2 - 288 312 l 2 - 288 316.400390625 284.400390625 320 280 320 c 2 - 8 320 l 2 - 3.599609375 320 0 323.599609375 0 328 c 2 - 0 344 l 2 - 0 348.400390625 3.599609375 352 8 352 c 2 - 64 352 l 1 - 64 400 l 2 - 64 426.5 85.5 448 112 448 c 2 - 368 448 l 2 - 394.5 448 416 426.5 416 400 c 2 - 416 352 l 1 - 460.099609375 352 l 2 - 472.799804688 352 485 346.900390625 494 337.900390625 c 2 - 593.900390625 238 l 2 - 602.900390625 229 608 216.799804688 608 204.099609375 c 2 - 608 96 l 1 - 624 96 l 2 -160 -16 m 0 - 186.5 -16 208 5.5 208 32 c 0 - 208 58.5 186.5 80 160 80 c 0 - 133.5 80 112 58.5 112 32 c 0 - 112 5.5 133.5 -16 160 -16 c 0 -480 -16 m 0 - 506.5 -16 528 5.5 528 32 c 0 - 528 58.5 506.5 80 480 80 c 0 - 453.5 80 432 58.5 432 32 c 0 - 432 5.5 453.5 -16 480 -16 c 0 -560 192 m 1 - 560 204.099609375 l 1 - 460.099609375 304 l 1 - 416 304 l 1 - 416 192 l 1 - 560 192 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" s h i p p i n g hyphen f a s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" S h i p p i n g hyphen F a s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" S h i p p i n g hyphen f a s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" S H I P P I N G hyphen F A S T -EndChar - -StartChar: smoking -Encoding: 62605 62605 584 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -632 96 m 2 - 636.400390625 96 640 92.400390625 640 88 c 2 - 640 -56 l 2 - 640 -60.400390625 636.400390625 -64 632 -64 c 2 - 584 -64 l 2 - 579.599609375 -64 576 -60.400390625 576 -56 c 2 - 576 88 l 2 - 576 92.400390625 579.599609375 96 584 96 c 2 - 632 96 l 2 -553.299804688 360.900390625 m 0 - 607.599609375 324.5 640 263.799804688 640 198.299804688 c 2 - 640 168 l 2 - 640 163.599609375 636.400390625 160 632 160 c 2 - 584 160 l 2 - 579.599609375 160 576 163.599609375 576 168 c 2 - 576 198.299804688 l 2 - 576 248.5 550.799804688 295 508.599609375 322.299804688 c 0 - 490.200195312 334.299804688 480 355.700195312 480 377.700195312 c 2 - 480 440 l 2 - 480 444.400390625 483.599609375 448 488 448 c 2 - 536 448 l 2 - 540.400390625 448 544 444.400390625 544 440 c 2 - 544 377.700195312 l 2 - 544 370.900390625 547.599609375 364.700195312 553.299804688 360.900390625 c 0 -432 96 m 2 - 440.799804688 96 448 88.7998046875 448 80 c 2 - 448 -48 l 2 - 448 -56.7998046875 440.799804688 -64 432 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 48 l 2 - 0 74.5 21.5 96 48 96 c 2 - 432 96 l 2 -400 -16 m 1 - 400 48 l 1 - 224 48 l 1 - 224 -16 l 1 - 400 -16 l 1 -487.700195312 306.400390625 m 0 - 523 281.700195312 544 241.599609375 544 198.299804688 c 2 - 544 168 l 2 - 544 163.599609375 540.400390625 160 536 160 c 2 - 488 160 l 2 - 483.599609375 160 480 163.599609375 480 168 c 2 - 480 198.299804688 l 2 - 480 225.700195312 466.700195312 251.200195312 444.299804688 266.900390625 c 0 - 408.599609375 292 384 329.900390625 384 373.599609375 c 2 - 384 440 l 2 - 384 444.400390625 387.599609375 448 392 448 c 2 - 440 448 l 2 - 444.400390625 448 448 444.400390625 448 440 c 2 - 448 377.700195312 l 2 - 448 348.700195312 463.799804688 323 487.700195312 306.400390625 c 0 -536 96 m 2 - 540.400390625 96 544 92.400390625 544 88 c 2 - 544 -56 l 2 - 544 -60.400390625 540.400390625 -64 536 -64 c 2 - 488 -64 l 2 - 483.599609375 -64 480 -60.400390625 480 -56 c 2 - 480 88 l 2 - 480 92.400390625 483.599609375 96 488 96 c 2 - 536 96 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" s m o k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" S m o k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" S M O K I N G -EndChar - -StartChar: syringe -Encoding: 62606 62606 585 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -201.5 273.200195312 m 1 - 266.400390625 338.200195312 l 1 - 402.099609375 202.5 l 1 - 220.200195312 20.599609375 l 2 - 202.700195312 3 178.700195312 -5 154.799804688 -2.400390625 c 2 - 91.2001953125 4.7001953125 l 1 - 24.900390625 -61.599609375 l 2 - 21.7998046875 -64.7001953125 16.7001953125 -64.7001953125 13.599609375 -61.599609375 c 2 - 2.2998046875 -50.2998046875 l 2 - -0.7998046875 -47.2001953125 -0.7998046875 -42.099609375 2.2998046875 -39 c 2 - 68.7001953125 27.400390625 l 1 - 61.599609375 91 l 2 - 59 115.299804688 67.2998046875 139.099609375 84.599609375 156.400390625 c 2 - 111 182.799804688 l 1 - 166.799804688 126.900390625 l 2 - 169.900390625 123.799804688 175 123.799804688 178.099609375 126.900390625 c 2 - 189.400390625 138.200195312 l 2 - 192.5 141.299804688 192.5 146.400390625 189.400390625 149.5 c 2 - 133.599609375 205.299804688 l 1 - 178.900390625 250.599609375 l 1 - 234.599609375 194.799804688 l 2 - 237.700195312 191.700195312 242.799804688 191.700195312 245.900390625 194.799804688 c 2 - 257.200195312 206.099609375 l 2 - 260.299804688 209.200195312 260.299804688 214.299804688 257.200195312 217.400390625 c 2 - 201.5 273.200195312 l 1 -509.700195312 366.5 m 2 - 512.799804688 363.299804688 512.799804688 358.299804688 509.700195312 355.099609375 c 2 - 498.400390625 343.799804688 l 2 - 495.299804688 340.700195312 490.200195312 340.700195312 487.099609375 343.799804688 c 2 - 458.799804688 372.099609375 l 1 - 413.5 326.799804688 l 1 - 487 253.299804688 l 2 - 490.099609375 250.200195312 490.099609375 245.099609375 487 242 c 2 - 453.099609375 208 l 2 - 450 204.900390625 444.900390625 204.900390625 441.799804688 208 c 2 - 424.799804688 225 l 1 - 289.099609375 360.900390625 l 1 - 272.099609375 377.900390625 l 2 - 269 381 269 386.099609375 272.099609375 389.200195312 c 2 - 306 423.099609375 l 2 - 309.099609375 426.200195312 314.200195312 426.200195312 317.299804688 423.099609375 c 2 - 334.299804688 406.099609375 l 1 - 390.900390625 349.5 l 1 - 436.200195312 394.799804688 l 1 - 407.900390625 423.099609375 l 2 - 404.799804688 426.200195312 404.799804688 431.299804688 407.900390625 434.400390625 c 2 - 419.200195312 445.700195312 l 2 - 422.299804688 448.799804688 427.400390625 448.799804688 430.5 445.700195312 c 2 - 509.700195312 366.5 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" s y r i n g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" S y r i n g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" S Y R I N G E -EndChar - -StartChar: tablets -Encoding: 62608 62608 586 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -160 256 m 0 - 241.099609375 256 307.5 197.5 320 121.299804688 c 0 - 320.799804688 116.5 316.700195312 112 311.700195312 112 c 2 - 8.400390625 112 l 2 - 3.400390625 112 -0.7001953125 116.5 0.099609375 121.299804688 c 0 - 12.5 197.5 78.900390625 256 160 256 c 0 -311.599609375 80 m 2 - 316.599609375 80 320.700195312 75.5 319.900390625 70.7001953125 c 0 - 307.5 -5.5 241.099609375 -64 160 -64 c 0 - 78.900390625 -64 12.5 -5.5 0.099609375 70.7001953125 c 0 - -0.7001953125 75.5 3.400390625 80 8.400390625 80 c 2 - 311.599609375 80 l 2 -593.400390625 401.400390625 m 0 - 649.900390625 344.900390625 654.799804688 257.200195312 609.299804688 194.5 c 0 - 606.5 190.5 600.5 190.200195312 597 193.700195312 c 2 - 385.700195312 405.099609375 l 2 - 382.200195312 408.5 382.5 414.5 386.5 417.400390625 c 0 - 449.200195312 462.799804688 536.900390625 457.900390625 593.400390625 401.400390625 c 0 -363 382.299804688 m 2 - 574.299804688 171 l 2 - 577.799804688 167.599609375 577.5 161.599609375 573.5 158.700195312 c 0 - 510.799804688 113.200195312 423.099609375 118.099609375 366.599609375 174.599609375 c 0 - 310.200195312 231.099609375 305.299804688 318.799804688 350.700195312 381.5 c 0 - 353.5 385.5 359.5 385.799804688 363 382.299804688 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" t a b l e t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" T a b l e t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" T A B L E T S -EndChar - -StartChar: thermometer -Encoding: 62609 62609 587 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -476.799804688 427.599609375 m 0 - 526.200195312 386.900390625 518.900390625 320.299804688 484 285.400390625 c 2 - 229.799804688 32.099609375 l 1 - 129.900390625 32.099609375 l 1 - 40.900390625 -56.900390625 l 2 - 31.599609375 -66.2998046875 16.400390625 -66.2998046875 7 -56.900390625 c 0 - -2.400390625 -47.599609375 -2.400390625 -32.400390625 7 -23 c 2 - 96 66 l 1 - 96 166.900390625 l 1 - 141.299804688 212.599609375 l 1 - 191.400390625 162.400390625 l 2 - 194.5 159.299804688 199.599609375 159.299804688 202.700195312 162.400390625 c 2 - 214 173.700195312 l 2 - 217.099609375 176.799804688 217.099609375 181.900390625 214 185 c 2 - 163.900390625 235.200195312 l 1 - 209 280.599609375 l 1 - 259.299804688 230.400390625 l 2 - 262.400390625 227.299804688 267.5 227.299804688 270.599609375 230.400390625 c 2 - 281.900390625 241.700195312 l 2 - 285 244.799804688 285 249.900390625 281.900390625 253 c 2 - 231.599609375 303.400390625 l 1 - 276.700195312 348.799804688 l 1 - 327.099609375 298.299804688 l 2 - 330.200195312 295.200195312 335.299804688 295.200195312 338.400390625 298.299804688 c 2 - 349.700195312 309.599609375 l 2 - 352.799804688 312.700195312 352.799804688 317.799804688 349.700195312 320.900390625 c 2 - 299.200195312 371.400390625 l 1 - 344.900390625 417.400390625 l 2 - 381.299804688 453.900390625 439.299804688 458.299804688 476.799804688 427.599609375 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" t h e r m o m e t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" T h e r m o m e t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" T H E R M O M E T E R -EndChar - -StartChar: vial -Encoding: 62610 62610 588 -Width: 480 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -477.700195312 261.900390625 m 2 - 480.799804688 258.799804688 480.799804688 253.700195312 477.700195312 250.700195312 c 2 - 443.700195312 216.799804688 l 2 - 440.599609375 213.700195312 435.5 213.700195312 432.400390625 216.799804688 c 2 - 421.200195312 227.900390625 l 1 - 174.900390625 -17.7998046875 l 2 - 154.799804688 -37.900390625 128.400390625 -47.900390625 102 -47.900390625 c 0 - 73.099609375 -48 44.2001953125 -36 23.599609375 -12 c 0 - -12.099609375 29.5 -5.7998046875 92.7998046875 33 131.5 c 2 - 275.400390625 373.400390625 l 1 - 264.200195312 384.5 l 2 - 261.099609375 387.599609375 261.099609375 392.700195312 264.200195312 395.799804688 c 2 - 298.200195312 429.700195312 l 2 - 301.299804688 432.799804688 306.400390625 432.799804688 309.5 429.700195312 c 2 - 477.700195312 261.900390625 l 2 -318 192 m 1 - 387.5 261.400390625 l 1 - 309 339.700195312 l 1 - 161 192 l 1 - 318 192 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" v i a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" V i a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" V I A L -EndChar - -StartChar: vials -Encoding: 62611 62611 589 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -72 384 m 2 - 67.599609375 384 64 387.599609375 64 392 c 2 - 64 440 l 2 - 64 444.400390625 67.599609375 448 72 448 c 2 - 280 448 l 2 - 284.400390625 448 288 444.400390625 288 440 c 2 - 288 392 l 2 - 288 387.599609375 284.400390625 384 280 384 c 2 - 256 384 l 1 - 256 144 l 2 - 256 99.900390625 220.099609375 64 176 64 c 0 - 131.900390625 64 96 99.900390625 96 144 c 2 - 96 384 l 1 - 72 384 l 2 -144 384 m 1 - 144 288 l 1 - 208 288 l 1 - 208 384 l 1 - 144 384 l 1 -624 0 m 2 - 632.799804688 0 640 -7.2001953125 640 -16 c 2 - 640 -48 l 2 - 640 -56.7998046875 632.799804688 -64 624 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 -16 l 2 - 0 -7.2001953125 7.2001953125 0 16 0 c 2 - 624 0 l 2 -360 384 m 2 - 355.599609375 384 352 387.599609375 352 392 c 2 - 352 440 l 2 - 352 444.400390625 355.599609375 448 360 448 c 2 - 568 448 l 2 - 572.400390625 448 576 444.400390625 576 440 c 2 - 576 392 l 2 - 576 387.599609375 572.400390625 384 568 384 c 2 - 544 384 l 1 - 544 144 l 2 - 544 99.900390625 508.099609375 64 464 64 c 0 - 419.900390625 64 384 99.900390625 384 144 c 2 - 384 384 l 1 - 360 384 l 2 -432 384 m 1 - 432 288 l 1 - 496 288 l 1 - 496 384 l 1 - 432 384 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" v i a l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" V i a l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" V I A L S -EndChar - -StartChar: warehouse -Encoding: 62612 62612 590 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -504 96 m 2 - 508.400390625 96 512 92.400390625 512 88 c 2 - 512 40 l 2 - 512 35.599609375 508.400390625 32 504 32 c 2 - 136.299804688 32 l 2 - 131.900390625 32 128.299804688 35.599609375 128.299804688 40 c 2 - 128.400390625 88 l 2 - 128.400390625 92.400390625 132 96 136.400390625 96 c 2 - 504 96 l 2 -504 0 m 2 - 508.400390625 0 512 -3.599609375 512 -8 c 2 - 512 -56 l 2 - 512 -60.400390625 508.400390625 -64 504 -64 c 2 - 136 -64 l 2 - 131.599609375 -64 128 -60.400390625 128 -56 c 2 - 128.099609375 -8 l 2 - 128.099609375 -3.599609375 131.700195312 0 136.099609375 0 c 2 - 504 0 l 2 -504 192 m 2 - 508.400390625 192 512 188.400390625 512 184 c 2 - 512 136 l 2 - 512 131.599609375 508.400390625 128 504 128 c 2 - 136.5 128 l 2 - 132.099609375 128 128.5 131.599609375 128.5 136 c 2 - 128.599609375 184 l 2 - 128.599609375 188.400390625 132.200195312 192 136.599609375 192 c 2 - 504 192 l 2 -610.5 331 m 2 - 628.299804688 323.5 640 306.099609375 640 286.700195312 c 2 - 640 -56 l 2 - 640 -60.400390625 636.400390625 -64 632 -64 c 2 - 552 -64 l 2 - 547.599609375 -64 544 -60.400390625 544 -56 c 2 - 544 192 l 2 - 544 209.599609375 529.400390625 224 511.400390625 224 c 2 - 128.599609375 224 l 2 - 110.599609375 224 96 209.599609375 96 192 c 2 - 96 -56 l 2 - 96 -60.400390625 92.400390625 -64 88 -64 c 2 - 8 -64 l 2 - 3.599609375 -64 0 -60.400390625 0 -56 c 2 - 0 286.700195312 l 2 - 0 306.099609375 11.7001953125 323.5 29.5 331 c 2 - 301.5 444.299804688 l 2 - 306.390625 446.329101562 314.655273438 447.974609375 319.950195312 447.974609375 c 0 - 325.244140625 447.974609375 333.509765625 446.329101562 338.400390625 444.299804688 c 2 - 610.5 331 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" w a r e h o u s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" W A R E H O U S E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" W a r e h o u s e -EndChar - -StartChar: weight -Encoding: 62614 62614 591 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 384 m 2 - 483.290039062 384 512 355.290039062 512 320 c 2 - 512 0 l 2 - 512 -35.2900390625 483.290039062 -64 448 -64 c 2 - 64 -64 l 2 - 28.7099609375 -64 0 -35.2900390625 0 0 c 2 - 0 320 l 2 - 0 355.290039062 28.7099609375 384 64 384 c 2 - 89.98046875 384 l 1 - 73.5595703125 355.719726562 64 322.990234375 64 288 c 0 - 64 182.129882812 150.129882812 96 256 96 c 0 - 361.870117188 96 448 182.129882812 448 288 c 0 - 448 322.990234375 438.440429688 355.719726562 422.01953125 384 c 1 - 448 384 l 2 -256 128 m 0 - 167.629882812 128 96 199.629882812 96 288 c 0 - 96 376.370117188 167.629882812 448 256 448 c 0 - 344.370117188 448 416 376.370117188 416 288 c 0 - 416 199.629882812 344.370117188 128 256 128 c 0 -255.700195312 279.940429688 m 1 - 233.759765625 279.76953125 216 261.98046875 216 240 c 0 - 216 217.91015625 233.91015625 200 256 200 c 0 - 278.08984375 200 296 217.91015625 296 240 c 0 - 296 250.549804688 291.73046875 260 285.049804688 267.16015625 c 1 - 318.719726562 345.709960938 l 2 - 322.190429688 353.8203125 318.4296875 363.23046875 310.309570312 366.709960938 c 0 - 302.219726562 370.219726562 292.780273438 366.469726562 289.280273438 358.299804688 c 2 - 255.700195312 279.940429688 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" w e i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" W e i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" W E I G H T -EndChar - -StartChar: x-ray -Encoding: 62615 62615 592 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -240 64 m 0 - 248.799804688 64 256 56.7998046875 256 48 c 0 - 256 39.2001953125 248.799804688 32 240 32 c 0 - 231.200195312 32 224 39.2001953125 224 48 c 0 - 224 56.7998046875 231.200195312 64 240 64 c 0 -400 32 m 0 - 391.200195312 32 384 39.2001953125 384 48 c 0 - 384 56.7998046875 391.200195312 64 400 64 c 0 - 408.799804688 64 416 56.7998046875 416 48 c 0 - 416 39.2001953125 408.799804688 32 400 32 c 0 -624 448 m 2 - 632.799804688 448 640 440.799804688 640 432 c 2 - 640 400 l 2 - 640 391.200195312 632.799804688 384 624 384 c 2 - 16 384 l 2 - 7.2001953125 384 0 391.200195312 0 400 c 2 - 0 432 l 2 - 0 440.799804688 7.2001953125 448 16 448 c 2 - 624 448 l 2 -624 0 m 2 - 632.799804688 0 640 -7.2001953125 640 -16 c 2 - 640 -48 l 2 - 640 -56.7998046875 632.799804688 -64 624 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 -16 l 2 - 0 -7.2001953125 7.2001953125 0 16 0 c 2 - 64 0 l 1 - 64 352 l 1 - 576 352 l 1 - 576 0 l 1 - 624 0 l 2 -480 200 m 2 - 480 216 l 2 - 480 220.400390625 476.400390625 224 472 224 c 2 - 336 224 l 1 - 336 256 l 1 - 440 256 l 2 - 444.400390625 256 448 259.599609375 448 264 c 2 - 448 280 l 2 - 448 284.400390625 444.400390625 288 440 288 c 2 - 336 288 l 1 - 336 312 l 2 - 336 316.400390625 332.400390625 320 328 320 c 2 - 312 320 l 2 - 307.599609375 320 304 316.400390625 304 312 c 2 - 304 288 l 1 - 200 288 l 2 - 195.599609375 288 192 284.400390625 192 280 c 2 - 192 264 l 2 - 192 259.599609375 195.599609375 256 200 256 c 2 - 304 256 l 1 - 304 224 l 1 - 168 224 l 2 - 163.599609375 224 160 220.400390625 160 216 c 2 - 160 200 l 2 - 160 195.599609375 163.599609375 192 168 192 c 2 - 304 192 l 1 - 304 160 l 1 - 200 160 l 2 - 195.599609375 160 192 156.400390625 192 152 c 2 - 192 136 l 2 - 192 131.599609375 195.599609375 128 200 128 c 2 - 304 128 l 1 - 304 96 l 1 - 240 96 l 2 - 213.5 96 192 74.5 192 48 c 0 - 192 21.5 213.5 0 240 0 c 0 - 266.5 0 288 21.5 288 48 c 2 - 288 64 l 1 - 352 64 l 1 - 352 48 l 2 - 352 21.5 373.5 0 400 0 c 0 - 426.5 0 448 21.5 448 48 c 0 - 448 74.5 426.5 96 400 96 c 2 - 336 96 l 1 - 336 128 l 1 - 440 128 l 2 - 444.400390625 128 448 131.599609375 448 136 c 2 - 448 152 l 2 - 448 156.400390625 444.400390625 160 440 160 c 2 - 336 160 l 1 - 336 192 l 1 - 472 192 l 2 - 476.400390625 192 480 195.599609375 480 200 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" x hyphen r a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" X hyphen R a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" X hyphen r a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" X hyphen R A Y -EndChar - -StartChar: box-open -Encoding: 62622 62622 593 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -425.700195312 192 m 0 - 430.200195312 192 434.700195312 192.599609375 439 193.900390625 c 2 - 576 233 l 1 - 576 55 l 2 - 576 40.400390625 566 27.599609375 551.799804688 24 c 2 - 335.400390625 -30.099609375 l 2 - 325.299804688 -32.599609375 314.599609375 -32.599609375 304.400390625 -30.099609375 c 2 - 88.2001953125 24 l 2 - 74 27.5 64 40.2998046875 64 55 c 2 - 64 233 l 1 - 201 193.799804688 l 2 - 205.299804688 192.5 209.799804688 191.900390625 214.299804688 191.900390625 c 0 - 231.200195312 191.900390625 247.099609375 200.900390625 255.799804688 215.400390625 c 2 - 320 322 l 1 - 384.299804688 215.400390625 l 2 - 392.900390625 201 408.799804688 192 425.700195312 192 c 0 -638.299804688 304.200195312 m 2 - 642.799804688 295 638 284 628.099609375 281.099609375 c 2 - 430.200195312 224.599609375 l 2 - 423.099609375 222.599609375 415.5 225.599609375 411.700195312 231.900390625 c 2 - 320 384 l 1 - 570.099609375 415.900390625 l 2 - 577 416.799804688 583.700195312 413.200195312 586.799804688 407 c 2 - 638.299804688 304.200195312 l 2 -53.2001953125 407 m 2 - 56.2998046875 413.200195312 62.900390625 416.700195312 69.7998046875 415.900390625 c 2 - 320 384 l 1 - 228.200195312 232 l 2 - 224.400390625 225.700195312 216.799804688 222.700195312 209.700195312 224.700195312 c 2 - 11.7998046875 281.200195312 l 2 - 2 284 -2.900390625 295 1.7001953125 304.200195312 c 2 - 53.2001953125 407 l 2 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" b o x hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B o x hyphen O p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B o x hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" B O X hyphen O P E N -EndChar - -StartChar: comment-dots -Encoding: 62637 62637 594 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 416 m 0 - 397.400390625 416 512 322.900390625 512 208 c 0 - 512 93.099609375 397.400390625 0 256 0 c 0 - 217.599609375 0 181.299804688 7.099609375 148.599609375 19.400390625 c 1 - 124 -0.2001953125 74.2998046875 -32 8 -32 c 0 - 4.7998046875 -32 2 -30.2001953125 0.7001953125 -27.2001953125 c 0 - -0.599609375 -24.2001953125 0 -20.7998046875 2.2001953125 -18.5 c 0 - 2.7001953125 -18 44.5 26.900390625 57 77.2998046875 c 1 - 21.400390625 113 0 158.400390625 0 208 c 0 - 0 322.900390625 114.599609375 416 256 416 c 0 -128 176 m 0 - 145.700195312 176 160 190.299804688 160 208 c 0 - 160 225.700195312 145.700195312 240 128 240 c 0 - 110.299804688 240 96 225.700195312 96 208 c 0 - 96 190.299804688 110.299804688 176 128 176 c 0 -256 176 m 0 - 273.700195312 176 288 190.299804688 288 208 c 0 - 288 225.700195312 273.700195312 240 256 240 c 0 - 238.299804688 240 224 225.700195312 224 208 c 0 - 224 190.299804688 238.299804688 176 256 176 c 0 -384 176 m 0 - 401.700195312 176 416 190.299804688 416 208 c 0 - 416 225.700195312 401.700195312 240 384 240 c 0 - 366.299804688 240 352 225.700195312 352 208 c 0 - 352 190.299804688 366.299804688 176 384 176 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" c o m m e n t hyphen d o t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C o m m e n t hyphen D o t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C o m m e n t hyphen d o t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C O M M E N T hyphen D O T S -EndChar - -StartChar: comment-slash -Encoding: 62643 62643 595 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -64 208 m 0 - 64 226.599609375 67.2998046875 244.5 72.900390625 261.599609375 c 1 - 398.400390625 10 l 1 - 373.700195312 3.599609375 347.400390625 0 320 0 c 0 - 281.599609375 0 245.299804688 7.099609375 212.599609375 19.400390625 c 1 - 188 -0.2001953125 138.299804688 -32 72 -32 c 0 - 68.7998046875 -32 66 -30.099609375 64.7001953125 -27.2001953125 c 0 - 63.400390625 -24.2001953125 64 -20.7998046875 66.2001953125 -18.5 c 0 - 66.7001953125 -17.900390625 108.400390625 27 121 77.2998046875 c 1 - 85.400390625 113 64 158.400390625 64 208 c 0 -633.799804688 -10.099609375 m 2 - 640.799804688 -15.5 642.099609375 -25.599609375 636.700195312 -32.400390625 c 2 - 617.099609375 -57.7001953125 l 2 - 611.599609375 -64.7001953125 601.599609375 -65.900390625 594.599609375 -60.5 c 2 - 6.2001953125 394.200195312 l 2 - -0.7998046875 399.599609375 -2 409.599609375 3.400390625 416.599609375 c 2 - 23 441.799804688 l 2 - 28.5 448.799804688 38.5 450 45.5 444.599609375 c 2 - 150.599609375 363.299804688 l 1 - 195.799804688 395.900390625 254.900390625 416 320 416 c 0 - 461.400390625 416 576 322.900390625 576 208 c 0 - 576 158.799804688 554.599609375 113.900390625 519.400390625 78.2998046875 c 1 - 633.799804688 -10.099609375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" c o m m e n t hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" C o m m e n t hyphen S l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" C o m m e n t hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" C O M M E N T hyphen S L A S H -EndChar - -StartChar: couch -Encoding: 62648 62648 596 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -160 224 m 2 - 160 259.299804688 131.299804688 288 96 288 c 2 - 64 288 l 1 - 64 341 107 384 160 384 c 2 - 480 384 l 2 - 533 384 576 341 576 288 c 1 - 544 288 l 2 - 508.700195312 288 480 259.299804688 480 224 c 2 - 480 160 l 1 - 160 160 l 1 - 160 224 l 2 -576 256 m 2 - 611.299804688 256 640 227.299804688 640 192 c 0 - 640 168.400390625 627 148 608 136.900390625 c 1 - 608 16 l 2 - 608 7.2001953125 600.799804688 0 592 0 c 2 - 528 0 l 2 - 519.200195312 0 512 7.2001953125 512 16 c 2 - 512 32 l 1 - 128 32 l 1 - 128 16 l 2 - 128 7.2001953125 120.799804688 0 112 0 c 2 - 48 0 l 2 - 39.2001953125 0 32 7.2001953125 32 16 c 2 - 32 136.900390625 l 1 - 13 148 0 168.400390625 0 192 c 0 - 0 227.299804688 28.7001953125 256 64 256 c 2 - 96 256 l 2 - 113.700195312 256 128 241.700195312 128 224 c 2 - 128 128 l 1 - 512 128 l 1 - 512 224 l 2 - 512 241.700195312 526.299804688 256 544 256 c 2 - 576 256 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" c o u c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" C o u c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" C O U C H -EndChar - -StartChar: donate -Encoding: 62649 62649 597 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 32 m 0 - 141.099609375 32 48 125.099609375 48 240 c 0 - 48 354.900390625 141.099609375 448 256 448 c 0 - 370.900390625 448 464 354.900390625 464 240 c 0 - 464 125.099609375 370.900390625 32 256 32 c 0 -233.799804688 350.599609375 m 1 - 201.099609375 349.700195312 174.799804688 322.200195312 174.700195312 288.200195312 c 0 - 174.700195312 260.5 192.700195312 235.799804688 218.400390625 228.099609375 c 2 - 280.700195312 209.400390625 l 2 - 287.799804688 207.299804688 292.799804688 200 292.799804688 191.799804688 c 0 - 292.799804688 181.700195312 285.5 173.5 276.5 173.5 c 2 - 237.599609375 173.5 l 2 - 231.200195312 173.5 225.200195312 175.200195312 219.799804688 178.599609375 c 0 - 215.299804688 181.400390625 209.599609375 181.299804688 205.799804688 177.599609375 c 2 - 189.5 162.099609375 l 2 - 184.5 157.299804688 185.099609375 149.099609375 190.700195312 145 c 0 - 203.200195312 135.700195312 218.200195312 130.400390625 233.700195312 129.599609375 c 1 - 233.700195312 112.599609375 l 2 - 233.700195312 103.400390625 241.099609375 96 250.299804688 96 c 2 - 261.400390625 96 l 2 - 270.599609375 96 278 103.400390625 278 112.599609375 c 2 - 278 129.400390625 l 1 - 310.700195312 130.299804688 337.099609375 157.799804688 337.099609375 191.799804688 c 0 - 337.099609375 219.5 319.099609375 244.200195312 293.400390625 251.900390625 c 2 - 231.099609375 270.599609375 l 2 - 224 272.700195312 219 280 219 288.200195312 c 0 - 219 298.299804688 226.299804688 306.5 235.299804688 306.5 c 2 - 274.200195312 306.5 l 2 - 280.599609375 306.5 286.599609375 304.799804688 292 301.400390625 c 0 - 296.5 298.599609375 302.200195312 298.700195312 306 302.400390625 c 2 - 322.299804688 317.900390625 l 2 - 327.299804688 322.700195312 326.700195312 330.900390625 321.099609375 335 c 0 - 308.599609375 344.299804688 293.599609375 349.599609375 278.099609375 350.400390625 c 1 - 278.099609375 367.400390625 l 2 - 278.099609375 376.599609375 270.700195312 384 261.5 384 c 2 - 250.400390625 384 l 2 - 241.200195312 384 233.799804688 376.599609375 233.799804688 367.400390625 c 2 - 233.799804688 350.599609375 l 1 -480 96 m 2 - 497.700195312 96 512 81.7001953125 512 64 c 2 - 512 -32 l 2 - 512 -49.7001953125 497.700195312 -64 480 -64 c 2 - 32 -64 l 2 - 14.2998046875 -64 0 -49.7001953125 0 -32 c 2 - 0 64 l 2 - 0 81.7001953125 14.2998046875 96 32 96 c 2 - 64.400390625 96 l 1 - 84.099609375 70 109 48.2998046875 137.400390625 32 c 1 - 73.599609375 32 l 2 - 68.2998046875 32 64 28.400390625 64 24 c 2 - 64 8 l 2 - 64 3.599609375 68.2998046875 0 73.599609375 0 c 2 - 438.299804688 0 l 2 - 443.599609375 0 447.900390625 3.599609375 447.900390625 8 c 2 - 447.900390625 24 l 2 - 447.900390625 28.400390625 443.599609375 32 438.299804688 32 c 2 - 374.5 32 l 1 - 402.900390625 48.2998046875 427.900390625 70 447.5 96 c 1 - 480 96 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" d o n a t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" D o n a t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" D O N A T E -EndChar - -StartChar: dove -Encoding: 62650 62650 598 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 280.799804688 m 1 - 237.200195312 291.299804688 191.400390625 317.599609375 157.200195312 355.900390625 c 1 - 168.400390625 388.299804688 185 417.5 206.099609375 442.400390625 c 0 - 214.900390625 452.900390625 231.799804688 447.599609375 233.900390625 434.099609375 c 0 - 240.900390625 388.200195312 259.799804688 345.200195312 288 308.900390625 c 1 - 288 280.799804688 l 1 -400 384 m 2 - 512 384 l 1 - 480 320 l 1 - 480 159.900390625 l 2 - 480 71.5 408.400390625 0 320 0 c 2 - 243.099609375 0 l 1 - 177.900390625 -56.099609375 l 2 - 171.799804688 -61.400390625 163.799804688 -64.2998046875 155.799804688 -64 c 0 - 63 -60.2001953125 20 -14.599609375 2.599609375 12.2998046875 c 0 - -3.400390625 21.599609375 1.400390625 34 12.099609375 36.7001953125 c 2 - 156 72.7001953125 l 1 - 143.200195312 82.2998046875 130.299804688 92.7998046875 117.099609375 105.5 c 0 - 66.099609375 154.5 32 220.599609375 32 291.400390625 c 0 - 32 332.799804688 41.400390625 372 58 407.099609375 c 0 - 63.7998046875 419.400390625 81.5 418.700195312 87 406.200195312 c 0 - 127 315 215.599609375 250.700195312 320 244.5 c 1 - 320 303.900390625 l 2 - 320 348.099609375 355.799804688 384 400 384 c 2 -400 287.900390625 m 0 - 408.799804688 287.900390625 416 295.099609375 416 303.900390625 c 0 - 416 312.700195312 408.799804688 319.900390625 400 319.900390625 c 0 - 391.200195312 319.900390625 384 312.700195312 384 303.900390625 c 0 - 384 295.099609375 391.200195312 287.900390625 400 287.900390625 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" d o v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" D o v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" D O V E -EndChar - -StartChar: hand-holding -Encoding: 62653 62653 599 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -565.299804688 119.900390625 m 0 - 580.400390625 106.299804688 579.200195312 83.099609375 564 71 c 2 - 412.799804688 -50 l 2 - 401.400390625 -59.099609375 387.299804688 -64 372.799804688 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 48 l 2 - 0 56.7998046875 7.2001953125 64 16 64 c 2 - 71.400390625 64 l 1 - 117.900390625 101.700195312 l 2 - 138.900390625 118.700195312 165 128 192 128 c 2 - 352 128 l 2 - 371.5 128 386.900390625 110.599609375 383.599609375 90.599609375 c 0 - 381 74.900390625 366.200195312 64 350.299804688 64 c 2 - 272 64 l 2 - 263.200195312 64 256 56.7998046875 256 48 c 0 - 256 39.2001953125 263.200195312 32 272 32 c 2 - 390.299804688 32 l 2 - 404.900390625 32 419 36.900390625 430.299804688 46 c 2 - 522.700195312 119.900390625 l 2 - 535.099609375 129.900390625 553.5 130.599609375 565.299804688 119.900390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" h a n d hyphen h o l d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" H a n d hyphen H o l d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" H a n d hyphen h o l d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" H A N D hyphen H O L D I N G -EndChar - -StartChar: hand-holding-heart -Encoding: 62654 62654 600 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -275.299804688 197.5 m 2 - 166.400390625 311.700195312 l 2 - 134.799804688 344.900390625 136.700195312 399.900390625 172 430.5 c 0 - 202.799804688 457.200195312 248.700195312 452.400390625 276.900390625 422.700195312 c 2 - 288 411.099609375 l 1 - 299.200195312 422.799804688 l 2 - 327.400390625 452.400390625 373.299804688 457.200195312 404.099609375 430.5 c 0 - 439.5 399.900390625 441.299804688 344.900390625 409.700195312 311.700195312 c 2 - 300.799804688 197.5 l 2 - 293.700195312 190.099609375 282.299804688 190.099609375 275.299804688 197.5 c 2 -565.299804688 119.900390625 m 0 - 580.400390625 106.299804688 579.200195312 83.099609375 564 71 c 2 - 412.799804688 -50 l 2 - 401.400390625 -59.099609375 387.299804688 -64 372.799804688 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 48 l 2 - 0 56.7998046875 7.2001953125 64 16 64 c 2 - 71.400390625 64 l 1 - 117.900390625 101.700195312 l 2 - 138.900390625 118.700195312 165 128 192 128 c 2 - 352 128 l 2 - 371.5 128 386.900390625 110.599609375 383.599609375 90.599609375 c 0 - 381 74.900390625 366.200195312 64 350.299804688 64 c 2 - 272 64 l 2 - 263.200195312 64 256 56.7998046875 256 48 c 0 - 256 39.2001953125 263.200195312 32 272 32 c 2 - 390.299804688 32 l 2 - 404.900390625 32 419 36.900390625 430.299804688 46 c 2 - 522.700195312 119.900390625 l 2 - 535.099609375 129.900390625 553.5 130.599609375 565.299804688 119.900390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" h a n d hyphen h o l d i n g hyphen h e a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" H a n d hyphen H o l d i n g hyphen H e a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" H a n d hyphen h o l d i n g hyphen h e a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" H A N D hyphen H O L D I N G hyphen H E A R T -EndChar - -StartChar: hand-holding-usd -Encoding: 62656 62656 601 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -271.059570312 303.700195312 m 2 - 247 310.099609375 227.629882812 328.400390625 224.490234375 351.400390625 c 0 - 220.150390625 383.400390625 245.110351562 410.799804688 278 414.400390625 c 1 - 278 432 l 2 - 278 440.799804688 285.8203125 448 295.370117188 448 c 2 - 312.740234375 448 l 2 - 322.290039062 448 330.110351562 440.799804688 330.110351562 432 c 2 - 330.110351562 414.280273438 l 1 - 340.342773438 413.224609375 355.80859375 408.072265625 364.629882812 402.780273438 c 0 - 367.684570312 400.940429688 370.1640625 396.553710938 370.1640625 392.98828125 c 0 - 370.1640625 391.203125 369.405273438 388.520507812 368.469726562 387 c 0 - 367.979492188 386.19140625 367.0078125 385.02734375 366.299804688 384.400390625 c 2 - 347.299804688 366.900390625 l 2 - 343.280273438 363.200195312 337.23046875 362.700195312 332 364.900390625 c 0 - 329.018554688 366.109375 323.987304688 367.094726562 320.76953125 367.099609375 c 2 - 285.169921875 367.099609375 l 2 - 280.139648438 367.099609375 276.049804688 363.299804688 276.049804688 358.700195312 c 0 - 276.162109375 355.05859375 279.1328125 351.4296875 282.6796875 350.599609375 c 2 - 336.950195312 336.299804688 l 2 - 361.049804688 329.900390625 380.360351562 311.599609375 383.509765625 288.599609375 c 0 - 387.849609375 256.599609375 362.940429688 229.200195312 330.009765625 225.599609375 c 1 - 330.009765625 208 l 2 - 330.009765625 199.200195312 322.1796875 192 312.629882812 192 c 2 - 295.259765625 192 l 2 - 285.719726562 192 277.889648438 199.200195312 277.889648438 208 c 2 - 277.889648438 225.700195312 l 1 - 267.659179688 226.755859375 252.19921875 231.907226562 243.379882812 237.200195312 c 0 - 240.31640625 239.036132812 237.831054688 243.423828125 237.831054688 246.995117188 c 0 - 237.831054688 248.765625 238.578125 251.428710938 239.5 252.940429688 c 0 - 240.010742188 253.767578125 241.018554688 254.959960938 241.75 255.599609375 c 2 - 260.75 273.099609375 l 2 - 264.76953125 276.799804688 270.809570312 277.299804688 276.049804688 275.099609375 c 0 - 279.020507812 273.89453125 284.034179688 272.909179688 287.240234375 272.900390625 c 2 - 322.83984375 272.900390625 l 2 - 327.870117188 272.900390625 331.959960938 276.700195312 331.959960938 281.299804688 c 0 - 331.84765625 284.94140625 328.877929688 288.5703125 325.330078125 289.400390625 c 2 - 271.059570312 303.700195312 l 2 -565.26953125 119.900390625 m 0 - 571.193359375 114.630859375 576.012695312 103.918945312 576.012695312 95.990234375 c 0 - 576.012695312 87.4990234375 570.630859375 76.3037109375 564 71 c 2 - 412.76953125 -50 l 2 - 403.09765625 -57.7275390625 385.200195312 -64 372.8203125 -64 c 2 - 372.76953125 -64 l 1 - 16 -64 l 2 - 7.16796875 -64 0 -56.83203125 0 -48 c 2 - 0 48 l 2 - 0 56.83203125 7.16796875 64 16 64 c 2 - 71.400390625 64 l 1 - 117.900390625 101.709960938 l 2 - 135.779296875 116.215820312 168.9765625 127.994140625 192 128 c 2 - 352 128 l 1 - 352 128 l 1 - 369.630859375 128 383.966796875 113.690429688 384 96.0595703125 c 2 - 384 95.939453125 l 2 - 384 94.455078125 383.793945312 92.0625 383.540039062 90.599609375 c 0 - 381 74.900390625 366.190429688 64 350.290039062 64 c 2 - 272 64 l 2 - 263.16796875 64 256 56.83203125 256 48 c 0 - 256 39.16796875 263.16796875 32 272 32 c 2 - 390.26953125 32 l 1 - 390.446289062 32 l 2 - 402.795898438 32 420.63671875 38.271484375 430.26953125 46 c 2 - 522.669921875 119.900390625 l 2 - 535.0703125 129.900390625 553.469726562 130.599609375 565.26953125 119.900390625 c 0 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" h a n d hyphen h o l d i n g hyphen u s d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" H a n d hyphen H o l d i n g hyphen U s d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" H a n d hyphen h o l d i n g hyphen u s d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" H A N D hyphen H O L D I N G hyphen U S D -EndChar - -StartChar: hands -Encoding: 62658 62658 602 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -204.799804688 217.599609375 m 2 - 262.400390625 140.799804688 l 2 - 279 118.599609375 288 91.7001953125 288 64 c 2 - 288 -48 l 2 - 288 -56.7998046875 280.799804688 -64 272 -64 c 2 - 140.299804688 -64 l 2 - 133.099609375 -64 126.799804688 -59.2998046875 125 -52.400390625 c 0 - 123 -44.599609375 119.599609375 -37.2001953125 114.599609375 -30.7001953125 c 2 - 10.5 103.599609375 l 2 - 3.7001953125 112.099609375 0 122.700195312 0 133.599609375 c 2 - 0 352 l 2 - 0 369.700195312 14.2998046875 384 32 384 c 0 - 49.7001953125 384 64 369.700195312 64 352 c 2 - 64 203.599609375 l 1 - 153.799804688 95.7998046875 l 2 - 159.799804688 88.5 170.700195312 88 177.400390625 94.7001953125 c 2 - 190.200195312 107.5 l 2 - 195.799804688 113.099609375 196.5 122 191.700195312 128.400390625 c 2 - 153.599609375 179.200195312 l 2 - 143 193.299804688 145.900390625 213.400390625 160 224 c 0 - 174.099609375 234.599609375 194.200195312 231.700195312 204.799804688 217.599609375 c 2 -608 384 m 0 - 625.700195312 384 640 369.700195312 640 352 c 2 - 640 133.599609375 l 2 - 640 122.700195312 636.299804688 112.099609375 629.5 103.599609375 c 2 - 525.400390625 -30.7001953125 l 2 - 520.400390625 -37.2001953125 517 -44.599609375 515 -52.400390625 c 0 - 513.200195312 -59.2998046875 506.799804688 -64 499.700195312 -64 c 2 - 368 -64 l 2 - 359.200195312 -64 352 -56.7998046875 352 -48 c 2 - 352 64 l 2 - 352 91.7001953125 361 118.599609375 377.599609375 140.799804688 c 2 - 435.200195312 217.599609375 l 2 - 445.799804688 231.700195312 465.900390625 234.599609375 480 224 c 0 - 494.099609375 213.400390625 497 193.299804688 486.400390625 179.200195312 c 2 - 448.299804688 128.400390625 l 2 - 443.5 122 444.200195312 113.099609375 449.799804688 107.5 c 2 - 462.599609375 94.7001953125 l 2 - 469.200195312 88.099609375 480.200195312 88.599609375 486.200195312 95.7998046875 c 2 - 576 203.599609375 l 1 - 576 352 l 2 - 576 369.700195312 590.299804688 384 608 384 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" h a n d s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" H a n d s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" H A N D S -EndChar - -StartChar: hands-helping -Encoding: 62660 62660 603 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -488 256 m 2 - 501.299804688 256 512 245.299804688 512 232 c 2 - 512 184 l 2 - 512 170.700195312 501.299804688 160 488 160 c 2 - 480 160 l 1 - 480 96 l 2 - 480 78.2998046875 465.700195312 64 448 64 c 2 - 432 64 l 1 - 432 28.7001953125 403.299804688 0 368 0 c 2 - 231.400390625 0 l 1 - 128 -59.7001953125 l 2 - 112.700195312 -68.5 93.099609375 -63.2998046875 84.2998046875 -48 c 2 - 4.2998046875 90.599609375 l 2 - -4.599609375 105.900390625 0.7001953125 125.5 16 134.299804688 c 2 - 96 180.5 l 1 - 96 227.799804688 l 2 - 96 250.200195312 107.799804688 271.099609375 127.099609375 282.599609375 c 2 - 192 321.599609375 l 1 - 192 200 l 2 - 192 160.299804688 224.299804688 128 264 128 c 0 - 303.700195312 128 336 160.299804688 336 200 c 2 - 336 256 l 1 - 488 256 l 2 -635.700195312 293.400390625 m 2 - 644.5 278.099609375 639.299804688 258.599609375 624 249.700195312 c 2 - 544 203.5 l 1 - 544 232 l 2 - 544 262.900390625 518.900390625 288 488 288 c 2 - 304 288 l 1 - 304 200 l 2 - 304 177.900390625 286.099609375 160 264 160 c 0 - 241.900390625 160 224 177.900390625 224 200 c 2 - 224 326.299804688 l 2 - 224 337.299804688 229.599609375 347.599609375 239 353.400390625 c 2 - 272.5 374.299804688 l 2 - 282.700195312 380.599609375 294.400390625 384 306.400390625 384 c 2 - 408.599609375 384 l 1 - 512 443.700195312 l 2 - 527.299804688 452.5 546.900390625 447.299804688 555.700195312 432 c 2 - 635.700195312 293.400390625 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" h a n d s hyphen h e l p i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" H a n d s hyphen H e l p i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" H a n d s hyphen h e l p i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" H A N D S hyphen H E L P I N G -EndChar - -StartChar: parachute-box -Encoding: 62669 62669 604 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -511.900390625 273 m 0 - 513 263.799804688 505.099609375 256 495.799804688 256 c 2 - 487.099609375 256 l 1 - 350.299804688 104.099609375 l 2 - 351 101.400390625 351.900390625 98.900390625 351.900390625 96 c 2 - 351.900390625 -32 l 2 - 351.900390625 -49.7001953125 337.599609375 -64 319.900390625 -64 c 2 - 191.900390625 -64 l 2 - 174.200195312 -64 159.900390625 -49.7001953125 159.900390625 -32 c 2 - 159.900390625 96 l 2 - 159.900390625 98.900390625 160.799804688 101.5 161.5 104.099609375 c 2 - 24.7998046875 256 l 1 - 16.099609375 256 l 2 - 6.900390625 256 -1 263.900390625 0.099609375 273 c 0 - 9.2001953125 348.5 78.5 405.299804688 158.400390625 431.700195312 c 1 - 122 392.299804688 96 331.099609375 96 256 c 1 - 67.900390625 256 l 1 - 184.5 126.5 l 2 - 187 127.099609375 189.299804688 128 192 128 c 2 - 240 128 l 1 - 240 256 l 1 - 128 256 l 1 - 128 371.200195312 196.900390625 448 256 448 c 0 - 315.099609375 448 384 371.200195312 384 256 c 1 - 272 256 l 1 - 272 128 l 1 - 320 128 l 2 - 322.700195312 128 325 127.099609375 327.5 126.5 c 2 - 444.099609375 256 l 1 - 416 256 l 1 - 416 331.099609375 390 392.299804688 353.599609375 431.700195312 c 1 - 433.5 405.400390625 502.799804688 348.599609375 511.900390625 273 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" p a r a c h u t e hyphen b o x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" P a r a c h u t e hyphen b o x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" P A R A C H U T E hyphen B O X -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" P a r a c h u t e hyphen B o x -EndChar - -StartChar: people-carry -Encoding: 62670 62670 605 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128 352 m 0 - 101.5 352 80 373.5 80 400 c 0 - 80 426.5 101.5 448 128 448 c 0 - 154.5 448 176 426.5 176 400 c 0 - 176 373.5 154.5 352 128 352 c 0 -512 352 m 0 - 485.5 352 464 373.5 464 400 c 0 - 464 426.5 485.5 448 512 448 c 0 - 538.5 448 560 426.5 560 400 c 0 - 560 373.5 538.5 352 512 352 c 0 -637.700195312 -20.099609375 m 2 - 644.299804688 -36.5 636.299804688 -55.099609375 619.900390625 -61.7001953125 c 0 - 616 -63.2998046875 612 -64 608 -64 c 0 - 595.299804688 -64 583.299804688 -56.400390625 578.299804688 -43.900390625 c 2 - 550.599609375 25.2998046875 l 1 - 552.599609375 43.5 l 1 - 593.700195312 89.900390625 l 1 - 637.700195312 -20.099609375 l 2 -603.5 189.700195312 m 2 - 608.099609375 169.700195312 602.700195312 148.5 589.099609375 133 c 2 - 521.900390625 57.099609375 l 1 - 511.799804688 -35.5 l 2 - 510 -51.900390625 496.099609375 -64 480 -64 c 0 - 478.799804688 -64 477.700195312 -63.900390625 476.5 -63.7998046875 c 0 - 459 -61.900390625 446.299804688 -46.099609375 448.200195312 -28.5 c 2 - 458.299804688 64.2998046875 l 2 - 459.799804688 77.2998046875 465.200195312 89.400390625 473.900390625 99.2998046875 c 2 - 517.200195312 148.299804688 l 1 - 499.599609375 218.599609375 l 1 - 492.799804688 198.200195312 l 2 - 488.700195312 185.599609375 480.900390625 174.799804688 468.299804688 165.599609375 c 2 - 417.200195312 133.099609375 l 2 - 412.599609375 130.200195312 405.099609375 128.5 400 128.099609375 c 2 - 240 128.099609375 l 2 - 234.900390625 128.5 227.400390625 130.200195312 222.799804688 133.099609375 c 2 - 171.700195312 165.599609375 l 2 - 159.099609375 174.799804688 151.299804688 185.700195312 147.200195312 198.200195312 c 2 - 140.400390625 218.599609375 l 1 - 122.799804688 148.299804688 l 1 - 166.099609375 99.2998046875 l 2 - 174.799804688 89.400390625 180.200195312 77.2998046875 181.700195312 64.2998046875 c 2 - 191.799804688 -28.5 l 2 - 193.700195312 -46.099609375 181.099609375 -61.900390625 163.5 -63.7998046875 c 0 - 162.299804688 -63.900390625 161.200195312 -64 160 -64 c 0 - 143.799804688 -64 130 -51.7998046875 128.200195312 -35.5 c 2 - 118.099609375 57.099609375 l 1 - 50.900390625 133 l 2 - 37.2001953125 148.5 31.900390625 169.700195312 36.5 189.700195312 c 2 - 54.900390625 269.900390625 l 2 - 59.5 289.900390625 73.5 306.700195312 92.400390625 314.799804688 c 0 - 110.900390625 322.799804688 131.299804688 321.5 148.5 311.5 c 0 - 171.200195312 298.099609375 188.299804688 277.099609375 196.599609375 252.099609375 c 2 - 207.900390625 218.200195312 l 1 - 224 208 l 1 - 224 304 l 2 - 224 312.799804688 231.200195312 320 240 320 c 2 - 400 320 l 2 - 408.799804688 320 416 312.799804688 416 304 c 2 - 416 208 l 1 - 432 218.200195312 l 1 - 443.299804688 252.099609375 l 2 - 451.700195312 277 468.700195312 298.099609375 491.400390625 311.5 c 0 - 508.5 321.5 529 322.799804688 547.5 314.799804688 c 0 - 566.400390625 306.700195312 580.400390625 289.900390625 585 269.900390625 c 2 - 603.5 189.700195312 l 2 -46.2998046875 89.900390625 m 1 - 87.400390625 43.5 l 1 - 89.400390625 25.2998046875 l 1 - 61.7001953125 -43.900390625 l 2 - 55.2001953125 -60 36.900390625 -68.2998046875 20.099609375 -61.7001953125 c 0 - 3.7001953125 -55.099609375 -4.2998046875 -36.5 2.2998046875 -20.099609375 c 2 - 46.2998046875 89.900390625 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" p e o p l e hyphen c a r r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" P e o p l e hyphen C a r r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" P e o p l e hyphen c a r r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" P E O P L E hyphen C A R R Y -EndChar - -StartChar: piggy-bank -Encoding: 62675 62675 606 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -560 224 m 2 - 568.799804688 224 576 216.799804688 576 208 c 2 - 576 80 l 2 - 576 71.2001953125 568.799804688 64 560 64 c 2 - 511.299804688 64 l 1 - 502.299804688 52.099609375 491.799804688 41.599609375 480 32.7001953125 c 1 - 480 -48 l 2 - 480 -56.7998046875 472.799804688 -64 464 -64 c 2 - 400 -64 l 2 - 391.200195312 -64 384 -56.7998046875 384 -48 c 2 - 384 0 l 1 - 256 0 l 1 - 256 -48 l 2 - 256 -56.7998046875 248.799804688 -64 240 -64 c 2 - 176 -64 l 2 - 167.200195312 -64 160 -56.7998046875 160 -48 c 2 - 160 32.7001953125 l 1 - 121.400390625 61.900390625 96 107.799804688 96 160 c 1 - 56 160 l 2 - 22.7001953125 160 -3.900390625 189.200195312 0.5 223.400390625 c 0 - 4.099609375 251.599609375 29.5 272 58 272 c 0 - 61.2998046875 272 64 269.299804688 64 266 c 2 - 64 246 l 2 - 64 242.700195312 61.2998046875 240 58 240 c 2 - 57 240 l 2 - 45.400390625 240 34.7001953125 232.200195312 32.5 220.799804688 c 0 - 29.5 205.5 41.2001953125 192 56 192 c 2 - 99.2001953125 192 l 1 - 114.099609375 265 178.599609375 320 256 320 c 2 - 384 320 l 2 - 391.900390625 320 399.400390625 318.799804688 407 317.700195312 c 1 - 424.599609375 338.5 450.599609375 352 480 352 c 2 - 512 352 l 1 - 493.099609375 276.5 l 1 - 508.900390625 261.700195312 521.700195312 244 530.5 224 c 1 - 560 224 l 2 -432 160 m 0 - 440.799804688 160 448 167.200195312 448 176 c 0 - 448 184.799804688 440.799804688 192 432 192 c 0 - 423.200195312 192 416 184.799804688 416 176 c 0 - 416 167.200195312 423.200195312 160 432 160 c 0 -256 352 m 2 - 239.599609375 352 223.799804688 349.700195312 208.599609375 345.799804688 c 1 - 208.5 347.900390625 208 349.900390625 208 352 c 0 - 208 405 251 448 304 448 c 0 - 357 448 400 405 400 352 c 0 - 400 351.700195312 399.900390625 351.5 399.900390625 351.200195312 c 1 - 394.700195312 351.599609375 389.400390625 352 384 352 c 2 - 256 352 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" p i g g y hyphen b a n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" P i g g y hyphen B a n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" P i g g y hyphen b a n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" P I G G Y hyphen B A N K -EndChar - -StartChar: ribbon -Encoding: 62678 62678 607 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -6.099609375 3.7001953125 m 2 - 123.299804688 133.700195312 l 1 - 202.5 45.7998046875 l 1 - 110.700195312 -56.099609375 l 2 - 102.700195312 -64.900390625 89.2998046875 -66.599609375 79.400390625 -59.900390625 c 2 - 10.599609375 -32 l 2 - -1.400390625 -23.900390625 -3.5 -7.099609375 6.099609375 3.7001953125 c 2 -441.900390625 3.7001953125 m 2 - 451.599609375 -7.099609375 449.5 -23.900390625 437.599609375 -31.900390625 c 2 - 368.799804688 -59.7998046875 l 2 - 358.900390625 -66.5 345.5 -64.900390625 337.5 -56 c 2 - 89.400390625 219.299804688 l 2 - 40.7998046875 273.099609375 76.400390625 332.799804688 77.900390625 335.299804688 c 2 - 121.5 408.5 l 2 - 125.799804688 415.700195312 131.400390625 421.799804688 138.299804688 426.5 c 0 - 182.299804688 456.200195312 269 454.099609375 309.700195312 426.5 c 0 - 316.599609375 421.799804688 322.200195312 415.700195312 326.5 408.5 c 2 - 370.200195312 335 l 2 - 392.099609375 298.099609375 387.5 251.400390625 358.799804688 219.5 c 2 - 324.599609375 181.5 l 1 - 245.5 269.200195312 l 1 - 245.5 269.200195312 298.200195312 328.200195312 301.5 333.799804688 c 1 - 286.099609375 342.200195312 261.299804688 351.700195312 224 351.700195312 c 0 - 186.700195312 351.700195312 161.900390625 342.200195312 146.5 333.799804688 c 1 - 149.900390625 328.299804688 441.900390625 3.7001953125 441.900390625 3.7001953125 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" r i b b o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" R i b b o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" R I B B O N -EndChar - -StartChar: route -Encoding: 62679 62679 608 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 128 m 2 - 468.900390625 128 512 84.900390625 512 32 c 0 - 512 -20.900390625 468.900390625 -64 416 -64 c 2 - 138.200195312 -64 l 1 - 151.700195312 -47.7001953125 169.5 -24.7998046875 185.5 0 c 1 - 416 0 l 2 - 433.599609375 0 448 14.400390625 448 32 c 0 - 448 49.599609375 433.599609375 64 416 64 c 2 - 320 64 l 2 - 267.099609375 64 224 107.099609375 224 160 c 0 - 224 212.900390625 267.099609375 256 320 256 c 2 - 365.299804688 256 l 1 - 342.200195312 288.599609375 320 326.5 320 352 c 0 - 320 405 363 448 416 448 c 0 - 469 448 512 405 512 352 c 0 - 512 299 416 192 416 192 c 1 - 320 192 l 2 - 302.400390625 192 288 177.599609375 288 160 c 0 - 288 142.400390625 302.400390625 128 320 128 c 2 - 416 128 l 2 -416 384 m 0 - 398.299804688 384 384 369.700195312 384 352 c 0 - 384 334.299804688 398.299804688 320 416 320 c 0 - 433.700195312 320 448 334.299804688 448 352 c 0 - 448 369.700195312 433.700195312 384 416 384 c 0 -96 192 m 0 - 149 192 192 149 192 96 c 0 - 192 43 96 -64 96 -64 c 1 - 96 -64 0 43 0 96 c 0 - 0 149 43 192 96 192 c 0 -96 64 m 0 - 113.700195312 64 128 78.2998046875 128 96 c 0 - 128 113.700195312 113.700195312 128 96 128 c 0 - 78.2998046875 128 64 113.700195312 64 96 c 0 - 64 78.2998046875 78.2998046875 64 96 64 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" r o u t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" R o u t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" R O U T E -EndChar - -StartChar: seedling -Encoding: 62680 62680 609 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -64 352 m 2 - 187.700195312 352 288 251.700195312 288 128 c 2 - 288 -16 l 2 - 288 -24.7998046875 280.799804688 -32 272 -32 c 2 - 240 -32 l 2 - 231.200195312 -32 224 -24.7998046875 224 -16 c 2 - 224 128 l 1 - 100.299804688 128 0 228.299804688 0 352 c 1 - 64 352 l 2 -448 416 m 2 - 512 416 l 1 - 512 300.099609375 424 204.900390625 311.299804688 193.200195312 c 1 - 300.5 233.900390625 280 270.599609375 252.299804688 300.799804688 c 1 - 290.599609375 369.5 363.799804688 416 448 416 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" s e e d l i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" S E E D L I N G -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" S e e d l i n g -EndChar - -StartChar: sign -Encoding: 62681 62681 610 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 384 m 2 - 504.799804688 384 512 376.799804688 512 368 c 2 - 512 336 l 2 - 512 327.200195312 504.799804688 320 496 320 c 2 - 128 320 l 1 - 128 -48 l 2 - 128 -56.7998046875 120.799804688 -64 112 -64 c 2 - 80 -64 l 2 - 71.2001953125 -64 64 -56.7998046875 64 -48 c 2 - 64 320 l 1 - 16 320 l 2 - 7.2001953125 320 0 327.200195312 0 336 c 2 - 0 368 l 2 - 0 376.799804688 7.2001953125 384 16 384 c 2 - 64 384 l 1 - 64 432 l 2 - 64 440.799804688 71.2001953125 448 80 448 c 2 - 112 448 l 2 - 120.799804688 448 128 440.799804688 128 432 c 2 - 128 384 l 1 - 496 384 l 2 -160 64 m 1 - 160 288 l 1 - 480 288 l 1 - 480 64 l 1 - 160 64 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" s i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S i g n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S I G N -EndChar - -StartChar: smile-wink -Encoding: 62682 62682 611 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 192 m 0 - 0 329 111 440 248 440 c 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 -200 240 m 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 - 185.700195312 208 200 222.299804688 200 240 c 0 -358.5 223.5 m 2 - 368.200195312 215 l 2 - 376.599609375 207.5 389.700195312 214.700195312 388 225.799804688 c 0 - 384 251 353.799804688 267.900390625 328.099609375 267.900390625 c 0 - 302.400390625 267.900390625 272.200195312 251 268.200195312 225.799804688 c 0 - 266.400390625 214.599609375 279.700195312 207.599609375 288 215 c 2 - 297.5 223.5 l 2 - 312.299804688 236.700195312 343.700195312 236.700195312 358.5 223.5 c 2 -157.799804688 122.200195312 m 0 - 144.400390625 138.5 119.700195312 118.099609375 133.200195312 101.799804688 c 0 - 161.700195312 67.599609375 203.5 48 248 48 c 0 - 292.5 48 334.299804688 67.599609375 362.799804688 101.700195312 c 0 - 376.299804688 118 351.799804688 138.400390625 338.200195312 122.200195312 c 0 - 315.799804688 95.400390625 283 80 248 80 c 0 - 213 80 180.200195312 95.2998046875 157.799804688 122.200195312 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" s m i l e hyphen w i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" S M I L E hyphen W I N K -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" S m i l e hyphen W i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" S m i l e hyphen w i n k -EndChar - -StartChar: tape -Encoding: 62683 62683 612 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 256 m 0 - 259.299804688 256 288 227.299804688 288 192 c 0 - 288 156.700195312 259.299804688 128 224 128 c 0 - 188.700195312 128 160 156.700195312 160 192 c 0 - 160 227.299804688 188.700195312 256 224 256 c 0 -624 32 m 2 - 632.799804688 32 640 24.7998046875 640 16 c 2 - 640 -16 l 2 - 640 -24.7998046875 632.799804688 -32 624 -32 c 2 - 224 -32 l 2 - 100.299804688 -32 0 68.2998046875 0 192 c 0 - 0 315.700195312 100.299804688 416 224 416 c 0 - 347.700195312 416 448 315.700195312 448 192 c 0 - 448 129.299804688 422.099609375 72.7001953125 380.599609375 32 c 1 - 624 32 l 2 -224 96 m 0 - 277 96 320 139 320 192 c 0 - 320 245 277 288 224 288 c 0 - 171 288 128 245 128 192 c 0 - 128 139 171 96 224 96 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" t a p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" T a p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" T A P E -EndChar - -StartChar: truck-loading -Encoding: 62686 62686 613 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -50.2001953125 72.400390625 m 2 - 0.599609375 257.900390625 l 2 - -1.7001953125 266.400390625 3.400390625 275.200195312 11.900390625 277.5 c 2 - 89.2001953125 298.200195312 l 1 - 114 205.5 l 1 - 175.799804688 222 l 1 - 151 314.700195312 l 1 - 228.200195312 335.5 l 2 - 236.700195312 337.799804688 245.5 332.700195312 247.799804688 324.200195312 c 2 - 297.5 138.700195312 l 2 - 299.799804688 130.200195312 294.700195312 121.400390625 286.200195312 119.099609375 c 2 - 69.7998046875 61.099609375 l 2 - 61.2998046875 58.7998046875 52.5 63.900390625 50.2001953125 72.400390625 c 2 -384 448 m 2 - 640 448 l 1 - 640 48 l 2 - 640 -13.900390625 589.900390625 -64 528 -64 c 0 - 467.599609375 -64 418.799804688 -16.099609375 416.400390625 43.7001953125 c 1 - 22.7001953125 -63.7001953125 l 2 - 18.5 -64.900390625 14.099609375 -62.400390625 12.900390625 -58.099609375 c 2 - 0.2998046875 -11.7998046875 l 2 - -0.900390625 -7.599609375 1.599609375 -3.2001953125 5.900390625 -2 c 2 - 352 92.400390625 l 1 - 352 416 l 2 - 352 433.700195312 366.299804688 448 384 448 c 2 -528 0 m 0 - 554.5 0 576 21.5 576 48 c 0 - 576 74.5 554.5 96 528 96 c 0 - 501.5 96 480 74.5 480 48 c 0 - 480 21.5 501.5 0 528 0 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" t r u c k hyphen l o a d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" T r u c k hyphen L o a d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" T r u c k hyphen l o a d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" T R U C K hyphen L O A D I N G -EndChar - -StartChar: truck-moving -Encoding: 62687 62687 614 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -621.299804688 210.700195312 m 2 - 633.299804688 198.700195312 640 182.5 640 165.5 c 2 - 640 80 l 2 - 640 71.2001953125 632.799804688 64 624 64 c 2 - 606.400390625 64 l 1 - 607.400390625 58.7998046875 608 53.5 608 48 c 0 - 608 3.7998046875 572.200195312 -32 528 -32 c 0 - 483.799804688 -32 448 3.7998046875 448 48 c 0 - 448 53.5 448.5 58.7998046875 449.599609375 64 c 1 - 286.400390625 64 l 1 - 287.400390625 58.7998046875 288 53.5 288 48 c 0 - 288 3.7998046875 252.200195312 -32 208 -32 c 0 - 181.700195312 -32 158.599609375 -19.2001953125 144 0.400390625 c 1 - 129.400390625 -19.099609375 106.299804688 -32 80 -32 c 0 - 35.7998046875 -32 0 3.7998046875 0 48 c 2 - 0 384 l 2 - 0 401.700195312 14.2998046875 416 32 416 c 2 - 448 416 l 2 - 465.700195312 416 480 401.700195312 480 384 c 2 - 480 287.900390625 l 1 - 517.5 287.900390625 l 2 - 534.5 287.900390625 550.799804688 281.200195312 562.799804688 269.200195312 c 2 - 621.299804688 210.700195312 l 2 -80 16 m 0 - 97.599609375 16 112 30.400390625 112 48 c 0 - 112 65.599609375 97.599609375 80 80 80 c 0 - 62.400390625 80 48 65.599609375 48 48 c 0 - 48 30.400390625 62.400390625 16 80 16 c 0 -208 16 m 0 - 225.599609375 16 240 30.400390625 240 48 c 0 - 240 65.599609375 225.599609375 80 208 80 c 0 - 190.400390625 80 176 65.599609375 176 48 c 0 - 176 30.400390625 190.400390625 16 208 16 c 0 -480 240 m 1 - 480 192 l 1 - 572.099609375 192 l 1 - 528.799804688 235.299804688 l 2 - 525.799804688 238.299804688 521.799804688 240 517.5 240 c 2 - 480 240 l 1 -528 16 m 0 - 545.599609375 16 560 30.400390625 560 48 c 0 - 560 65.599609375 545.599609375 80 528 80 c 0 - 510.400390625 80 496 65.599609375 496 48 c 0 - 496 30.400390625 510.400390625 16 528 16 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" t r u c k hyphen m o v i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" T r u c k hyphen M o v i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" T r u c k hyphen m o v i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" T R U C K hyphen M O V I N G -EndChar - -StartChar: video-slash -Encoding: 62690 62690 615 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -633.799804688 -10.099609375 m 2 - 640.799804688 -15.5 642.099609375 -25.599609375 636.599609375 -32.5 c 2 - 617 -57.7998046875 l 2 - 611.5 -64.7998046875 601.5 -66 594.5 -60.599609375 c 2 - 416 77.400390625 l 1 - 42.7001953125 366 l 1 - 6.2001953125 394.200195312 l 2 - -0.7998046875 399.599609375 -2 409.599609375 3.400390625 416.599609375 c 2 - 23 441.799804688 l 2 - 28.5 448.799804688 38.5 450 45.5 444.599609375 c 2 - 123.900390625 384 l 1 - 368.200195312 384 l 2 - 394.599609375 384 416 362.599609375 416 336.200195312 c 2 - 416 158.200195312 l 1 - 448 133.5 l 1 - 448 270.700195312 l 1 - 557.599609375 346.299804688 l 2 - 578.900390625 360.900390625 608 346 608 320.5 c 2 - 608 63.5 l 2 - 608 46.099609375 594.200195312 33.7998046875 578.799804688 32.400390625 c 1 - 633.799804688 -10.099609375 l 2 -32 47.7998046875 m 2 - 32 293.299804688 l 1 - 397.799804688 10.5 l 1 - 389.599609375 4 379.400390625 0 368.200195312 0 c 2 - 79.7998046875 0 l 2 - 53.400390625 0 32 21.400390625 32 47.7998046875 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" v i d e o hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" V i d e o hyphen S l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" V i d e o hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" V I D E O hyphen S L A S H -EndChar - -StartChar: wine-glass -Encoding: 62691 62691 616 -Width: 288 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -216 -16 m 2 - 238.08984375 -16 256 -33.91015625 256 -56 c 0 - 256 -60.419921875 252.419921875 -64 248 -64 c 2 - 40 -64 l 2 - 35.580078125 -64 32 -60.419921875 32 -56 c 0 - 32 -33.91015625 49.91015625 -16 72 -16 c 2 - 112 -16 l 1 - 112 101.1796875 l 1 - 43.5302734375 117.0703125 -6.0498046875 181.08984375 0.599609375 255.33984375 c 2 - 16.5595703125 433.450195312 l 2 - 17.2900390625 441.690429688 24.1103515625 448 32.259765625 448 c 2 - 255.740234375 448 l 2 - 263.900390625 448 270.709960938 441.690429688 271.450195312 433.450195312 c 2 - 287.400390625 255.349609375 l 2 - 294.049804688 181.099609375 244.469726562 117.080078125 176 101.190429688 c 1 - 176 -16 l 1 - 216 -16 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" w i n e hyphen g l a s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" W I N E hyphen G L A S S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" W i n e hyphen G l a s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" W i n e hyphen g l a s s -EndChar - -StartChar: font-awesome-logo-full -Encoding: 62694 62694 617 -Width: 3992 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -454.599609375 448 m 2 - 486.099609375 448 512 422.099609375 512.099609375 390.599609375 c 2 - 512.099609375 -6.599609375 l 2 - 512.099609375 -38.099609375 486.099609375 -64 454.700195312 -64 c 2 - 57.400390625 -64 l 2 - 25.900390625 -64 0 -38.099609375 0 -6.7001953125 c 2 - 0 390.599609375 l 2 - 0 422.099609375 25.900390625 448 57.400390625 448 c 2 - 454.599609375 448 l 2 -395.700195312 123.099609375 m 1 - 395.799804688 123.099609375 l 1 - 395.799804688 283.5 l 2 - 395.799804688 288.299804688 391 292.400390625 385.5 292.400390625 c 0 - 377.700195312 292.400390625 335.599609375 265.299804688 309 276.700195312 c 0 - 228.400390625 307.700195312 200 285.299804688 162.900390625 273.299804688 c 1 - 162.900390625 294.299804688 l 1 - 172 301.299804688 177.799804688 312.299804688 177.799804688 324.5 c 0 - 177.799804688 345.599609375 160.599609375 362.700195312 139.599609375 362.700195312 c 0 - 118.5 362.700195312 101.400390625 345.5 101.400390625 324.5 c 0 - 101.400390625 312.099609375 107.400390625 301.200195312 116.400390625 294.200195312 c 1 - 116.400390625 44.2001953125 l 2 - 116.400390625 14 162.099609375 13.900390625 162.099609375 44.2001953125 c 2 - 162.099609375 96 l 1 - 256.599609375 143.299804688 284.799804688 98.5 325.299804688 98.5 c 0 - 347.099609375 98.5 367.599609375 106.099609375 386.799804688 114.200195312 c 0 - 391.599609375 116.200195312 395.700195312 118.299804688 395.700195312 123.099609375 c 1 -828.599609375 297.299804688 m 2 - 691.599609375 297.299804688 l 1 - 691.599609375 227.200195312 l 1 - 825 227.200195312 l 2 - 864.799804688 227.200195312 865.400390625 165 825 165 c 2 - 691.599609375 165 l 1 - 691.599609375 59.400390625 l 2 - 691.599609375 13.900390625 620.900390625 13 620.900390625 59.400390625 c 2 - 620.900390625 319.700195312 l 2 - 620.900390625 341.700195312 638.900390625 359.5 660.700195312 359.5 c 2 - 828.5 359.5 l 2 - 868.099609375 359.5 869 297.299804688 828.599609375 297.299804688 c 2 -1019.70019531 273.900390625 m 0 - 1189.59960938 273.900390625 1189.59960938 21.5 1019.70019531 21.5 c 0 - 850.599609375 21.5 850.400390625 273.900390625 1019.70019531 273.900390625 c 0 -1019.70019531 77.7998046875 m 0 - 1102.09960938 77.7998046875 1102.20019531 217.599609375 1019.70019531 217.599609375 c 0 - 937.599609375 217.599609375 938.099609375 77.7998046875 1019.70019531 77.7998046875 c 0 -1392.09960938 24.400390625 m 0 - 1374.59960938 24.400390625 1360.70019531 38.2998046875 1360.70019531 55.7998046875 c 2 - 1360.70019531 172.799804688 l 2 - 1360.70019531 235.200195312 1288.09960938 225.299804688 1261.59960938 189.200195312 c 1 - 1261.59960938 55.7998046875 l 2 - 1261.59960938 14.2998046875 1198.29980469 14 1198.29980469 55.7998046875 c 2 - 1198.29980469 240 l 2 - 1198.29980469 280 1261.40039062 281.599609375 1261.40039062 240 c 2 - 1261.40039062 236.599609375 l 1 - 1304.70019531 288.200195312 1423.79980469 297 1423.79980469 197.299804688 c 2 - 1423.79980469 55.7998046875 l 2 - 1424.09960938 25.400390625 1392.29980469 24.400390625 1392.09960938 24.400390625 c 0 -1571.79980469 21.5 m 0 - 1527.5 21.5 1503.5 44.400390625 1503.5 87.2998046875 c 2 - 1503.5 212.799804688 l 1 - 1488 212.799804688 l 2 - 1452.40039062 212.799804688 1451.29980469 268.099609375 1488 268.099609375 c 2 - 1503.5 268.099609375 l 1 - 1503.5 305.400390625 l 2 - 1503.5 346.700195312 1567.29980469 347.5 1567.29980469 305.400390625 c 2 - 1567.29980469 267.900390625 l 1 - 1592.20019531 267.900390625 l 2 - 1627.59960938 267.900390625 1627.90039062 212.599609375 1592.20019531 212.599609375 c 2 - 1567.29980469 212.599609375 l 1 - 1567.29980469 104.099609375 l 2 - 1567.29980469 74.5 1593.40039062 77.7998046875 1594.70019531 77.7998046875 c 0 - 1626.09960938 77.7998046875 1647.29980469 21.5 1571.79980469 21.5 c 0 -1992 325 m 0 - 2096.40039062 55.400390625 2091.09960938 72.2998046875 2091.09960938 62.2001953125 c 0 - 2091.09960938 20.599609375 2033.20019531 10.099609375 2019 47.7998046875 c 2 - 2006 83.7001953125 l 1 - 1863.59960938 83.7001953125 l 1 - 1850.09960938 47.7998046875 l 2 - 1836.29980469 11 1778 19.400390625 1778 62.2001953125 c 0 - 1778 72.2998046875 1770.20019531 49.2998046875 1877.5 325 c 0 - 1896.5 375 1972.5 375.200195312 1992 325 c 0 -1883.09960938 145.900390625 m 1 - 1986.59960938 145.900390625 l 1 - 1934.79980469 288.799804688 l 1 - 1883.09960938 145.900390625 l 1 -2474.40039062 231.5 m 2 - 2420.70019531 55.2001953125 l 2 - 2408.29980469 14 2348.70019531 14.2001953125 2336.70019531 55.2001953125 c 2 - 2294.40039062 191.099609375 l 1 - 2252.09960938 55.2001953125 l 2 - 2239.70019531 14.2998046875 2180.09960938 14 2167.59960938 55.2001953125 c 2 - 2113.40039062 231.5 l 2 - 2100.90039062 270.900390625 2163.20019531 287.599609375 2173.59960938 248.400390625 c 2 - 2213 106 l 1 - 2258.29980469 245.5 l 2 - 2269.20019531 278.200195312 2317.90039062 280.200195312 2329.5 245.5 c 2 - 2374.79980469 106 l 1 - 2414.09960938 248.400390625 l 2 - 2424.40039062 286.700195312 2486.70019531 272.200195312 2474.40039062 231.5 c 2 -2749.79980469 156.400390625 m 0 - 2749.79980469 140.900390625 2736.79980469 127.5 2720.5 127.5 c 2 - 2572.20019531 127.5 l 1 - 2579.09960938 75.2998046875 2638.70019531 57.5 2688.09960938 83.7001953125 c 0 - 2706.29980469 92.7998046875 2727.40039062 79.599609375 2727.40039062 61.2998046875 c 0 - 2727.40039062 33 2666.09960938 21.5 2634.40039062 21.5 c 0 - 2561.20019531 21.5 2505.90039062 70.7001953125 2505.90039062 147.900390625 c 0 - 2505.90039062 217.599609375 2557.09960938 273.900390625 2630.29980469 273.900390625 c 0 - 2715.90039062 273.900390625 2749.79980469 198.799804688 2749.79980469 156.400390625 c 0 -2571 170.299804688 m 1 - 2689.59960938 170.299804688 l 1 - 2684.90039062 238.900390625 2580.5 243.700195312 2571 170.299804688 c 1 -2887.70019531 21.5 m 0 - 2856.29980469 21.5 2806.09960938 32 2791.09960938 53.400390625 c 0 - 2778.70019531 70.400390625 2793.59960938 93.2001953125 2812.90039062 93.2001953125 c 0 - 2829.20019531 93.2001953125 2849.70019531 70.2998046875 2890.59960938 70.2998046875 c 0 - 2918 70.2998046875 2931 81.2998046875 2931 96.099609375 c 0 - 2931 135.900390625 2788.09960938 103.5 2788.09960938 198.099609375 c 0 - 2788.09960938 238.5 2823.40039062 273.799804688 2886.70019531 273.799804688 c 0 - 2918.09960938 273.799804688 2960.79980469 263.900390625 2974.29980469 244.400390625 c 0 - 2985.09960938 229.599609375 2972.90039062 208.200195312 2953.40039062 208.200195312 c 0 - 2938.29980469 208.200195312 2926.70019531 225.5 2887.20019531 225.5 c 0 - 2864.29980469 225.5 2849.40039062 215 2849.40039062 201.700195312 c 0 - 2849.40039062 165.799804688 2991.79980469 195.700195312 2991.79980469 98.599609375 c 0 - 2991.70019531 54.900390625 2954.40039062 21.5 2887.70019531 21.5 c 0 -3154.5 273.900390625 m 0 - 3324.09960938 273.900390625 3324.59960938 21.5 3154.5 21.5 c 0 - 2985.40039062 21.5 2985.20019531 273.900390625 3154.5 273.900390625 c 0 -3154.5 77.7998046875 m 0 - 3236.90039062 77.7998046875 3237 217.599609375 3154.5 217.599609375 c 0 - 3072.5 217.599609375 3072.70019531 77.7998046875 3154.5 77.7998046875 c 0 -3631.40039062 55.7998046875 m 2 - 3631.40039062 179.299804688 l 2 - 3631.40039062 233.099609375 3570 225.099609375 3545.70019531 189.799804688 c 1 - 3545.70019531 55.7998046875 l 2 - 3545.70019531 14.5 3481.90039062 13.7001953125 3481.90039062 55.7998046875 c 2 - 3481.90039062 179.299804688 l 2 - 3481.90039062 231.400390625 3422.40039062 226.700195312 3396.20019531 189.400390625 c 1 - 3396.20019531 55.7998046875 l 2 - 3396.20019531 14.2998046875 3332.90039062 14 3332.90039062 55.7998046875 c 2 - 3332.90039062 240 l 2 - 3332.90039062 280 3396 281.599609375 3396 240 c 2 - 3396 236.599609375 l 1 - 3405.90039062 251 3437.79980469 273.900390625 3474.59960938 273.900390625 c 0 - 3509.90039062 273.900390625 3532.29980469 257.5 3541.29980469 230.099609375 c 1 - 3555.20019531 251.900390625 3587.09960938 273.900390625 3623.90039062 273.900390625 c 0 - 3668.20019531 273.900390625 3694.59960938 250.5 3694.59960938 201.200195312 c 2 - 3694.59960938 55.900390625 l 2 - 3695.09960938 38.599609375 3681.09960938 24.5 3662.70019531 24.5 c 1 - 3666.20019531 24.400390625 3631.40039062 23.400390625 3631.40039062 55.7998046875 c 2 -3992 156.400390625 m 0 - 3991.79980469 140.900390625 3979 127.5 3962.70019531 127.5 c 2 - 3812.90039062 127.5 l 1 - 3819.90039062 75.2998046875 3881 57.5 3930.40039062 83.7001953125 c 0 - 3948.59960938 92.7998046875 3969.70019531 79.599609375 3969.70019531 61.2998046875 c 0 - 3969.70019531 33 3909.90039062 21.5 3878.20019531 21.5 c 0 - 3804.90039062 21.5 3746.59960938 70.7001953125 3746.59960938 147.900390625 c 0 - 3746.59960938 217.599609375 3800.90039062 273.900390625 3874.09960938 273.900390625 c 0 - 3959.59960938 273.900390625 3992 198.799804688 3992 156.400390625 c 0 -3811.5 170.299804688 m 1 - 3931.59960938 170.299804688 l 1 - 3927.40039062 238.599609375 3821.20019531 244.700195312 3811.5 170.299804688 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" f o n t space a w e s o m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" F o n t space A w e s o m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" F o n t space a w e s o m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" F O N T space A W E S O M E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 6" f o n t hyphen a w e s o m e hyphen l o g o hyphen f u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 6" F o n t hyphen A w e s o m e hyphen L o g o hyphen F u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 6" F o n t hyphen a w e s o m e hyphen l o g o hyphen f u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 6" F O N T hyphen A W E S O M E hyphen L O G O hyphen F U L L -EndChar - -StartChar: user-alt-slash -Encoding: 62714 62714 618 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -633.799804688 -10.099609375 m 2 - 640.799804688 -15.5 642.099609375 -25.599609375 636.700195312 -32.400390625 c 2 - 617.099609375 -57.7001953125 l 2 - 611.599609375 -64.7001953125 601.599609375 -65.900390625 594.599609375 -60.5 c 2 - 6.2001953125 394.200195312 l 2 - -0.7998046875 399.599609375 -2 409.599609375 3.400390625 416.599609375 c 2 - 23 441.799804688 l 2 - 28.5 448.799804688 38.5 450 45.5 444.599609375 c 2 - 181 339.799804688 l 1 - 197 401.900390625 252.900390625 448 320 448 c 0 - 399.5 448 464 383.5 464 304 c 0 - 464 249.900390625 433.799804688 203.299804688 389.599609375 178.700195312 c 1 - 633.799804688 -10.099609375 l 2 -198.400390625 128 m 2 - 245.799804688 128 l 1 - 494.200195312 -64 l 1 - 112 -64 l 2 - 85.5 -64 64 -42.5 64 -16 c 2 - 64 -6.400390625 l 2 - 64 67.7998046875 124.200195312 128 198.400390625 128 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" u s e r hyphen a l t hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" U s e r hyphen A l t hyphen S l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" U s e r hyphen a l t hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" U S E R hyphen A L T hyphen S L A S H -EndChar - -StartChar: user-astronaut -Encoding: 62715 62715 619 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -64 224 m 2 - 55.2001953125 224 48 231.200195312 48 240 c 2 - 48 336 l 2 - 48 344.799804688 55.2001953125 352 64 352 c 2 - 77.5 352 l 1 - 102.200195312 408.5 158.400390625 448 224 448 c 0 - 289.599609375 448 345.799804688 408.5 370.5 352 c 1 - 384 352 l 2 - 392.799804688 352 400 344.799804688 400 336 c 2 - 400 240 l 2 - 400 231.200195312 392.799804688 224 384 224 c 2 - 370.5 224 l 1 - 345.799804688 167.5 289.599609375 128 224 128 c 0 - 158.400390625 128 102.200195312 167.5 77.5 224 c 1 - 64 224 l 2 -104 312 m 2 - 104 288 l 2 - 104 235 147 192 200 192 c 2 - 248 192 l 2 - 301 192 344 235 344 288 c 2 - 344 312 l 2 - 344 334.099609375 322.5 352 296 352 c 2 - 152 352 l 2 - 125.5 352 104 334.099609375 104 312 c 2 -176 240 m 1 - 164 276 l 1 - 128 288 l 1 - 164 300 l 1 - 176 336 l 1 - 188 300 l 1 - 224 288 l 1 - 188 276 l 1 - 176 240 l 1 -327.599609375 126.599609375 m 1 - 395.099609375 119.5 448 63 448 -6.400390625 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 320 -64 l 1 - 320 0 l 2 - 320 17.7001953125 305.700195312 32 288 32 c 2 - 160 32 l 2 - 142.299804688 32 128 17.7001953125 128 0 c 2 - 128 -64 l 1 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 -6.400390625 l 2 - 0 63 52.900390625 119.5 120.400390625 126.599609375 c 1 - 150.299804688 107.299804688 185.799804688 96 224 96 c 0 - 262.200195312 96 297.700195312 107.299804688 327.599609375 126.599609375 c 1 -272 0 m 0 - 280.799804688 0 288 -7.2001953125 288 -16 c 0 - 288 -24.7998046875 280.799804688 -32 272 -32 c 0 - 263.200195312 -32 256 -24.7998046875 256 -16 c 0 - 256 -7.2001953125 263.200195312 0 272 0 c 0 -176 0 m 0 - 184.799804688 0 192 -7.2001953125 192 -16 c 2 - 192 -64 l 1 - 160 -64 l 1 - 160 -16 l 2 - 160 -7.2001953125 167.200195312 0 176 0 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" u s e r hyphen a s t r o n a u t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" U s e r hyphen A s t r o n a u t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" U s e r hyphen a s t r o n a u t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" U S E R hyphen A S T R O N A U T -EndChar - -StartChar: user-check -Encoding: 62716 62716 620 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -313.599609375 160 m 2 - 387.799804688 160 448 99.7998046875 448 25.599609375 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 99.7998046875 60.2001953125 160 134.400390625 160 c 2 - 151.099609375 160 l 1 - 173.400390625 149.799804688 198 144 224 144 c 0 - 250 144 274.700195312 149.799804688 296.900390625 160 c 1 - 313.599609375 160 l 2 -636.599609375 288.400390625 m 2 - 641.200195312 283.799804688 641.099609375 276.299804688 636.5 271.599609375 c 2 - 495.200195312 131.400390625 l 2 - 490.5 126.799804688 483 126.799804688 478.400390625 131.5 c 2 - 396.700195312 213.799804688 l 2 - 392.099609375 218.5 392.099609375 226 396.799804688 230.599609375 c 2 - 424.900390625 258.5 l 2 - 429.599609375 263.099609375 437.099609375 263.099609375 441.700195312 258.400390625 c 2 - 487.200195312 212.599609375 l 1 - 592 316.599609375 l 2 - 596.700195312 321.200195312 604.200195312 321.200195312 608.799804688 316.5 c 2 - 636.599609375 288.400390625 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" u s e r hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U s e r hyphen C h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U s e r hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U S E R hyphen C H E C K -EndChar - -StartChar: user-clock -Encoding: 62717 62717 621 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 224 m 0 - 575.599609375 224 640 159.599609375 640 80 c 0 - 640 0.400390625 575.599609375 -64 496 -64 c 0 - 416.400390625 -64 352 0.400390625 352 80 c 0 - 352 159.599609375 416.400390625 224 496 224 c 0 -560 73.7001953125 m 2 - 560 86.2998046875 l 2 - 560 91.599609375 555.599609375 96 550.299804688 96 c 2 - 512 96 l 1 - 512 150.299804688 l 2 - 512 155.599609375 507.599609375 160 502.299804688 160 c 2 - 489.700195312 160 l 2 - 484.400390625 160 480 155.599609375 480 150.299804688 c 2 - 480 73.7001953125 l 2 - 480 68.400390625 484.400390625 64 489.700195312 64 c 2 - 550.299804688 64 l 2 - 555.599609375 64 560 68.400390625 560 73.7001953125 c 2 -320 80 m 0 - 320 20.5 349.799804688 -32.099609375 395.099609375 -64 c 1 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 99.7998046875 60.2001953125 160 134.400390625 160 c 2 - 151.099609375 160 l 1 - 173.400390625 149.799804688 198 144 224 144 c 0 - 250 144 274.700195312 149.799804688 296.900390625 160 c 1 - 313.599609375 160 l 2 - 322 160 330.200195312 159 338.200195312 157.5 c 1 - 326.700195312 134.099609375 320 107.799804688 320 80 c 0 -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" u s e r hyphen c l o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U s e r hyphen C l o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U s e r hyphen c l o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U S E R hyphen C L O C K -EndChar - -StartChar: user-cog -Encoding: 62718 62718 622 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -610.5 74.7001953125 m 1 - 636.299804688 59.7998046875 l 2 - 639.200195312 58.099609375 640.599609375 54.599609375 639.599609375 51.2998046875 c 0 - 632.900390625 29.7001953125 621.400390625 10.099609375 606.400390625 -6.099609375 c 0 - 604.099609375 -8.599609375 600.299804688 -9.2001953125 597.400390625 -7.5 c 2 - 571.599609375 7.400390625 l 1 - 560.700195312 -1.900390625 548.200195312 -9.099609375 534.700195312 -13.900390625 c 1 - 534.700195312 -43.7001953125 l 2 - 534.700195312 -47.099609375 532.299804688 -50.099609375 529 -50.7998046875 c 0 - 507.799804688 -55.599609375 485.099609375 -55.7998046875 462.799804688 -50.7998046875 c 0 - 459.5 -50.099609375 457.099609375 -47.099609375 457.099609375 -43.7001953125 c 2 - 457.099609375 -13.900390625 l 1 - 443.599609375 -9.099609375 431.099609375 -1.900390625 420.200195312 7.400390625 c 1 - 394.400390625 -7.5 l 2 - 391.400390625 -9.2001953125 387.700195312 -8.599609375 385.400390625 -6.099609375 c 0 - 370.400390625 10.2001953125 358.900390625 29.7001953125 352.200195312 51.2998046875 c 0 - 351.200195312 54.599609375 352.5 58.099609375 355.5 59.7998046875 c 2 - 381.299804688 74.7001953125 l 1 - 378.700195312 88.7998046875 378.700195312 103.200195312 381.299804688 117.299804688 c 1 - 355.5 132.200195312 l 2 - 352.599609375 133.900390625 351.200195312 137.400390625 352.200195312 140.700195312 c 0 - 358.900390625 162.299804688 370.400390625 181.900390625 385.400390625 198.099609375 c 0 - 387.700195312 200.599609375 391.5 201.200195312 394.400390625 199.5 c 2 - 420.200195312 184.599609375 l 1 - 431.099609375 193.900390625 443.599609375 201.099609375 457.099609375 205.900390625 c 1 - 457.099609375 235.700195312 l 2 - 457.099609375 239.099609375 459.5 242.099609375 462.799804688 242.799804688 c 0 - 484 247.599609375 506.700195312 247.799804688 529 242.799804688 c 0 - 532.299804688 242.099609375 534.700195312 239.099609375 534.700195312 235.700195312 c 2 - 534.700195312 205.900390625 l 1 - 548.200195312 201.099609375 560.700195312 193.900390625 571.599609375 184.599609375 c 1 - 597.400390625 199.5 l 2 - 600.400390625 201.200195312 604.099609375 200.599609375 606.400390625 198.099609375 c 0 - 621.400390625 181.900390625 632.900390625 162.299804688 639.599609375 140.700195312 c 0 - 640.599609375 137.400390625 639.299804688 133.900390625 636.299804688 132.200195312 c 2 - 610.5 117.299804688 l 1 - 613.099609375 103.200195312 613.099609375 88.7998046875 610.5 74.7001953125 c 1 -496 47.5 m 0 - 522.799804688 47.5 544.5 69.2998046875 544.5 96 c 0 - 544.5 122.700195312 522.700195312 144.5 496 144.5 c 0 - 469.299804688 144.5 447.5 122.700195312 447.5 96 c 0 - 447.5 69.2998046875 469.200195312 47.5 496 47.5 c 0 -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -425.200195312 -34.5 m 2 - 425.200195312 -43.7001953125 l 2 - 425.200195312 -47.7998046875 426 -51.7001953125 427.200195312 -55.5 c 0 - 419.5 -60.7998046875 410.099609375 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 99.7998046875 60.2001953125 160 134.400390625 160 c 2 - 151.099609375 160 l 1 - 173.400390625 149.799804688 198 144 224 144 c 0 - 250 144 274.700195312 149.799804688 296.900390625 160 c 1 - 313.599609375 160 l 2 - 317.5 160 321.200195312 159.099609375 325 158.799804688 c 1 - 324 155.900390625 322.700195312 153 321.799804688 150.099609375 c 0 - 316.299804688 132.400390625 323.700195312 113.599609375 339.700195312 104.400390625 c 2 - 347.599609375 99.7998046875 l 2 - 347.5 97.2001953125 347.5 94.599609375 347.599609375 92 c 2 - 339.700195312 87.400390625 l 2 - 323.700195312 78.099609375 316.299804688 59.400390625 321.799804688 41.7001953125 c 0 - 329.700195312 16 343.700195312 -8.099609375 362 -27.900390625 c 0 - 369.5 -35.900390625 380 -40.5 390.900390625 -40.5 c 0 - 397.700195312 -40.5 404.5 -38.599609375 410.5 -35.2001953125 c 2 - 418.400390625 -30.599609375 l 2 - 420.599609375 -31.900390625 422.900390625 -33.2998046875 425.200195312 -34.5 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" u s e r hyphen c o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" U s e r hyphen C o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" U s e r hyphen c o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" U S E R hyphen C O G -EndChar - -StartChar: user-edit -Encoding: 62719 62719 623 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -313.599609375 160 m 2 - 353.5 160 389 142.200195312 413.5 114.5 c 1 - 336.200195312 37.2001953125 l 1 - 328.299804688 29.2998046875 l 1 - 327.099609375 18.2001953125 l 1 - 320.299804688 -42.7001953125 l 2 - 319.5 -50 320.5 -57.2001953125 322.900390625 -64 c 1 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 99.7998046875 60.2001953125 160 134.400390625 160 c 2 - 151.099609375 160 l 1 - 173.400390625 149.799804688 198 144 224 144 c 0 - 250 144 274.700195312 149.799804688 296.900390625 160 c 1 - 313.599609375 160 l 2 -358.900390625 14.7001953125 m 1 - 496.799804688 152.5 l 1 - 568.5 80.7998046875 l 1 - 430.599609375 -57.099609375 l 1 - 369.700195312 -63.900390625 l 2 - 359.599609375 -65.099609375 351 -56.5 352.099609375 -46.2998046875 c 2 - 358.900390625 14.7001953125 l 1 -633 179.099609375 m 2 - 642.299804688 169.700195312 642.299804688 154.599609375 633 145.200195312 c 2 - 591.200195312 103.400390625 l 1 - 519.400390625 175.099609375 l 1 - 523.5 179.200195312 l 1 - 561.299804688 217 l 2 - 570.599609375 226.299804688 585.799804688 226.299804688 595.099609375 217 c 2 - 633 179.099609375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" u s e r hyphen e d i t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" U s e r hyphen e d i t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" U S E R hyphen E D I T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" U s e r hyphen E d i t -EndChar - -StartChar: user-friends -Encoding: 62720 62720 624 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 192 m 0 - 130.099609375 192 80 242.099609375 80 304 c 0 - 80 365.900390625 130.099609375 416 192 416 c 0 - 253.900390625 416 304 365.900390625 304 304 c 0 - 304 242.099609375 253.900390625 192 192 192 c 0 -268.799804688 160 m 2 - 332.400390625 160 384 108.400390625 384 44.7998046875 c 2 - 384 16 l 2 - 384 -10.5 362.5 -32 336 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 44.7998046875 l 2 - 0 108.400390625 51.599609375 160 115.200195312 160 c 2 - 123.5 160 l 1 - 144.400390625 150 167.400390625 144 192 144 c 0 - 216.599609375 144 239.700195312 150 260.5 160 c 1 - 268.799804688 160 l 2 -480 192 m 0 - 427 192 384 235 384 288 c 0 - 384 341 427 384 480 384 c 0 - 533 384 576 341 576 288 c 0 - 576 235 533 192 480 192 c 0 -528 160 m 2 - 589.900390625 160 640 109.900390625 640 48 c 0 - 640 21.5 618.5 0 592 0 c 2 - 415.400390625 0 l 2 - 415.5 2.099609375 416 4.2001953125 416 6.400390625 c 2 - 416 44.7998046875 l 2 - 416 83.400390625 400.700195312 118.299804688 376.299804688 144.599609375 c 1 - 392.799804688 154.099609375 411.599609375 160 432 160 c 2 - 435.799804688 160 l 1 - 449.700195312 155.200195312 464.400390625 152 480 152 c 0 - 495.599609375 152 510.299804688 155.200195312 524.200195312 160 c 1 - 528 160 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" u s e r hyphen f r i e n d s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" U s e r hyphen F r i e n d s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" U s e r hyphen f r i e n d s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" U S E R hyphen F R I E N D S -EndChar - -StartChar: user-graduate -Encoding: 62721 62721 625 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -319.400390625 127.400390625 m 1 - 390.900390625 124.299804688 448 65.7998046875 448 -6.400390625 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 -6.400390625 l 2 - 0 65.7998046875 57.099609375 124.299804688 128.599609375 127.400390625 c 1 - 224 32 l 1 - 319.400390625 127.400390625 l 1 -13.599609375 368.200195312 m 2 - -4.5 372.599609375 -4.5 395.400390625 13.599609375 399.799804688 c 2 - 204.200195312 445.700195312 l 2 - 217.200195312 448.799804688 230.900390625 448.799804688 243.900390625 445.700195312 c 2 - 434.299804688 399.700195312 l 2 - 452.5 395.299804688 452.5 372.599609375 434.299804688 368.200195312 c 2 - 338 345 l 1 - 346.700195312 327.799804688 352 308.599609375 352 288 c 0 - 352 217.299804688 294.700195312 160 224 160 c 0 - 153.299804688 160 96 217.299804688 96 288 c 0 - 96 308.599609375 101.400390625 327.799804688 110 345 c 1 - 44 360.900390625 l 1 - 44 308.299804688 l 1 - 51 304.099609375 56 296.799804688 56 288 c 0 - 56 279.599609375 51.400390625 272.599609375 44.900390625 268.299804688 c 1 - 60.5 206 l 2 - 62.2001953125 199.099609375 58.400390625 192 52.900390625 192 c 2 - 11.099609375 192 l 2 - 5.599609375 192 1.7998046875 199.099609375 3.5 206 c 2 - 19.099609375 268.299804688 l 1 - 12.599609375 272.599609375 8 279.599609375 8 288 c 0 - 8 296.799804688 13 304.099609375 20 308.299804688 c 1 - 20 366.700195312 l 1 - 13.599609375 368.200195312 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" u s e r hyphen g r a d u a t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" U s e r hyphen G r a d u a t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" U s e r hyphen g r a d u a t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" U S E R hyphen G R A D U A T E -EndChar - -StartChar: user-lock -Encoding: 62722 62722 626 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 192 m 0 - 153.34375 192 96 249.34375 96 320 c 0 - 96 390.65625 153.34375 448 224 448 c 0 - 294.65625 448 352 390.65625 352 320 c 0 - 352 249.34375 294.65625 192 224 192 c 0 -320 128 m 2 - 320 -32 l 2 - 320.064453125 -41.4970703125 324.051757812 -55.8330078125 328.900390625 -64 c 1 - 48 -64 l 2 - 21.50390625 -64 0 -42.49609375 0 -16 c 2 - 0 25.599609375 l 2 - 0.0166015625 99.7724609375 60.2275390625 159.983398438 134.400390625 160 c 2 - 151.099609375 160 l 1 - 170.250976562 151.16796875 202.91015625 144 224 144 c 0 - 245.08984375 144 277.749023438 151.16796875 296.900390625 160 c 1 - 313.599609375 160 l 2 - 318.599609375 160 323.299804688 159 328.099609375 158.5 c 1 - 323.689453125 150.659179688 320.060546875 136.995117188 320 128 c 2 -608 160 m 2 - 625.6640625 160 640 145.6640625 640 128 c 2 - 640 -32 l 2 - 640 -49.6640625 625.6640625 -64 608 -64 c 2 - 384 -64 l 2 - 366.3359375 -64 352 -49.6640625 352 -32 c 2 - 352 128 l 2 - 352 145.6640625 366.3359375 160 384 160 c 2 - 416 160 l 1 - 416 240 l 2 - 416 284.16015625 451.83984375 320 496 320 c 0 - 540.16015625 320 576 284.16015625 576 240 c 2 - 576 160 l 1 - 608 160 l 2 -496 16 m 0 - 513.6640625 16 528 30.3359375 528 48 c 0 - 528 65.6640625 513.6640625 80 496 80 c 0 - 478.3359375 80 464 65.6640625 464 48 c 0 - 464 30.3359375 478.3359375 16 496 16 c 0 -528 160 m 1 - 528 240 l 2 - 528 257.6640625 513.6640625 272 496 272 c 0 - 478.3359375 272 464 257.6640625 464 240 c 2 - 464 160 l 1 - 528 160 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" u s e r hyphen l o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" U s e r hyphen L o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" U s e r hyphen l o c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" U S E R hyphen L O C K -EndChar - -StartChar: user-minus -Encoding: 62723 62723 627 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 240 m 2 - 632.799804688 240 640 232.799804688 640 224 c 2 - 640 192 l 2 - 640 183.200195312 632.799804688 176 624 176 c 2 - 432 176 l 2 - 423.200195312 176 416 183.200195312 416 192 c 2 - 416 224 l 2 - 416 232.799804688 423.200195312 240 432 240 c 2 - 624 240 l 2 -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -313.599609375 160 m 2 - 387.799804688 160 448 99.7998046875 448 25.599609375 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 99.7998046875 60.2001953125 160 134.400390625 160 c 2 - 151.099609375 160 l 1 - 173.400390625 149.799804688 198 144 224 144 c 0 - 250 144 274.700195312 149.799804688 296.900390625 160 c 1 - 313.599609375 160 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" u s e r hyphen m i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U s e r hyphen M i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U s e r hyphen m i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U S E R hyphen M I N U S -EndChar - -StartChar: user-ninja -Encoding: 62724 62724 628 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -325.400390625 158.799804688 m 1 - 394 152.700195312 448 95.7998046875 448 25.599609375 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 95.7998046875 54 152.700195312 122.599609375 158.799804688 c 1 - 224 57.400390625 l 1 - 325.400390625 158.799804688 l 1 -32 256 m 1 - 32 289.400390625 49.099609375 318.799804688 75.099609375 336 c 1 - 49.099609375 353.200195312 32 382.599609375 32 416 c 1 - 64 416 92.099609375 400.200195312 109.5 376.200195312 c 1 - 130.400390625 418.599609375 173.599609375 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 - 165.200195312 192 116.299804688 231.799804688 101.200195312 285.700195312 c 1 - 83.7998046875 267.5 59.2998046875 256 32 256 c 1 -176 352 m 2 - 158.299804688 352 144 337.700195312 144 320 c 1 - 304 320 l 1 - 304 337.700195312 289.700195312 352 272 352 c 2 - 176 352 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" u s e r hyphen n i n j a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" U s e r hyphen N i n j a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" U s e r hyphen n i n j a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" U S E R hyphen N I N J A -EndChar - -StartChar: user-shield -Encoding: 62725 62725 629 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -622.299804688 176.900390625 m 2 - 633 172.700195312 640 162.900390625 640 152 c 0 - 640 27.5 558.400390625 -41.900390625 507.099609375 -61.900390625 c 0 - 502.900390625 -63.5 494.5 -65.599609375 484.900390625 -61.900390625 c 0 - 420.700195312 -36.7998046875 352 40.400390625 352 152 c 0 - 352 162.900390625 359 172.700195312 369.700195312 176.900390625 c 2 - 484.900390625 221.900390625 l 2 - 494.5 225.599609375 503 223.5 507.099609375 221.900390625 c 2 - 622.299804688 176.900390625 l 2 -496 -14.400390625 m 1 - 530.599609375 2 585.900390625 50.2998046875 591.5 137.400390625 c 1 - 496 174.700195312 l 1 - 496 -14.400390625 l 1 -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -320 152 m 0 - 320 56.7001953125 365.200195312 -17.099609375 419.200195312 -60 c 1 - 413.299804688 -62.5 406.799804688 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 99.7998046875 60.2001953125 160 134.400390625 160 c 2 - 151.099609375 160 l 1 - 173.400390625 149.799804688 198 144 224 144 c 0 - 250 144 274.700195312 149.799804688 296.900390625 160 c 1 - 313.599609375 160 l 2 - 316.200195312 160 318.599609375 159.299804688 321.099609375 159.200195312 c 1 - 320.799804688 156.799804688 320 154.5 320 152 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" u s e r hyphen s h i e l d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" U s e r hyphen S h i e l d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" U s e r hyphen s h i e l d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" U S E R hyphen S H I E L D -EndChar - -StartChar: user-slash -Encoding: 62726 62726 630 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -633.799804688 -10.099609375 m 2 - 640.799804688 -15.5 642.099609375 -25.599609375 636.700195312 -32.400390625 c 2 - 617.099609375 -57.7001953125 l 2 - 611.599609375 -64.7001953125 601.599609375 -65.900390625 594.599609375 -60.5 c 2 - 6.2001953125 394.200195312 l 2 - -0.7998046875 399.599609375 -2 409.599609375 3.400390625 416.599609375 c 2 - 23 441.799804688 l 2 - 28.5 448.799804688 38.5 450 45.5 444.599609375 c 2 - 193.099609375 330.599609375 l 1 - 198.5 396.200195312 252.900390625 448 320 448 c 0 - 390.700195312 448 448 390.700195312 448 320 c 0 - 448 264.200195312 412.099609375 217.299804688 362.299804688 199.700195312 c 1 - 633.799804688 -10.099609375 l 2 -96 25.599609375 m 2 - 96 92 144.200195312 146.700195312 207.400390625 157.700195312 c 1 - 494.200195312 -64 l 1 - 144 -64 l 2 - 117.5 -64 96 -42.5 96 -16 c 2 - 96 25.599609375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" u s e r hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U s e r hyphen S l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U s e r hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" U S E R hyphen S L A S H -EndChar - -StartChar: user-tag -Encoding: 62727 62727 631 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -630.599609375 83.099609375 m 2 - 643.099609375 70.599609375 643.099609375 50.400390625 630.5 37.900390625 c 2 - 538 -54.599609375 l 2 - 525.5 -67.099609375 505.200195312 -67.099609375 492.700195312 -54.599609375 c 2 - 402.400390625 35.599609375 l 2 - 390.400390625 47.599609375 383.700195312 63.7998046875 383.700195312 80.7998046875 c 2 - 383.700195312 160 l 2 - 383.700195312 177.700195312 398 192 415.700195312 192 c 2 - 495 192 l 2 - 512 192 528.299804688 185.299804688 540.299804688 173.299804688 c 2 - 630.599609375 83.099609375 l 2 -447.799804688 104.099609375 m 0 - 461.099609375 104.099609375 471.799804688 114.900390625 471.799804688 128.099609375 c 0 - 471.799804688 141.400390625 461.099609375 152.099609375 447.799804688 152.099609375 c 0 - 434.5 152.099609375 423.799804688 141.400390625 423.799804688 128.099609375 c 0 - 423.799804688 114.799804688 434.5 104.099609375 447.799804688 104.099609375 c 0 -224 192.099609375 m 0 - 153.299804688 192.099609375 96 249.400390625 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320.099609375 c 0 - 352 249.400390625 294.700195312 192.099609375 224 192.099609375 c 0 -351.799804688 80.900390625 m 2 - 351.799804688 55.2001953125 361.799804688 31.099609375 379.900390625 13 c 2 - 437.900390625 -45 l 1 - 429.099609375 -56.400390625 415.5 -63.900390625 400 -63.900390625 c 2 - 48 -63.900390625 l 2 - 21.5 -63.900390625 0 -42.400390625 0 -15.900390625 c 2 - 0 25.7001953125 l 2 - 0 99.900390625 60.2001953125 160.099609375 134.400390625 160.200195312 c 2 - 151.099609375 160.200195312 l 1 - 173.400390625 150 198 144.200195312 224 144.200195312 c 0 - 250 144.200195312 274.700195312 150 296.900390625 160.200195312 c 1 - 313.599609375 160.200195312 l 2 - 326.900390625 160.200195312 339.599609375 157.599609375 351.799804688 154 c 1 - 351.799804688 80.900390625 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" u s e r hyphen t a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" U s e r hyphen T a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" U s e r hyphen t a g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" U S E R hyphen T A G -EndChar - -StartChar: user-tie -Encoding: 62728 62728 632 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 192 m 0 - 153.299804688 192 96 249.299804688 96 320 c 0 - 96 390.700195312 153.299804688 448 224 448 c 0 - 294.700195312 448 352 390.700195312 352 320 c 0 - 352 249.299804688 294.700195312 192 224 192 c 0 -319.799804688 159.400390625 m 1 - 391.099609375 156 448 97.7001953125 448 25.599609375 c 2 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 - 0 25.599609375 l 2 - 0 97.7001953125 56.900390625 156 128.200195312 159.400390625 c 1 - 176 -32 l 1 - 208 104 l 1 - 176 160 l 1 - 272 160 l 1 - 240 104 l 1 - 272 -32 l 1 - 319.799804688 159.400390625 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" u s e r hyphen t i e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" U s e r hyphen T i e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" U s e r hyphen t i e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" U S E R hyphen T I E -EndChar - -StartChar: users-cog -Encoding: 62729 62729 633 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -610.5 106.700195312 m 1 - 636.299804688 91.7998046875 l 2 - 639.200195312 90.099609375 640.599609375 86.599609375 639.599609375 83.2998046875 c 0 - 632.900390625 61.7001953125 621.400390625 42.099609375 606.400390625 25.900390625 c 0 - 604.099609375 23.400390625 600.299804688 22.7998046875 597.400390625 24.5 c 2 - 571.599609375 39.400390625 l 1 - 560.700195312 30.099609375 548.200195312 22.900390625 534.700195312 18.099609375 c 1 - 534.700195312 -11.7001953125 l 2 - 534.700195312 -15.099609375 532.299804688 -18.099609375 529 -18.7998046875 c 0 - 507.799804688 -23.599609375 485.099609375 -23.7998046875 462.799804688 -18.7998046875 c 0 - 459.5 -18.099609375 457.099609375 -15.099609375 457.099609375 -11.7001953125 c 2 - 457.099609375 18.099609375 l 1 - 443.599609375 22.900390625 431.099609375 30.099609375 420.200195312 39.400390625 c 1 - 394.400390625 24.5 l 2 - 391.400390625 22.7998046875 387.700195312 23.400390625 385.400390625 25.900390625 c 0 - 370.400390625 42.2001953125 358.900390625 61.7001953125 352.200195312 83.2998046875 c 0 - 351.200195312 86.599609375 352.5 90.099609375 355.5 91.7998046875 c 2 - 381.299804688 106.700195312 l 1 - 378.700195312 120.799804688 378.700195312 135.200195312 381.299804688 149.299804688 c 1 - 355.5 164.200195312 l 2 - 352.599609375 165.900390625 351.200195312 169.400390625 352.200195312 172.700195312 c 0 - 358.900390625 194.299804688 370.400390625 213.900390625 385.400390625 230.099609375 c 0 - 387.700195312 232.599609375 391.5 233.200195312 394.400390625 231.5 c 2 - 420.200195312 216.599609375 l 1 - 431.099609375 225.900390625 443.599609375 233.099609375 457.099609375 237.900390625 c 1 - 457.099609375 267.700195312 l 2 - 457.099609375 271.099609375 459.5 274.099609375 462.799804688 274.799804688 c 0 - 484 279.599609375 506.700195312 279.799804688 529 274.799804688 c 0 - 532.299804688 274.099609375 534.700195312 271.099609375 534.700195312 267.700195312 c 2 - 534.700195312 237.900390625 l 1 - 548.200195312 233.099609375 560.700195312 225.900390625 571.599609375 216.599609375 c 1 - 597.400390625 231.5 l 2 - 600.400390625 233.200195312 604.099609375 232.599609375 606.400390625 230.099609375 c 0 - 621.400390625 213.900390625 632.900390625 194.299804688 639.599609375 172.700195312 c 0 - 640.599609375 169.400390625 639.299804688 165.900390625 636.299804688 164.200195312 c 2 - 610.5 149.299804688 l 1 - 613.099609375 135.200195312 613.099609375 120.799804688 610.5 106.700195312 c 1 -496 79.5 m 0 - 522.799804688 79.5 544.5 101.299804688 544.5 128 c 0 - 544.5 154.700195312 522.700195312 176.5 496 176.5 c 0 - 469.299804688 176.5 447.5 154.700195312 447.5 128 c 0 - 447.5 101.299804688 469.200195312 79.5 496 79.5 c 0 -96 224 m 0 - 60.7001953125 224 32 252.700195312 32 288 c 0 - 32 323.299804688 60.7001953125 352 96 352 c 0 - 131.299804688 352 160 323.299804688 160 288 c 0 - 160 252.700195312 131.299804688 224 96 224 c 0 -320 192 m 0 - 258.099609375 192 208 242.099609375 208 304 c 0 - 208 365.900390625 258 415.900390625 319.900390625 415.900390625 c 0 - 381.799804688 415.900390625 431.900390625 365.799804688 431.900390625 303.900390625 c 0 - 431.900390625 286.700195312 427.700195312 270.5 420.700195312 255.900390625 c 0 - 419.900390625 255.400390625 419.099609375 255 418.299804688 254.5 c 2 - 410.400390625 259.099609375 l 2 - 404.5 262.599609375 397.700195312 264.400390625 390.799804688 264.400390625 c 0 - 379.799804688 264.400390625 369.299804688 259.799804688 361.900390625 251.799804688 c 0 - 346.099609375 234.700195312 333.900390625 214.299804688 325.599609375 192.599609375 c 0 - 323.700195312 192.5 321.900390625 192 320 192 c 0 -425.200195312 -2.5 m 2 - 425.200195312 -11.7001953125 l 2 - 425.200195312 -19.2001953125 427.700195312 -26 431.400390625 -32 c 1 - 176 -32 l 2 - 149.5 -32 128 -10.5 128 16 c 2 - 128 44.7998046875 l 2 - 128 108.400390625 179.599609375 160 243.299804688 160 c 2 - 251.599609375 160 l 1 - 272.5 150 295.5 144 320.099609375 144 c 0 - 323.400390625 144 326.599609375 144.400390625 329.900390625 144.599609375 c 0 - 332.700195312 141.5 335.900390625 138.700195312 339.700195312 136.5 c 2 - 347.599609375 131.900390625 l 2 - 347.5 129.299804688 347.5 126.700195312 347.599609375 124.099609375 c 0 - 346.700195312 123.5 311.099609375 108.299804688 321.799804688 73.7998046875 c 0 - 329.700195312 48.099609375 343.700195312 24 362 4.2001953125 c 0 - 369.5 -3.7998046875 380 -8.400390625 390.900390625 -8.400390625 c 0 - 403.099609375 -8.400390625 410.200195312 -3.400390625 418.400390625 1.400390625 c 0 - 420.599609375 0.099609375 422.900390625 -1.2998046875 425.200195312 -2.5 c 2 -173.099609375 173.400390625 m 1 - 132.799804688 151.299804688 104.200195312 111.400390625 97.900390625 64 c 1 - 32 64 l 2 - 14.2998046875 64 0 78.2998046875 0 96 c 2 - 0 128 l 2 - 0 163.299804688 28.7001953125 192 64 192 c 2 - 128 192 l 2 - 145.599609375 192 161.5 184.900390625 173.099609375 173.400390625 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" u s e r s hyphen c o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" U s e r s hyphen C o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" U s e r s hyphen c o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" U S E R S hyphen C O G -EndChar - -StartChar: balance-scale-left -Encoding: 62741 62741 634 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528 0 m 2 - 536.83984375 0 544 -7.16015625 544.009765625 -16 c 2 - 544.009765625 -48 l 2 - 544.009765625 -56.83984375 536.849609375 -64 528.009765625 -64 c 2 - 304.009765625 -64 l 2 - 295.169921875 -64 288.009765625 -56.83984375 288.009765625 -48 c 2 - 288.009765625 294.75 l 1 - 283.450195312 296.75 279.08984375 299.099609375 275.01953125 301.870117188 c 2 - 132.969726562 254.240234375 l 2 - 124.58984375 251.4296875 115.51953125 255.940429688 112.709960938 264.3203125 c 2 - 102.540039062 294.66015625 l 2 - 99.73046875 303.040039062 104.240234375 312.110351562 112.620117188 314.919921875 c 2 - 241.009765625 357.969726562 l 2 - 240.58984375 361.290039062 240 364.5703125 240 368 c 0 - 240 412.1796875 275.8203125 448 320 448 c 0 - 349.690429688 448 375.299804688 431.639648438 389.110351562 407.629882812 c 1 - 507.030273438 447.16015625 l 2 - 515.41015625 449.969726562 524.48046875 445.459960938 527.290039062 437.080078125 c 2 - 537.459960938 406.740234375 l 2 - 540.26953125 398.360351562 535.759765625 389.290039062 527.379882812 386.48046875 c 2 - 395.379882812 342.219726562 l 1 - 388.099609375 320.969726562 372.419921875 303.690429688 352 294.75 c 1 - 352 0 l 1 - 528 0 l 2 -639.98046875 144 m 0 - 639.98046875 99.8203125 582.690429688 64 512 64 c 0 - 441.309570312 64 384 99.8203125 384 144 c 1 - 384.01953125 144 l 1 - 384.01953125 159.669921875 381.940429688 151.25 469.059570312 325.509765625 c 0 - 486.740234375 360.870117188 537.280273438 360.799804688 554.9296875 325.509765625 c 0 - 641.3203125 152.73046875 639.98046875 160.1796875 639.98046875 144 c 0 -440 160 m 1 - 584 160 l 1 - 512 304 l 1 - 440 160 l 1 -170.9296875 197.509765625 m 0 - 257.3203125 24.73046875 255.98046875 32.1796875 255.98046875 16 c 1 - 256 16 l 1 - 256 -28.1796875 198.690429688 -64 128 -64 c 0 - 57.3095703125 -64 0 -28.1796875 0 16 c 1 - 0.01953125 16 l 1 - 0.01953125 31.669921875 -2.0595703125 23.25 85.0595703125 197.509765625 c 0 - 102.740234375 232.870117188 153.280273438 232.799804688 170.9296875 197.509765625 c 0 -56 32 m 1 - 200 32 l 1 - 128 176 l 1 - 56 32 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" b a l a n c e hyphen s c a l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" B a l a n c e hyphen S c a l e hyphen L e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" B a l a n c e hyphen s c a l e hyphen l e f t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" B A L A N C E hyphen S C A L E hyphen L E F T -EndChar - -StartChar: balance-scale-right -Encoding: 62742 62742 635 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 -16 m 2 - 96 -7.16015625 103.16015625 0 112 0 c 2 - 287.990234375 0 l 1 - 287.990234375 294.759765625 l 1 - 267.5703125 303.690429688 251.889648438 320.98046875 244.610351562 342.23046875 c 1 - 112.610351562 386.490234375 l 2 - 104.240234375 389.299804688 99.7197265625 398.370117188 102.530273438 406.75 c 2 - 112.700195312 437.08984375 l 2 - 115.509765625 445.459960938 124.580078125 449.98046875 132.959960938 447.169921875 c 2 - 250.889648438 407.629882812 l 1 - 264.700195312 431.639648438 290.309570312 448 320 448 c 0 - 364.1796875 448 400 412.1796875 400 368 c 0 - 400 364.5703125 399.41015625 361.290039062 398.990234375 357.969726562 c 2 - 527.389648438 314.919921875 l 2 - 535.759765625 312.110351562 540.280273438 303.040039062 537.469726562 294.66015625 c 2 - 527.299804688 264.3203125 l 2 - 524.490234375 255.950195312 515.419921875 251.4296875 507.040039062 254.240234375 c 2 - 364.990234375 301.870117188 l 2 - 360.919921875 299.099609375 356.559570312 296.75 352 294.75 c 1 - 352 -48 l 2 - 352 -56.83984375 344.83984375 -64 336 -64 c 2 - 112 -64 l 2 - 103.16015625 -64 96 -56.83984375 96 -48 c 2 - 96 -16 l 2 -0 144 m 0 - 0 160.1796875 -1.3203125 152.73046875 85.0595703125 325.509765625 c 0 - 102.709960938 360.799804688 153.25 360.870117188 170.9296875 325.509765625 c 0 - 258.059570312 151.25 255.98046875 159.669921875 255.98046875 144 c 1 - 256 144 l 1 - 256 99.8203125 198.690429688 64 128 64 c 0 - 57.3095703125 64 0 99.8203125 0 144 c 0 -56 160 m 1 - 200 160 l 1 - 128 304 l 1 - 56 160 l 1 -384.01953125 16 m 1 - 384.01953125 32.1796875 382.6796875 24.73046875 469.059570312 197.509765625 c 0 - 486.709960938 232.799804688 537.25 232.870117188 554.9296875 197.509765625 c 0 - 642.059570312 23.25 639.98046875 31.669921875 639.98046875 16 c 1 - 640 16 l 1 - 640 -28.1796875 582.690429688 -64 512 -64 c 0 - 441.309570312 -64 384 -28.1796875 384 16 c 1 - 384.01953125 16 l 1 -440 32 m 1 - 584 32 l 1 - 512 176 l 1 - 440 32 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" b a l a n c e hyphen s c a l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" B a l a n c e hyphen S c a l e hyphen R i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" B a l a n c e hyphen s c a l e hyphen r i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" B A L A N C E hyphen S C A L E hyphen R I G H T -EndChar - -StartChar: blender -Encoding: 62743 62743 636 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 64 m 2 - 451.349609375 64 480 35.349609375 480 0 c 2 - 480 -32 l 2 - 480 -49.669921875 465.669921875 -64 448 -64 c 2 - 128 -64 l 2 - 110.330078125 -64 96 -49.669921875 96 -32 c 2 - 96 0 l 2 - 96 35.349609375 124.650390625 64 160 64 c 2 - 416 64 l 2 -288 -32 m 0 - 305.669921875 -32 320 -17.669921875 320 0 c 0 - 320 17.669921875 305.669921875 32 288 32 c 0 - 270.330078125 32 256 17.669921875 256 0 c 0 - 256 -17.669921875 270.330078125 -32 288 -32 c 0 -328 384 m 2 - 323.580078125 384 320 380.419921875 320 376 c 2 - 320 360 l 2 - 320 355.580078125 323.580078125 352 328 352 c 2 - 485.8203125 352 l 1 - 468.360351562 288 l 1 - 328 288 l 2 - 323.580078125 288 320 284.419921875 320 280 c 2 - 320 264 l 2 - 320 259.580078125 323.580078125 256 328 256 c 2 - 459.639648438 256 l 1 - 442.1796875 192 l 1 - 328 192 l 2 - 323.580078125 192 320 188.419921875 320 184 c 2 - 320 168 l 2 - 320 163.580078125 323.580078125 160 328 160 c 2 - 433.459960938 160 l 1 - 416 96 l 1 - 160 96 l 1 - 151.26953125 192 l 1 - 48 192 l 2 - 21.490234375 192 0 213.490234375 0 240 c 2 - 0 400 l 2 - 0 426.509765625 21.490234375 448 48 448 c 2 - 512 448 l 1 - 494.540039062 384 l 1 - 328 384 l 2 -64 256 m 1 - 145.459960938 256 l 1 - 133.8203125 384 l 1 - 64 384 l 1 - 64 256 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" b l e n d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" B l e n d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" B L E N D E R -EndChar - -StartChar: book-open -Encoding: 62744 62744 637 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -542.219726562 415.950195312 m 0 - 560.639648438 416.990234375 576 402.959960938 575.990234375 385.25 c 2 - 575.990234375 47.41015625 l 2 - 575.990234375 31.1796875 562.860351562 17.6396484375 545.969726562 16.75 c 0 - 496.5 14.150390625 396.450195312 4.650390625 327.26953125 -30.169921875 c 0 - 316.620117188 -35.5302734375 303.990234375 -28.23046875 303.990234375 -16.6796875 c 2 - 303.990234375 347.190429688 l 2 - 303.990234375 352.469726562 306.620117188 357.51953125 311.259765625 360.360351562 c 0 - 378.5 401.51953125 487.419921875 412.83984375 542.219726562 415.950195312 c 0 -264.73046875 360.360351562 m 0 - 269.379882812 357.509765625 272 352.66015625 272 347.370117188 c 2 - 272 -16.75 l 2 - 272 -28.26953125 259.41015625 -35.5595703125 248.790039062 -30.2099609375 c 0 - 179.610351562 4.6298828125 79.509765625 14.1396484375 30.01953125 16.740234375 c 0 - 13.1298828125 17.6201171875 0 31.16015625 0 47.400390625 c 2 - 0 385.25 l 2 - 0 402.959960938 15.3603515625 416.990234375 33.7802734375 415.950195312 c 0 - 88.580078125 412.830078125 197.5 401.51953125 264.73046875 360.360351562 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" b o o k hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" B o o k hyphen O p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" B o o k hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" B O O K hyphen O P E N -EndChar - -StartChar: broadcast-tower -Encoding: 62745 62745 638 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -150.940429688 256 m 2 - 143.9296875 256 137.48046875 260.5 135.540039062 267.240234375 c 0 - 130.639648438 284.209960938 128 301.879882812 128 320 c 0 - 128 338.120117188 130.639648438 355.790039062 135.530273438 372.76953125 c 0 - 137.48046875 379.509765625 143.9296875 384 150.940429688 384 c 2 - 184.669921875 384 l 2 - 195.6796875 384 203.290039062 373.169921875 199.530273438 362.8203125 c 0 - 194.599609375 349.240234375 191.98046875 334.83984375 191.98046875 320 c 0 - 191.98046875 305.16015625 194.599609375 290.759765625 199.530273438 277.1796875 c 0 - 203.280273438 266.830078125 195.6796875 256 184.669921875 256 c 2 - 150.940429688 256 l 2 -89.919921875 424.66015625 m 0 - 73.3798828125 393.51953125 40.3095703125 308.690429688 90.08984375 215.370117188 c 0 - 95.75 204.740234375 88.16015625 192 76.1396484375 192 c 2 - 41.2998046875 192 l 2 - 35.1103515625 192 29.3095703125 195.509765625 26.6904296875 201.139648438 c 0 - 3.1201171875 251.669921875 0 295.25 0 320 c 0 - 0 362.349609375 9.400390625 402.459960938 25.8896484375 438.690429688 c 0 - 28.490234375 444.41015625 34.3603515625 448 40.6298828125 448 c 2 - 75.9599609375 448 l 2 - 87.9697265625 448 95.5595703125 435.280273438 89.919921875 424.66015625 c 0 -614.059570312 438.709960938 m 0 - 630.580078125 402.48046875 640 362.360351562 640 320 c 0 - 640 277.639648438 630.5703125 237.51953125 614.040039062 201.290039062 c 0 - 611.440429688 195.580078125 605.580078125 192 599.309570312 192 c 2 - 564.080078125 192 l 2 - 551.969726562 192 544.450195312 204.83984375 550.169921875 215.51953125 c 0 - 598.309570312 305.330078125 568.16015625 390.459960938 549.889648438 424.75 c 0 - 544.25 435.33984375 551.9296875 448 563.91015625 448 c 2 - 599.330078125 448 l 2 - 605.599609375 448 611.459960938 444.419921875 614.059570312 438.709960938 c 0 -489.059570312 384 m 2 - 496.0703125 384 502.51953125 379.509765625 504.459960938 372.759765625 c 0 - 509.360351562 355.790039062 512 338.120117188 512 320 c 0 - 512 301.879882812 509.370117188 284.209960938 504.469726562 267.240234375 c 0 - 502.51953125 260.490234375 496.080078125 256 489.059570312 256 c 2 - 455.330078125 256 l 2 - 444.3203125 256 436.709960938 266.830078125 440.469726562 277.1796875 c 0 - 445.400390625 290.759765625 448.01953125 305.16015625 448.01953125 320 c 0 - 448.01953125 334.83984375 445.400390625 349.240234375 440.469726562 362.8203125 c 0 - 436.719726562 373.169921875 444.3203125 384 455.330078125 384 c 2 - 489.059570312 384 l 2 -372.759765625 283.879882812 m 1 - 503.259765625 -29.5302734375 l 2 - 506.650390625 -37.6796875 502.799804688 -47.0498046875 494.650390625 -50.4501953125 c 2 - 465.139648438 -62.759765625 l 2 - 456.990234375 -66.16015625 447.629882812 -62.3095703125 444.23046875 -54.150390625 c 2 - 395.030273438 64 l 1 - 244.959960938 64 l 1 - 195.76953125 -54.150390625 l 2 - 192.379882812 -62.2998046875 183.009765625 -66.16015625 174.860351562 -62.759765625 c 2 - 145.349609375 -50.4501953125 l 2 - 137.200195312 -47.0498046875 133.33984375 -37.6796875 136.740234375 -29.5302734375 c 2 - 267.240234375 283.879882812 l 1 - 260.190429688 294.169921875 256.040039062 306.58984375 256.040039062 320 c 0 - 256.040039062 355.349609375 284.6796875 384 320 384 c 0 - 355.330078125 384 383.959960938 355.349609375 383.959960938 320 c 0 - 383.959960938 306.58984375 379.809570312 294.169921875 372.759765625 283.879882812 c 1 -271.620117188 128 m 1 - 368.379882812 128 l 1 - 320 244.190429688 l 1 - 271.620117188 128 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" b r o a d c a s t hyphen t o w e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" B r o a d c a s t hyphen T o w e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" B r o a d c a s t hyphen t o w e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" B R O A D C A S T hyphen T O W E R -EndChar - -StartChar: broom -Encoding: 62746 62746 639 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256.469726562 231.23046875 m 1 - 343.200195312 122.049804688 l 1 - 343.200195312 122.049804688 326.599609375 19.6904296875 266.629882812 -28.0703125 c 0 - 206.66015625 -75.849609375 0 -62.1904296875 0 -62.1904296875 c 1 - 0 -62.1904296875 3.7998046875 -39.0498046875 11 -6.759765625 c 1 - 105.620117188 105.41015625 l 2 - 109.58984375 110.110351562 104.75 117.030273438 98.9697265625 114.91015625 c 2 - 38.5703125 92.8203125 l 1 - 53.009765625 134.48046875 71.2900390625 172.860351562 93.169921875 190.290039062 c 0 - 153.139648438 238.049804688 256.469726562 231.23046875 256.469726562 231.23046875 c 1 -636.530273438 416.969726562 m 2 - 642.01953125 410.059570312 640.870117188 400.009765625 633.98046875 394.530273438 c 2 - 401.5 216.73046875 l 1 - 435.58984375 173.809570312 l 2 - 440.669921875 167.41015625 437.25 157.900390625 429.25 156.209960938 c 2 - 370.450195312 143.759765625 l 1 - 283.719726562 252.940429688 l 1 - 309.049804688 307.490234375 l 2 - 312.5 314.91015625 322.549804688 316.110351562 327.639648438 309.700195312 c 2 - 361.780273438 266.73046875 l 1 - 594.259765625 444.530273438 l 2 - 601.150390625 450.01953125 611.1796875 448.870117188 616.669921875 441.969726562 c 2 - 636.530273438 416.969726562 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" b r o o m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" B r o o m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" B R O O M -EndChar - -StartChar: chalkboard -Encoding: 62747 62747 640 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 384 m 1 - 96 32 l 1 - 32 32 l 1 - 32 408 l 2 - 32 430.059570312 49.9404296875 448 72 448 c 2 - 568 448 l 2 - 590.059570312 448 608 430.059570312 608 408 c 2 - 608 32 l 1 - 544 32 l 1 - 544 384 l 1 - 96 384 l 1 -624 0 m 2 - 632.83984375 0 640 -7.16015625 640 -16 c 2 - 640 -48 l 2 - 640 -56.83984375 632.83984375 -64 624 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 288 0 l 1 - 288 64 l 1 - 480 64 l 1 - 480 0 l 1 - 624 0 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" c h a l k b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C h a l k b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C H A L K B O A R D -EndChar - -StartChar: chalkboard-teacher -Encoding: 62748 62748 641 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -208 96 m 0 - 270.059570312 96 320.330078125 45.51953125 320 -16.6201171875 c 0 - 319.860351562 -42.8798828125 298.26953125 -64 272 -64 c 2 - 48 -64 l 2 - 21.73046875 -64 0.1396484375 -42.8798828125 0 -16.6201171875 c 0 - -0.330078125 45.51953125 49.9404296875 96 112 96 c 0 - 114.389648438 96 116.76953125 95.650390625 119.049804688 94.91015625 c 0 - 132.01953125 90.7001953125 145.650390625 88 160 88 c 0 - 174.349609375 88 187.98046875 90.7001953125 200.940429688 94.91015625 c 0 - 203.219726562 95.650390625 205.610351562 96 208 96 c 0 -160 128 m 0 - 106.98046875 128 64 170.98046875 64 224 c 0 - 64 277.01953125 106.98046875 320 160 320 c 0 - 213.01953125 320 256 277.01953125 256 224 c 0 - 256 170.98046875 213.01953125 128 160 128 c 0 -592 448 m 2 - 618.469726562 448 640 425.75 640 398.41015625 c 2 - 640 81.58984375 l 2 - 640 54.25 618.469726562 32 592 32 c 2 - 347.450195312 32 l 1 - 340.879882812 57.26953125 326.860351562 79.3095703125 307.759765625 96 c 1 - 384 96 l 1 - 384 160 l 1 - 512 160 l 1 - 512 96 l 1 - 576 96 l 1 - 576 384 l 1 - 224 384 l 1 - 224 334.200195312 l 1 - 205.099609375 345.219726562 183.419921875 352 160 352 c 1 - 160 398.41015625 l 2 - 160 425.75 181.530273438 448 208 448 c 2 - 592 448 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" c h a l k b o a r d hyphen t e a c h e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" C h a l k b o a r d hyphen T e a c h e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" C h a l k b o a r d hyphen t e a c h e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" C H A L K B O A R D hyphen T E A C H E R -EndChar - -StartChar: church -Encoding: 62749 62749 642 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464.459960938 201.3203125 m 2 - 474.099609375 195.540039062 480 185.120117188 480 173.879882812 c 2 - 480 -64 l 1 - 384 -64 l 1 - 384 32 l 2 - 384 67.349609375 355.349609375 96 320 96 c 0 - 284.650390625 96 256 67.349609375 256 32 c 2 - 256 -64 l 1 - 160 -64 l 1 - 160 173.879882812 l 2 - 160 183.8828125 166.961914062 196.17578125 175.540039062 201.3203125 c 2 - 288 268.799804688 l 1 - 288 320 l 1 - 240 320 l 2 - 231.16015625 320 224 327.16015625 224 336 c 2 - 224 368 l 2 - 224 376.83984375 231.16015625 384 240 384 c 2 - 288 384 l 1 - 288 432 l 2 - 288 440.83984375 295.16015625 448 304 448 c 2 - 336 448 l 2 - 344.83984375 448 352 440.83984375 352 432 c 2 - 352 384 l 1 - 400 384 l 2 - 408.83984375 384 416 376.83984375 416 368 c 2 - 416 336 l 2 - 416 327.16015625 408.83984375 320 400 320 c 2 - 352 320 l 1 - 352 268.799804688 l 1 - 464.459960938 201.3203125 l 2 -0 52.0400390625 m 2 - 0.001953125 63.685546875 8.689453125 76.865234375 19.3896484375 81.4599609375 c 2 - 128 128 l 1 - 128 -64 l 1 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 52.0400390625 l 2 -620.610351562 81.4599609375 m 2 - 632.370117188 76.41015625 640 64.83984375 640 52.0400390625 c 2 - 640 -48 l 2 - 640 -56.83984375 632.83984375 -64 624 -64 c 2 - 512 -64 l 1 - 512 128 l 1 - 620.610351562 81.4599609375 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" c h u r c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C h u r c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C H U R C H -EndChar - -StartChar: coins -Encoding: 62750 62750 643 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 42.7001953125 m 1 - 41.2998046875 13.599609375 116.799804688 0 192 0 c 0 - 267.200195312 0 342.700195312 13.599609375 384 42.7001953125 c 1 - 384 0 l 2 - 384 -35.2998046875 298 -64 192 -64 c 0 - 86 -64 0 -35.2998046875 0 0 c 2 - 0 42.7001953125 l 1 -320 320 m 0 - 214 320 128 348.700195312 128 384 c 0 - 128 419.299804688 214 448 320 448 c 0 - 426 448 512 419.299804688 512 384 c 0 - 512 348.700195312 426 320 320 320 c 0 -0 147.599609375 m 1 - 41.2998046875 113.599609375 116.900390625 96 192 96 c 0 - 267.099609375 96 342.700195312 113.599609375 384 147.599609375 c 1 - 384 96 l 2 - 384 60.7001953125 298 32 192 32 c 0 - 86 32 0 60.7001953125 0 96 c 2 - 0 147.599609375 l 1 -416 136.599609375 m 1 - 416 200.200195312 l 1 - 454.700195312 207.099609375 488.799804688 218.299804688 512 234.700195312 c 1 - 512 192 l 2 - 512 168.299804688 473.299804688 147.700195312 416 136.599609375 c 1 -192 288 m 0 - 298 288 384 252.200195312 384 208 c 0 - 384 163.799804688 298 128 192 128 c 0 - 86 128 0 163.799804688 0 208 c 0 - 0 252.200195312 86 288 192 288 c 0 -411.299804688 231.700195312 m 1 - 402.5 255.400390625 380.799804688 274.599609375 351.299804688 288.900390625 c 1 - 415.5 292.099609375 476.5 305.599609375 512 330.700195312 c 1 - 512 288 l 2 - 512 263.700195312 471.299804688 242.5 411.299804688 231.700195312 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" c o i n s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" C o i n s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" C O I N S -EndChar - -StartChar: compact-disc -Encoding: 62751 62751 644 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -88 192 m 1 - 88 280.200195312 159.799804688 352 248 352 c 1 - 248 384 l 1 - 142.099609375 384 56 297.900390625 56 192 c 1 - 88 192 l 1 -248 96 m 0 - 301 96 344 139 344 192 c 0 - 344 245 301 288 248 288 c 0 - 195 288 152 245 152 192 c 0 - 152 139 195 96 248 96 c 0 -248 224 m 0 - 265.700195312 224 280 209.700195312 280 192 c 0 - 280 174.299804688 265.700195312 160 248 160 c 0 - 230.299804688 160 216 174.299804688 216 192 c 0 - 216 209.700195312 230.299804688 224 248 224 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" c o m p a c t hyphen d i s c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C o m p a c t hyphen D i s c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C o m p a c t hyphen d i s c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C O M P A C T hyphen D I S C -EndChar - -StartChar: crow -Encoding: 62752 62752 645 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 416 m 2 - 597.01953125 416 640 387.349609375 640 352 c 1 - 544 336 l 1 - 544 256 l 2 - 544 168.740234375 485.740234375 95.2001953125 406.030273438 71.8603515625 c 1 - 447.26953125 -39.669921875 l 2 - 449.540039062 -45.900390625 446.330078125 -52.7802734375 440.099609375 -55.0498046875 c 2 - 417.549804688 -63.259765625 l 2 - 411.3203125 -65.5302734375 404.440429688 -62.3203125 402.169921875 -56.08984375 c 2 - 357.66015625 64.2900390625 l 2 - 355.759765625 64.23046875 353.91015625 64 352 64 c 2 - 312.940429688 64 l 1 - 351.26953125 -39.6796875 l 2 - 353.540039062 -45.91015625 350.330078125 -52.7900390625 344.099609375 -55.0595703125 c 2 - 321.549804688 -63.26953125 l 2 - 315.3203125 -65.5400390625 308.440429688 -62.330078125 306.169921875 -56.099609375 c 2 - 261.759765625 64 l 1 - 165.26953125 64 l 1 - 43.73046875 3.23046875 l 2 - 23.6396484375 -6.8095703125 0 7.7998046875 0 30.259765625 c 0 - 0.001953125 38.599609375 5.41796875 49.427734375 12.08984375 54.4296875 c 2 - 384 347.01953125 l 1 - 384 368 l 2 - 384 412.1796875 419.8203125 448 464 448 c 0 - 490.08984375 448 513.040039062 435.3203125 527.639648438 416 c 1 - 544 416 l 2 -464 344 m 0 - 477.25 344 488 354.75 488 368 c 0 - 488 381.259765625 477.25 392 464 392 c 0 - 450.75 392 440 381.259765625 440 368 c 0 - 440 354.75 450.75 344 464 344 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" c r o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C r o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C R O W -EndChar - -StartChar: crown -Encoding: 62753 62753 646 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528 0 m 2 - 536.799804688 0 544 -7.2001953125 544 -16 c 2 - 544 -48 l 2 - 544 -56.7998046875 536.799804688 -64 528 -64 c 2 - 112 -64 l 2 - 103.200195312 -64 96 -56.7998046875 96 -48 c 2 - 96 -16 l 2 - 96 -7.2001953125 103.200195312 0 112 0 c 2 - 528 0 l 2 -592 320 m 0 - 618.5 320 640 298.5 640 272 c 0 - 640 245.5 618.5 224 592 224 c 0 - 589.400390625 224 586.799804688 224.400390625 584.299804688 224.799804688 c 2 - 512 32 l 1 - 128 32 l 1 - 55.7001953125 224.799804688 l 2 - 53.2001953125 224.400390625 50.599609375 224 48 224 c 0 - 21.5 224 0 245.5 0 272 c 0 - 0 298.5 21.599609375 320 48.099609375 320 c 0 - 74.599609375 320 96.099609375 298.5 96.099609375 272 c 0 - 96.099609375 264.900390625 94.400390625 258.200195312 91.7001953125 252.200195312 c 1 - 164 208.799804688 l 2 - 179.299804688 199.599609375 199.299804688 204.799804688 208.200195312 220.400390625 c 2 - 289.700195312 363 l 1 - 279 371.799804688 272 385 272 400 c 0 - 272 426.5 293.5 448 320 448 c 0 - 346.5 448 368 426.5 368 400 c 0 - 368 385 361 371.799804688 350.299804688 363 c 1 - 431.799804688 220.400390625 l 2 - 440.700195312 204.799804688 460.599609375 199.599609375 476 208.799804688 c 2 - 548.400390625 252.200195312 l 1 - 545.599609375 258.299804688 544 264.900390625 544 272 c 0 - 544 298.5 565.5 320 592 320 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" c r o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C r o w n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C R O W N -EndChar - -StartChar: dice -Encoding: 62754 62754 647 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -592 256 m 2 - 618.509765625 256 640 234.509765625 640 208 c 2 - 640 -16 l 2 - 640 -42.509765625 618.509765625 -64 592 -64 c 2 - 368 -64 l 2 - 341.490234375 -64 320 -42.509765625 320 -16 c 2 - 320 30.419921875 l 1 - 456.259765625 166.6796875 l 2 - 480.379882812 190.799804688 485.950195312 226.41015625 473.259765625 256 c 1 - 592 256 l 2 -480 72 m 0 - 493.25 72 504 82.75 504 96 c 0 - 504 109.259765625 493.25 120 480 120 c 0 - 466.75 120 456 109.259765625 456 96 c 0 - 456 82.75 466.75 72 480 72 c 0 -433.629882812 258.700195312 m 2 - 452.790039062 239.540039062 452.790039062 208.469726562 433.629882812 189.299804688 c 2 - 258.690429688 14.3701171875 l 2 - 239.530273438 -4.7900390625 208.459960938 -4.7900390625 189.299804688 14.3701171875 c 2 - 14.3701171875 189.309570312 l 2 - -4.7900390625 208.469726562 -4.7900390625 239.540039062 14.3701171875 258.700195312 c 2 - 189.309570312 433.629882812 l 2 - 208.469726562 452.790039062 239.540039062 452.790039062 258.700195312 433.629882812 c 2 - 433.629882812 258.700195312 l 2 -96 200 m 0 - 109.25 200 120 210.75 120 224 c 0 - 120 237.259765625 109.25 248 96 248 c 0 - 82.75 248 72 237.259765625 72 224 c 0 - 72 210.75 82.75 200 96 200 c 0 -224 72 m 0 - 237.25 72 248 82.75 248 96 c 0 - 248 109.259765625 237.25 120 224 120 c 0 - 210.75 120 200 109.259765625 200 96 c 0 - 200 82.75 210.75 72 224 72 c 0 -224 200 m 0 - 237.25 200 248 210.75 248 224 c 0 - 248 237.259765625 237.25 248 224 248 c 0 - 210.75 248 200 237.259765625 200 224 c 0 - 200 210.75 210.75 200 224 200 c 0 -224 328 m 0 - 237.25 328 248 338.75 248 352 c 0 - 248 365.259765625 237.25 376 224 376 c 0 - 210.75 376 200 365.259765625 200 352 c 0 - 200 338.75 210.75 328 224 328 c 0 -352 200 m 0 - 365.25 200 376 210.75 376 224 c 0 - 376 237.259765625 365.25 248 352 248 c 0 - 338.75 248 328 237.259765625 328 224 c 0 - 328 210.75 338.75 200 352 200 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" d i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" D i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" D I C E -EndChar - -StartChar: dice-five -Encoding: 62755 62755 648 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 416 m 2 - 419.349609375 416 448 387.349609375 448 352 c 2 - 448 32 l 2 - 448 -3.349609375 419.349609375 -32 384 -32 c 2 - 64 -32 l 2 - 28.650390625 -32 0 -3.349609375 0 32 c 2 - 0 352 l 2 - 0 387.349609375 28.650390625 416 64 416 c 2 - 384 416 l 2 -128 64 m 0 - 145.669921875 64 160 78.330078125 160 96 c 0 - 160 113.669921875 145.669921875 128 128 128 c 0 - 110.330078125 128 96 113.669921875 96 96 c 0 - 96 78.330078125 110.330078125 64 128 64 c 0 -128 256 m 0 - 145.669921875 256 160 270.330078125 160 288 c 0 - 160 305.669921875 145.669921875 320 128 320 c 0 - 110.330078125 320 96 305.669921875 96 288 c 0 - 96 270.330078125 110.330078125 256 128 256 c 0 -224 160 m 0 - 241.669921875 160 256 174.330078125 256 192 c 0 - 256 209.669921875 241.669921875 224 224 224 c 0 - 206.330078125 224 192 209.669921875 192 192 c 0 - 192 174.330078125 206.330078125 160 224 160 c 0 -320 64 m 0 - 337.669921875 64 352 78.330078125 352 96 c 0 - 352 113.669921875 337.669921875 128 320 128 c 0 - 302.330078125 128 288 113.669921875 288 96 c 0 - 288 78.330078125 302.330078125 64 320 64 c 0 -320 256 m 0 - 337.669921875 256 352 270.330078125 352 288 c 0 - 352 305.669921875 337.669921875 320 320 320 c 0 - 302.330078125 320 288 305.669921875 288 288 c 0 - 288 270.330078125 302.330078125 256 320 256 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" d i c e hyphen f i v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" D i c e hyphen F i v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" D i c e hyphen f i v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" D I C E hyphen F I V E -EndChar - -StartChar: dice-four -Encoding: 62756 62756 649 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 416 m 2 - 419.349609375 416 448 387.349609375 448 352 c 2 - 448 32 l 2 - 448 -3.349609375 419.349609375 -32 384 -32 c 2 - 64 -32 l 2 - 28.650390625 -32 0 -3.349609375 0 32 c 2 - 0 352 l 2 - 0 387.349609375 28.650390625 416 64 416 c 2 - 384 416 l 2 -128 64 m 0 - 145.669921875 64 160 78.330078125 160 96 c 0 - 160 113.669921875 145.669921875 128 128 128 c 0 - 110.330078125 128 96 113.669921875 96 96 c 0 - 96 78.330078125 110.330078125 64 128 64 c 0 -128 256 m 0 - 145.669921875 256 160 270.330078125 160 288 c 0 - 160 305.669921875 145.669921875 320 128 320 c 0 - 110.330078125 320 96 305.669921875 96 288 c 0 - 96 270.330078125 110.330078125 256 128 256 c 0 -320 64 m 0 - 337.669921875 64 352 78.330078125 352 96 c 0 - 352 113.669921875 337.669921875 128 320 128 c 0 - 302.330078125 128 288 113.669921875 288 96 c 0 - 288 78.330078125 302.330078125 64 320 64 c 0 -320 256 m 0 - 337.669921875 256 352 270.330078125 352 288 c 0 - 352 305.669921875 337.669921875 320 320 320 c 0 - 302.330078125 320 288 305.669921875 288 288 c 0 - 288 270.330078125 302.330078125 256 320 256 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" d i c e hyphen f o u r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" D i c e hyphen F o u r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" D i c e hyphen f o u r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" D I C E hyphen F O U R -EndChar - -StartChar: dice-one -Encoding: 62757 62757 650 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 416 m 2 - 419.349609375 416 448 387.349609375 448 352 c 2 - 448 32 l 2 - 448 -3.349609375 419.349609375 -32 384 -32 c 2 - 64 -32 l 2 - 28.650390625 -32 0 -3.349609375 0 32 c 2 - 0 352 l 2 - 0 387.349609375 28.650390625 416 64 416 c 2 - 384 416 l 2 -224 160 m 0 - 241.669921875 160 256 174.330078125 256 192 c 0 - 256 209.669921875 241.669921875 224 224 224 c 0 - 206.330078125 224 192 209.669921875 192 192 c 0 - 192 174.330078125 206.330078125 160 224 160 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" d i c e hyphen o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D i c e hyphen O n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D i c e hyphen o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D I C E hyphen O N E -EndChar - -StartChar: dice-six -Encoding: 62758 62758 651 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 416 m 2 - 419.349609375 416 448 387.349609375 448 352 c 2 - 448 32 l 2 - 448 -3.349609375 419.349609375 -32 384 -32 c 2 - 64 -32 l 2 - 28.650390625 -32 0 -3.349609375 0 32 c 2 - 0 352 l 2 - 0 387.349609375 28.650390625 416 64 416 c 2 - 384 416 l 2 -128 64 m 0 - 145.669921875 64 160 78.330078125 160 96 c 0 - 160 113.669921875 145.669921875 128 128 128 c 0 - 110.330078125 128 96 113.669921875 96 96 c 0 - 96 78.330078125 110.330078125 64 128 64 c 0 -128 160 m 0 - 145.669921875 160 160 174.330078125 160 192 c 0 - 160 209.669921875 145.669921875 224 128 224 c 0 - 110.330078125 224 96 209.669921875 96 192 c 0 - 96 174.330078125 110.330078125 160 128 160 c 0 -128 256 m 0 - 145.669921875 256 160 270.330078125 160 288 c 0 - 160 305.669921875 145.669921875 320 128 320 c 0 - 110.330078125 320 96 305.669921875 96 288 c 0 - 96 270.330078125 110.330078125 256 128 256 c 0 -320 64 m 0 - 337.669921875 64 352 78.330078125 352 96 c 0 - 352 113.669921875 337.669921875 128 320 128 c 0 - 302.330078125 128 288 113.669921875 288 96 c 0 - 288 78.330078125 302.330078125 64 320 64 c 0 -320 160 m 0 - 337.669921875 160 352 174.330078125 352 192 c 0 - 352 209.669921875 337.669921875 224 320 224 c 0 - 302.330078125 224 288 209.669921875 288 192 c 0 - 288 174.330078125 302.330078125 160 320 160 c 0 -320 256 m 0 - 337.669921875 256 352 270.330078125 352 288 c 0 - 352 305.669921875 337.669921875 320 320 320 c 0 - 302.330078125 320 288 305.669921875 288 288 c 0 - 288 270.330078125 302.330078125 256 320 256 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" d i c e hyphen s i x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D i c e hyphen S i x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D i c e hyphen s i x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D I C E hyphen S I X -EndChar - -StartChar: dice-three -Encoding: 62759 62759 652 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 416 m 2 - 419.349609375 416 448 387.349609375 448 352 c 2 - 448 32 l 2 - 448 -3.349609375 419.349609375 -32 384 -32 c 2 - 64 -32 l 2 - 28.650390625 -32 0 -3.349609375 0 32 c 2 - 0 352 l 2 - 0 387.349609375 28.650390625 416 64 416 c 2 - 384 416 l 2 -128 256 m 0 - 145.669921875 256 160 270.330078125 160 288 c 0 - 160 305.669921875 145.669921875 320 128 320 c 0 - 110.330078125 320 96 305.669921875 96 288 c 0 - 96 270.330078125 110.330078125 256 128 256 c 0 -224 160 m 0 - 241.669921875 160 256 174.330078125 256 192 c 0 - 256 209.669921875 241.669921875 224 224 224 c 0 - 206.330078125 224 192 209.669921875 192 192 c 0 - 192 174.330078125 206.330078125 160 224 160 c 0 -320 64 m 0 - 337.669921875 64 352 78.330078125 352 96 c 0 - 352 113.669921875 337.669921875 128 320 128 c 0 - 302.330078125 128 288 113.669921875 288 96 c 0 - 288 78.330078125 302.330078125 64 320 64 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" d i c e hyphen t h r e e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" D i c e hyphen T h r e e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" D i c e hyphen t h r e e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" D I C E hyphen T H R E E -EndChar - -StartChar: dice-two -Encoding: 62760 62760 653 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 416 m 2 - 419.349609375 416 448 387.349609375 448 352 c 2 - 448 32 l 2 - 448 -3.349609375 419.349609375 -32 384 -32 c 2 - 64 -32 l 2 - 28.650390625 -32 0 -3.349609375 0 32 c 2 - 0 352 l 2 - 0 387.349609375 28.650390625 416 64 416 c 2 - 384 416 l 2 -128 256 m 0 - 145.669921875 256 160 270.330078125 160 288 c 0 - 160 305.669921875 145.669921875 320 128 320 c 0 - 110.330078125 320 96 305.669921875 96 288 c 0 - 96 270.330078125 110.330078125 256 128 256 c 0 -320 64 m 0 - 337.669921875 64 352 78.330078125 352 96 c 0 - 352 113.669921875 337.669921875 128 320 128 c 0 - 302.330078125 128 288 113.669921875 288 96 c 0 - 288 78.330078125 302.330078125 64 320 64 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" d i c e hyphen t w o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D i c e hyphen T w o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D i c e hyphen t w o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D I C E hyphen T W O -EndChar - -StartChar: divide -Encoding: 62761 62761 654 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 96 m 0 - 259.349609375 96 288 67.349609375 288 32 c 0 - 288 -3.349609375 259.349609375 -32 224 -32 c 0 - 188.650390625 -32 160 -3.349609375 160 32 c 0 - 160 67.349609375 188.650390625 96 224 96 c 0 -224 288 m 0 - 188.650390625 288 160 316.650390625 160 352 c 0 - 160 387.349609375 188.650390625 416 224 416 c 0 - 259.349609375 416 288 387.349609375 288 352 c 0 - 288 316.650390625 259.349609375 288 224 288 c 0 -416 240 m 2 - 433.669921875 240 448 225.669921875 448 208 c 2 - 448 176 l 2 - 448 158.330078125 433.669921875 144 416 144 c 2 - 32 144 l 2 - 14.330078125 144 0 158.330078125 0 176 c 2 - 0 208 l 2 - 0 225.669921875 14.330078125 240 32 240 c 2 - 416 240 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" d i v i d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" D i v i d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" D I V I D E -EndChar - -StartChar: door-closed -Encoding: 62762 62762 655 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 0 m 2 - 632.83984375 0 640 -7.16015625 640 -16 c 2 - 640 -48 l 2 - 640 -56.83984375 632.83984375 -64 624 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 127.990234375 0 l 1 - 127.990234375 397.200195312 l 2 - 127.990234375 425.219726562 149.51953125 448 175.990234375 448 c 2 - 464 448 l 2 - 490.469726562 448 512 425.219726562 512 397.200195312 c 2 - 512 0 l 1 - 624 0 l 2 -415.990234375 160 m 0 - 433.669921875 160 448 174.330078125 447.990234375 192 c 0 - 447.990234375 209.669921875 433.66015625 224 415.990234375 224 c 0 - 398.3203125 224 383.990234375 209.669921875 383.990234375 192 c 0 - 383.990234375 174.330078125 398.3203125 160 415.990234375 160 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" d o o r hyphen c l o s e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" D o o r hyphen C l o s e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" D o o r hyphen c l o s e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" D O O R hyphen C L O S E D -EndChar - -StartChar: door-open -Encoding: 62763 62763 656 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 0 m 2 - 632.83984375 0 640 -7.16015625 640 -16 c 2 - 640 -48 l 2 - 640 -56.83984375 632.83984375 -64 624 -64 c 2 - 480 -64 l 1 - 480 320 l 1 - 384 320 l 1 - 384 384 l 1 - 496 384 l 2 - 522.469726562 384 544 361.809570312 544 334.549804688 c 2 - 544 0 l 1 - 624 0 l 2 -312.240234375 446.990234375 m 2 - 332.440429688 452.23046875 352 436.400390625 352 414.8203125 c 2 - 352 -64 l 1 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 96 0 l 1 - 96 365.080078125 l 2 - 96 380.299804688 105.990234375 393.559570312 120.240234375 397.25 c 2 - 312.240234375 446.990234375 l 2 -264 160 m 0 - 277.25 160 288 174.330078125 288 192 c 0 - 288 209.669921875 277.25 224 264 224 c 0 - 250.75 224 240 209.669921875 240 192 c 0 - 240 174.330078125 250.75 160 264 160 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" d o o r hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" D o o r hyphen O p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" D o o r hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" D O O R hyphen O P E N -EndChar - -StartChar: equals -Encoding: 62764 62764 657 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 144 m 2 - 433.669921875 144 448 129.669921875 448 112 c 2 - 448 80 l 2 - 448 62.330078125 433.669921875 48 416 48 c 2 - 32 48 l 2 - 14.330078125 48 0 62.330078125 0 80 c 2 - 0 112 l 2 - 0 129.669921875 14.330078125 144 32 144 c 2 - 416 144 l 2 -416 336 m 2 - 433.669921875 336 448 321.669921875 448 304 c 2 - 448 272 l 2 - 448 254.330078125 433.669921875 240 416 240 c 2 - 32 240 l 2 - 14.330078125 240 0 254.330078125 0 272 c 2 - 0 304 l 2 - 0 321.669921875 14.330078125 336 32 336 c 2 - 416 336 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" e q u a l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" E q u a l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" E Q U A L S -EndChar - -StartChar: feather -Encoding: 62765 62765 658 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -467.139648438 403.16015625 m 0 - 517.709960938 352.639648438 528.83984375 278.259765625 483.400390625 203.799804688 c 1 - 351.860351562 160 l 1 - 449.639648438 160 l 1 - 439.709960938 149.3203125 453.3203125 163.0703125 403.330078125 113.139648438 c 1 - 255.759765625 64 l 1 - 353.950195312 64 l 1 - 279 -9.1103515625 159.419921875 -6.650390625 107.120117188 9.0595703125 c 1 - 41.01953125 -56.9697265625 l 2 - 31.6396484375 -66.33984375 16.419921875 -66.33984375 7.0400390625 -56.9697265625 c 0 - -2.33984375 -47.599609375 -2.33984375 -32.400390625 7.0400390625 -23.0302734375 c 2 - 266.559570312 236.219726562 l 2 - 272.809570312 242.469726562 272.809570312 252.599609375 266.559570312 258.849609375 c 0 - 260.309570312 265.099609375 250.169921875 265.099609375 243.91015625 258.849609375 c 2 - 65.4697265625 80.599609375 l 1 - 58.7197265625 140.940429688 68.650390625 231.379882812 129.110351562 291.76953125 c 0 - 153.879882812 316.509765625 136.25 298.91015625 214.860351562 377.4296875 c 0 - 305.469726562 467.940429688 404.58984375 465.639648438 467.139648438 403.16015625 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" f e a t h e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" F E A T H E R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" F e a t h e r -EndChar - -StartChar: frog -Encoding: 62766 62766 659 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -446.530273438 350.5703125 m 1 - 446.530273438 350.5703125 504.959960938 331.509765625 545.51953125 309.290039062 c 0 - 564.280273438 299.009765625 576 279.459960938 576 258.059570312 c 2 - 576 258.056640625 l 2 - 576 239.252929688 562.689453125 216.528320312 546.290039062 207.330078125 c 2 - 391.849609375 120.6796875 l 1 - 490.370117188 16 l 1 - 544 16 l 2 - 561.669921875 16 576 1.669921875 576 -16 c 0 - 576 -24.83984375 568.83984375 -32 560 -32 c 2 - 469.620117188 -32 l 1 - 351.08984375 93.9404296875 l 1 - 356.16015625 148.08984375 321.16015625 179 310.290039062 187.150390625 c 0 - 273.440429688 214.76953125 222 214.809570312 185.16015625 187.150390625 c 2 - 150.379882812 161.059570312 l 2 - 143.309570312 155.759765625 141.889648438 145.73046875 147.190429688 138.650390625 c 0 - 152.509765625 131.549804688 162.540039062 130.150390625 169.599609375 135.459960938 c 2 - 202.360351562 160.049804688 l 2 - 223.049804688 175.580078125 250.709960938 180.860351562 274.599609375 170.9296875 c 0 - 318.66015625 152.610351562 332.450195312 100.559570312 308.309570312 64.330078125 c 2 - 272.509765625 16 l 1 - 352 16 l 2 - 369.669921875 16 384 1.669921875 384 -16 c 0 - 384 -24.83984375 376.83984375 -32 368 -32 c 2 - 64 -32 l 2 - 29.080078125 -32 0.1103515625 -3.900390625 0 31.01953125 c 0 - -0.5 197.879882812 126.75 335.040039062 289.459960938 350.459960938 c 1 - 296.280273438 387.709960938 328.76953125 416 368 416 c 0 - 407.190429688 416 439.669921875 387.76953125 446.530273438 350.5703125 c 1 -368 312 m 0 - 381.25 312 392 322.75 392 336 c 0 - 392 349.259765625 381.25 360 368 360 c 0 - 354.740234375 360 344 349.259765625 344 336 c 0 - 344 322.75 354.740234375 312 368 312 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" f r o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" F r o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" F R O G -EndChar - -StartChar: gas-pump -Encoding: 62767 62767 660 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 0 m 2 - 344.799804688 0 352 -7.2001953125 352 -16 c 2 - 352 -48 l 2 - 352 -56.7998046875 344.799804688 -64 336 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 -16 l 2 - 0 -7.2001953125 7.2001953125 0 16 0 c 2 - 336 0 l 2 -493.200195312 340.700195312 m 2 - 505.200195312 328.700195312 512 312.400390625 512 295.400390625 c 2 - 512 72 l 2 - 512 29.7998046875 475.5 -4 432.5 0.2998046875 c 0 - 395 4.2001953125 368 38.5 368 76.2001953125 c 2 - 368 104 l 2 - 368 126.099609375 350.099609375 144 328 144 c 2 - 320 144 l 1 - 320 32 l 1 - 32 32 l 1 - 32 384 l 2 - 32 419.299804688 60.7001953125 448 96 448 c 2 - 256 448 l 2 - 291.299804688 448 320 419.299804688 320 384 c 2 - 320 192 l 1 - 328 192 l 2 - 376.599609375 192 416 152.599609375 416 104 c 2 - 416 72 l 2 - 416 58.7998046875 426.799804688 48 440 48 c 0 - 453.200195312 48 464 58.7998046875 464 72 c 2 - 464 232.799804688 l 1 - 436.900390625 236.700195312 416 259.900390625 416 288 c 2 - 416 350.099609375 l 1 - 378.299804688 387.799804688 l 2 - 372.099609375 394 372.099609375 404.200195312 378.299804688 410.400390625 c 2 - 389.599609375 421.700195312 l 2 - 395.799804688 427.900390625 406 427.900390625 412.200195312 421.700195312 c 2 - 493.200195312 340.700195312 l 2 -256 256 m 1 - 256 384 l 1 - 96 384 l 1 - 96 256 l 1 - 256 256 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" g a s hyphen p u m p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" G a s hyphen p u m p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" G A S hyphen P U M P -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" G a s hyphen P u m p -EndChar - -StartChar: glasses -Encoding: 62768 62768 661 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -574.099609375 167.629882812 m 2 - 575.360351562 162.559570312 576 157.360351562 576 152.129882812 c 2 - 576 81.8798828125 l 2 - 576 18.990234375 524.419921875 -32 460.799804688 -32 c 2 - 423.6796875 -32 l 2 - 363.400390625 -32 313.309570312 13.9404296875 308.809570312 73.3701171875 c 2 - 305.879882812 112 l 1 - 270.129882812 112 l 1 - 267.200195312 73.3701171875 l 2 - 262.690429688 13.9404296875 212.599609375 -32 152.3203125 -32 c 2 - 115.200195312 -32 l 2 - 51.580078125 -32 0 18.990234375 0 81.8896484375 c 2 - 0 152.139648438 l 2 - 0.0009765625 156.479492188 0.8525390625 163.418945312 1.900390625 167.629882812 c 2 - 47.240234375 349.360351562 l 2 - 53.150390625 373.049804688 68.830078125 393.389648438 90.240234375 405.16015625 c 0 - 111.6796875 416.900390625 137.209960938 419.26953125 160.4296875 411.490234375 c 2 - 175.6796875 406.41015625 l 2 - 184.0703125 403.620117188 188.599609375 394.549804688 185.799804688 386.169921875 c 2 - 180.740234375 370.990234375 l 2 - 177.950195312 362.610351562 168.889648438 358.080078125 160.509765625 360.870117188 c 2 - 147.33984375 365.259765625 l 2 - 136.469726562 368.879882812 124.349609375 368.830078125 114.190429688 363.530273438 c 0 - 103.900390625 358.169921875 96.599609375 348.969726562 93.8095703125 337.719726562 c 2 - 55.349609375 183.889648438 l 1 - 77.5400390625 190.700195312 105.139648438 196.349609375 136.559570312 196.349609375 c 0 - 171.33984375 196.349609375 210.549804688 189.33984375 251.419921875 169.599609375 c 1 - 324.599609375 169.599609375 l 1 - 365.469726562 189.3203125 404.6796875 196.33984375 439.450195312 196.33984375 c 0 - 470.860351562 196.33984375 498.459960938 190.690429688 520.650390625 183.879882812 c 1 - 482.190429688 337.700195312 l 2 - 479.389648438 348.959960938 472.110351562 358.150390625 461.8203125 363.51953125 c 0 - 451.66015625 368.8203125 439.530273438 368.870117188 428.66015625 365.25 c 2 - 415.48046875 360.860351562 l 2 - 407.099609375 358.0703125 398.040039062 362.599609375 395.25 370.98046875 c 2 - 390.190429688 386.16015625 l 2 - 387.389648438 394.540039062 391.919921875 403.610351562 400.309570312 406.400390625 c 2 - 415.559570312 411.48046875 l 2 - 438.780273438 419.259765625 464.309570312 416.879882812 485.75 405.150390625 c 0 - 507.16015625 393.389648438 522.83984375 373.040039062 528.75 349.33984375 c 2 - 574.099609375 167.629882812 l 2 -203.379882812 78.2099609375 m 2 - 206.509765625 119.4296875 l 1 - 183.83984375 128.01953125 160.440429688 132.349609375 136.580078125 132.349609375 c 0 - 107.419921875 132.349609375 82.1201171875 125.919921875 64 119.4296875 c 1 - 64 81.8896484375 l 2 - 64 54.3798828125 86.9697265625 32 115.200195312 32 c 2 - 152.3203125 32 l 2 - 178.98046875 32 201.41015625 52.2998046875 203.379882812 78.2099609375 c 2 -512 81.8798828125 m 2 - 511.990234375 119.419921875 l 1 - 493.870117188 125.91015625 468.559570312 132.349609375 439.440429688 132.349609375 c 0 - 415.5703125 132.349609375 392.16015625 128.01953125 369.490234375 119.4296875 c 1 - 372.620117188 78.2099609375 l 2 - 374.580078125 52.2998046875 397.009765625 32 423.6796875 32 c 2 - 460.799804688 32 l 2 - 489.030273438 32 512 54.3701171875 512 81.8798828125 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" g l a s s e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" G l a s s e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" G L A S S E S -EndChar - -StartChar: greater-than -Encoding: 62769 62769 662 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -365.51953125 238.150390625 m 2 - 376.799804688 232.900390625 384 221.58984375 384.009765625 209.139648438 c 2 - 384.009765625 174.91015625 l 2 - 384.0078125 163.657226562 375.729492188 150.665039062 365.530273438 145.91015625 c 2 - 59.0595703125 3 l 2 - 43.0400390625 -4.4697265625 24 2.4599609375 16.5302734375 18.48046875 c 2 - 3.009765625 47.48046875 l 2 - -4.4599609375 63.5 2.4697265625 82.5400390625 18.490234375 90.009765625 c 2 - 236.959960938 191.900390625 l 1 - 18.5302734375 293.75 l 2 - 2.4697265625 301.240234375 -4.48046875 320.330078125 3.009765625 336.389648438 c 2 - 16.580078125 365.469726562 l 2 - 24.0703125 381.530273438 43.16015625 388.48046875 59.2197265625 380.990234375 c 2 - 365.51953125 238.150390625 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" g r e a t e r hyphen t h a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" G r e a t e r hyphen T h a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" G r e a t e r hyphen t h a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" G R E A T E R hyphen T H A N -EndChar - -StartChar: greater-than-equal -Encoding: 62770 62770 663 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -55.2197265625 340.309570312 m 2 - 36.9296875 346.309570312 27.48046875 364.5703125 34.1201171875 381.099609375 c 2 - 46.150390625 411.01953125 l 2 - 52.7900390625 427.549804688 73.009765625 436.080078125 91.2998046875 430.080078125 c 2 - 393.01953125 310.099609375 l 2 - 406.790039062 305.580078125 416 293.490234375 416 279.9296875 c 2 - 416 263.969726562 l 2 - 416 250.41015625 406.790039062 238.3203125 393.01953125 233.799804688 c 2 - 91.6103515625 113.940429688 l 2 - 73.2197265625 107.900390625 52.91015625 116.48046875 46.23046875 133.08984375 c 2 - 34.1396484375 163.169921875 l 2 - 27.4599609375 179.780273438 36.9501953125 198.139648438 55.33984375 204.169921875 c 2 - 230.780273438 272.219726562 l 1 - 55.2197265625 340.309570312 l 2 -424 48 m 2 - 437.25 48 448 37.259765625 448 24 c 2 - 448 -24 l 2 - 448 -37.25 437.25 -48 424 -48 c 2 - 24 -48 l 2 - 10.75 -48 0 -37.25 0 -24 c 2 - 0 24 l 2 - 0 37.259765625 10.75 48 24 48 c 2 - 424 48 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" g r e a t e r hyphen t h a n hyphen e q u a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" G r e a t e r hyphen T h a n hyphen E q u a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" G r e a t e r hyphen t h a n hyphen e q u a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 16" G R E A T E R hyphen T H A N hyphen E Q U A L -EndChar - -StartChar: helicopter -Encoding: 62771 62771 664 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -304 64 m 2 - 295.168945312 64 283.698242188 69.734375 278.400390625 76.7998046875 c 2 - 192 192 l 1 - 32 256 l 1 - 0.490234375 364.120117188 l 2 - -2.0400390625 374.219726562 5.599609375 384 16.009765625 384 c 2 - 56 384 l 2 - 61.0302734375 384 65.7802734375 381.629882812 68.7998046875 377.599609375 c 2 - 112 320 l 1 - 320 320 l 1 - 320 384 l 1 - 144 384 l 2 - 135.16015625 384 128 391.16015625 128 400 c 2 - 128 432 l 2 - 128 440.83984375 135.16015625 448 144 448 c 2 - 560 448 l 2 - 568.83984375 448 576 440.83984375 576 432 c 2 - 576 400 l 2 - 576 391.16015625 568.83984375 384 560 384 c 2 - 384 384 l 1 - 384 320 l 1 - 507.709960938 320 608 219.709960938 608 96 c 0 - 608 78.330078125 593.669921875 64 576 64 c 2 - 304 64 l 2 -416 252.490234375 m 1 - 416 128 l 1 - 540.790039062 128 l 1 - 528.030273438 190.559570312 478.549804688 239.700195312 416 252.490234375 c 1 -635.370117188 -10.8095703125 m 2 - 641.959960938 -17.419921875 641.41015625 -28.330078125 634.389648438 -34.4697265625 c 0 - 601.240234375 -63.51953125 580.8203125 -63.990234375 565.940429688 -63.990234375 c 2 - 240 -63.990234375 l 2 - 231.16015625 -63.990234375 224 -56.8095703125 224 -47.9599609375 c 2 - 224 -15.900390625 l 2 - 224 -7.0498046875 231.16015625 0.1298828125 240 0.1298828125 c 2 - 565.940429688 0.1298828125 l 2 - 576.740234375 0.1298828125 583.490234375 4.6103515625 590.580078125 11.3798828125 c 0 - 596.98046875 17.490234375 606.969726562 17.650390625 613.219726562 11.3896484375 c 2 - 635.370117188 -10.8095703125 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" h e l i c o p t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" H e l i c o p t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" H E L I C O P T E R -EndChar - -StartChar: infinity -Encoding: 62772 62772 665 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -471.099609375 352 m 0 - 564.200195312 352 640 280.200195312 640 192 c 0 - 640 103.799804688 564.200195312 32 471.099609375 32 c 0 - 405 32 353.299804688 73.2998046875 320 110.599609375 c 1 - 286.700195312 73.2998046875 235 32 168.900390625 32 c 0 - 75.7998046875 32 0 103.799804688 0 192 c 0 - 0 280.200195312 75.7998046875 352 168.900390625 352 c 0 - 235 352 286.700195312 310.700195312 320 273.400390625 c 1 - 353.299804688 310.700195312 405 352 471.099609375 352 c 0 -168.900390625 128 m 0 - 207 128 242.5 164.400390625 262.900390625 192 c 1 - 242.299804688 219.900390625 207.099609375 256 168.900390625 256 c 0 - 128.700195312 256 96 227.299804688 96 192 c 0 - 96 156.700195312 128.700195312 128 168.900390625 128 c 0 -471.099609375 128 m 0 - 511.299804688 128 544 156.700195312 544 192 c 0 - 544 227.299804688 511.299804688 256 471.099609375 256 c 0 - 433 256 397.5 219.599609375 377.099609375 192 c 1 - 397.700195312 164.099609375 432.900390625 128 471.099609375 128 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" i n f i n i t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" I n f i n i t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" I N F I N I T Y -EndChar - -StartChar: kiwi-bird -Encoding: 62773 62773 666 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -575.809570312 230.01953125 m 0 - 576.110351562 224.240234375 575.969726562 -16 575.969726562 -16 c 2 - 575.969726562 -23.3095703125 571.009765625 -29.7001953125 563.919921875 -31.5 c 0 - 562.610351562 -31.83984375 561.280273438 -32 559.969726562 -32 c 0 - 554.219726562 -32 548.780273438 -28.8896484375 545.919921875 -23.66015625 c 2 - 471.509765625 112.780273438 l 1 - 464.469726562 112.309570312 473.940429688 112 448.459960938 112 c 0 - 393.860351562 112 342.0703125 92.75 296.330078125 62.9404296875 c 0 - 283.870117188 54.8203125 270.23046875 48.490234375 255.990234375 43.4296875 c 1 - 255.990234375 -16 l 2 - 255.990234375 -24.83984375 248.830078125 -32 239.990234375 -32 c 2 - 223.990234375 -32 l 2 - 215.150390625 -32 207.990234375 -24.83984375 207.990234375 -16 c 2 - 207.990234375 33.1796875 l 1 - 202.669921875 32.73046875 197.4296875 32 191.990234375 32 c 0 - 175.389648438 32 159.349609375 34.2998046875 143.990234375 38.259765625 c 1 - 143.990234375 -16 l 2 - 143.990234375 -24.83984375 136.830078125 -32 127.990234375 -32 c 2 - 111.990234375 -32 l 2 - 103.150390625 -32 95.990234375 -24.83984375 95.990234375 -16 c 2 - 95.990234375 57.990234375 l 1 - 38.6796875 91.2001953125 0.0400390625 153.049804688 0 224 c 0 - -0.080078125 369.759765625 129.299804688 406.879882812 147.309570312 410.940429688 c 0 - 204.48046875 423.860351562 258.530273438 411.200195312 300.51953125 382.240234375 c 0 - 344.009765625 352.25 395.440429688 336 448.259765625 336 c 2 - 457.629882812 336 l 2 - 518.280273438 336 572.639648438 290.58984375 575.809570312 230.01953125 c 0 -463.969726562 200 m 0 - 477.219726562 200 487.969726562 210.75 487.969726562 224 c 0 - 487.969726562 237.259765625 477.219726562 248 463.969726562 248 c 0 - 450.719726562 248 439.969726562 237.259765625 439.969726562 224 c 0 - 439.969726562 210.75 450.719726562 200 463.969726562 200 c 0 -543.969726562 46.75 m 1 - 543.969726562 145.809570312 l 1 - 532.83984375 134.4296875 519.23046875 125.66015625 504.110351562 119.830078125 c 1 - 543.969726562 46.75 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" k i w i hyphen b i r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" K i w i hyphen B i r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" K i w i hyphen b i r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" K I W I hyphen B I R D -EndChar - -StartChar: less-than -Encoding: 62774 62774 667 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -365.459960938 90.259765625 m 2 - 381.530273438 82.76953125 388.48046875 63.6796875 380.990234375 47.6201171875 c 2 - 367.4296875 18.5400390625 l 2 - 359.940429688 2.48046875 340.849609375 -4.4697265625 324.790039062 3.01953125 c 2 - 18.48046875 145.849609375 l 2 - 7.2099609375 151.099609375 0 162.41015625 0 174.849609375 c 2 - 0 209.08984375 l 2 - 0.0048828125 220.341796875 8.283203125 233.333007812 18.48046875 238.08984375 c 2 - 324.940429688 381 l 2 - 340.959960938 388.469726562 360 381.540039062 367.469726562 365.51953125 c 2 - 380.990234375 336.51953125 l 2 - 388.459960938 320.5 381.530273438 301.459960938 365.509765625 293.990234375 c 2 - 147.040039062 192.110351562 l 1 - 365.459960938 90.259765625 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" l e s s hyphen t h a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" L e s s hyphen T h a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" L e s s hyphen t h a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" L E S S hyphen T H A N -EndChar - -StartChar: less-than-equal -Encoding: 62775 62775 668 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -54.98046875 233.799804688 m 2 - 41.2099609375 238.3203125 32 250.41015625 32 263.969726562 c 2 - 32 279.9296875 l 2 - 32 293.5 41.2099609375 305.58984375 54.98046875 310.110351562 c 2 - 356.690429688 430.0703125 l 2 - 374.98046875 436.0703125 395.200195312 427.540039062 401.83984375 411.009765625 c 2 - 413.870117188 381.08984375 l 2 - 420.509765625 364.5703125 411.059570312 346.299804688 392.76953125 340.299804688 c 2 - 217.209960938 272.209960938 l 1 - 392.650390625 204.16015625 l 2 - 411.040039062 198.129882812 420.540039062 179.76953125 413.860351562 163.16015625 c 2 - 401.76953125 133.080078125 l 2 - 395.099609375 116.469726562 374.780273438 107.900390625 356.389648438 113.9296875 c 2 - 54.98046875 233.799804688 l 2 -424 48 m 2 - 437.25 48 448 37.259765625 448 24 c 2 - 448 -24 l 2 - 448 -37.25 437.25 -48 424 -48 c 2 - 24 -48 l 2 - 10.75 -48 0 -37.25 0 -24 c 2 - 0 24 l 2 - 0 37.259765625 10.75 48 24 48 c 2 - 424 48 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" l e s s hyphen t h a n hyphen e q u a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" L e s s hyphen T h a n hyphen E q u a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" L e s s hyphen t h a n hyphen e q u a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" L E S S hyphen T H A N hyphen E Q U A L -EndChar - -StartChar: memory -Encoding: 62776 62776 669 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -640 317.059570312 m 1 - 621.400390625 310.450195312 608 292.870117188 608 272 c 0 - 608 251.129882812 621.400390625 233.549804688 640 226.940429688 c 1 - 640 128 l 1 - 0 128 l 1 - 0 226.940429688 l 1 - 18.599609375 233.549804688 32 251.129882812 32 272 c 0 - 32 292.870117188 18.599609375 310.450195312 0 317.059570312 c 1 - 0 352 l 2 - 0 369.669921875 14.330078125 384 32 384 c 2 - 608 384 l 2 - 625.669921875 384 640 369.669921875 640 352 c 2 - 640 317.059570312 l 1 -224 192 m 1 - 224 320 l 1 - 160 320 l 1 - 160 192 l 1 - 224 192 l 1 -352 192 m 1 - 352 320 l 1 - 288 320 l 1 - 288 192 l 1 - 352 192 l 1 -480 192 m 1 - 480 320 l 1 - 416 320 l 1 - 416 192 l 1 - 480 192 l 1 -0 0 m 1 - 0 96 l 1 - 640 96 l 1 - 640 0 l 1 - 576 0 l 1 - 576 26.669921875 l 2 - 576 35.509765625 568.83984375 42.669921875 560 42.669921875 c 0 - 551.16015625 42.669921875 544 35.509765625 544 26.669921875 c 2 - 544 0 l 1 - 416 0 l 1 - 416 26.669921875 l 2 - 416 35.509765625 408.83984375 42.669921875 400 42.669921875 c 0 - 391.16015625 42.669921875 384 35.509765625 384 26.669921875 c 2 - 384 0 l 1 - 256 0 l 1 - 256 26.669921875 l 2 - 256 35.509765625 248.83984375 42.669921875 240 42.669921875 c 0 - 231.16015625 42.669921875 224 35.509765625 224 26.669921875 c 2 - 224 0 l 1 - 96 0 l 1 - 96 26.669921875 l 2 - 96 35.509765625 88.83984375 42.669921875 80 42.669921875 c 0 - 71.16015625 42.669921875 64 35.509765625 64 26.669921875 c 2 - 64 0 l 1 - 0 0 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" m e m o r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" M e m o r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" M E M O R Y -EndChar - -StartChar: microphone-alt-slash -Encoding: 62777 62777 670 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -633.8203125 -10.099609375 m 2 - 640.799804688 -15.5302734375 642.049804688 -25.580078125 636.639648438 -32.5498046875 c 2 - 617 -57.8203125 l 2 - 611.5703125 -64.7998046875 601.51953125 -66.0595703125 594.540039062 -60.6298828125 c 2 - 6.1796875 394.099609375 l 2 - -0.7998046875 399.530273438 -2.0498046875 409.580078125 3.3701171875 416.549804688 c 2 - 23.009765625 441.8203125 l 2 - 28.4296875 448.799804688 38.490234375 450.049804688 45.4697265625 444.629882812 c 2 - 224 306.629882812 l 1 - 224 351.990234375 l 2 - 224 405.009765625 266.98046875 447.990234375 320 447.990234375 c 0 - 373.01953125 447.990234375 416 405.009765625 416 351.990234375 c 1 - 330.669921875 351.990234375 l 2 - 324.780273438 351.990234375 320 348.41015625 320 343.990234375 c 2 - 320 327.990234375 l 2 - 320 323.5703125 324.780273438 319.990234375 330.669921875 319.990234375 c 2 - 416 319.990234375 l 1 - 416 287.990234375 l 1 - 330.669921875 287.990234375 l 2 - 324.780273438 287.990234375 320 284.41015625 320 279.990234375 c 2 - 320 263.990234375 l 2 - 320 259.5703125 324.780273438 255.990234375 330.669921875 255.990234375 c 2 - 416 255.990234375 l 1 - 416 223.990234375 l 1 - 330.940429688 223.990234375 l 1 - 372.33984375 191.990234375 l 1 - 416.009765625 191.990234375 l 1 - 416.009765625 181.540039062 413.830078125 171.719726562 410.73046875 162.3203125 c 1 - 437.280273438 141.799804688 l 1 - 444.040039062 157.200195312 448 174.080078125 448 192 c 2 - 448 240 l 2 - 448 248.83984375 455.16015625 256 464 256 c 2 - 480 256 l 2 - 488.83984375 256 496 248.83984375 496 240 c 2 - 496 192 l 2 - 496 163.01953125 488.740234375 135.790039062 476.259765625 111.669921875 c 1 - 633.8203125 -10.099609375 l 2 -400 -16 m 2 - 408.83984375 -16 416 -23.16015625 416 -32 c 2 - 416 -48 l 2 - 416 -56.83984375 408.83984375 -64 400 -64 c 2 - 240 -64 l 2 - 231.16015625 -64 224 -56.83984375 224 -48 c 2 - 224 -32 l 2 - 224 -23.16015625 231.16015625 -16 240 -16 c 2 - 296 -16 l 1 - 296 18.150390625 l 1 - 207.969726562 30.2900390625 144 110.200195312 144 199.83984375 c 2 - 144 206.690429688 l 1 - 196.030273438 166.469726562 l 1 - 208.469726562 113.25 251.360351562 70.0703125 307.209960938 64.6201171875 c 0 - 314.150390625 63.9501953125 320.849609375 64.419921875 327.559570312 64.8203125 c 1 - 377.959960938 25.8603515625 l 1 - 367.099609375 22.0595703125 355.709960938 19.400390625 344 17.7802734375 c 1 - 344 -16 l 1 - 400 -16 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" m i c r o p h o n e hyphen a l t hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" M i c r o p h o n e hyphen A l t hyphen S l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" M i c r o p h o n e hyphen a l t hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 9" M I C R O P H O N E hyphen A L T hyphen S L A S H -EndChar - -StartChar: money-bill-wave -Encoding: 62778 62778 671 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -621.16015625 393.540039062 m 0 - 632.76953125 388.669921875 640 376.709960938 640.009765625 364.0703125 c 2 - 640.009765625 46.8203125 l 2 - 640.009765625 28.330078125 624.969726562 15.009765625 607.759765625 15.009765625 c 0 - 604.360351562 15.009765625 600.879882812 15.5302734375 597.41015625 16.6298828125 c 0 - 566.51953125 26.4296875 535.650390625 30.349609375 504.759765625 30.349609375 c 0 - 381.58984375 30.349609375 258.419921875 -32 135.25 -32 c 0 - 96.4501953125 -32 57.6298828125 -25.8095703125 18.83984375 -9.5302734375 c 0 - 7.23046875 -4.669921875 0 7.2998046875 0 19.9296875 c 2 - 0 337.190429688 l 2 - 0 355.6796875 15.0400390625 369 32.25 369 c 0 - 35.650390625 369 39.1298828125 368.48046875 42.599609375 367.379882812 c 0 - 73.490234375 357.580078125 104.360351562 353.66015625 135.25 353.66015625 c 0 - 258.419921875 353.66015625 381.580078125 416.009765625 504.75 416 c 0 - 543.549804688 416 582.370117188 409.809570312 621.16015625 393.540039062 c 0 -48 315.780273438 m 1 - 48 255.309570312 l 1 - 79 255.309570312 104.83984375 277.459960938 110.719726562 306.849609375 c 1 - 89.1201171875 308.209960938 68.1201171875 310.740234375 48 315.780273438 c 1 -48 30.7802734375 m 1 - 68.1201171875 23.4697265625 89.1796875 18.9697265625 111.709960938 17.16015625 c 1 - 110.1796875 51.2900390625 82.3701171875 78.5595703125 48 78.5595703125 c 1 - 48 30.7802734375 l 1 -320 96 m 0 - 364.169921875 96 400 138.969726562 400 192 c 0 - 400 245.01953125 364.1796875 288 320 288 c 0 - 275.8203125 288 240 245.01953125 240 192 c 0 - 240 138.990234375 275.809570312 96 320 96 c 0 -592 68.2197265625 m 1 - 592 125.940429688 l 1 - 565.1796875 122.540039062 543.549804688 102.740234375 537.6796875 76.66015625 c 1 - 556.290039062 75.0703125 574.48046875 72.6103515625 592 68.2197265625 c 1 -592 304.330078125 m 1 - 592 353.219726562 l 1 - 574.280273438 359.650390625 555.73046875 363.709960938 536.190429688 365.879882812 c 1 - 537.139648438 334.030273438 561.110351562 308.240234375 592 304.330078125 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" m o n e y hyphen b i l l hyphen w a v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" M o n e y hyphen B i l l hyphen W a v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" M o n e y hyphen b i l l hyphen w a v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" M O N E Y hyphen B I L L hyphen W A V E -EndChar - -StartChar: money-bill-wave-alt -Encoding: 62779 62779 672 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -621.16015625 393.540039062 m 0 - 632.76953125 388.669921875 640 376.709960938 640.009765625 364.0703125 c 2 - 640.009765625 46.8203125 l 2 - 640.009765625 28.330078125 624.969726562 15.009765625 607.759765625 15.009765625 c 0 - 604.360351562 15.009765625 600.879882812 15.5302734375 597.41015625 16.6298828125 c 0 - 566.51953125 26.4296875 535.650390625 30.349609375 504.759765625 30.349609375 c 0 - 381.58984375 30.349609375 258.419921875 -32 135.25 -32 c 0 - 96.4501953125 -32 57.6298828125 -25.8095703125 18.83984375 -9.5302734375 c 0 - 7.23046875 -4.669921875 0 7.2998046875 0 19.9296875 c 2 - 0 337.190429688 l 2 - 0 355.6796875 15.0400390625 369 32.25 369 c 0 - 35.650390625 369 39.1298828125 368.48046875 42.599609375 367.379882812 c 0 - 73.490234375 357.580078125 104.360351562 353.66015625 135.25 353.66015625 c 0 - 258.419921875 353.66015625 381.580078125 416.009765625 504.75 416 c 0 - 543.549804688 416 582.370117188 409.809570312 621.16015625 393.540039062 c 0 -320 96 m 0 - 364.169921875 96 400 138.969726562 400 192 c 0 - 400 245.01953125 364.1796875 288 320 288 c 0 - 275.8203125 288 240 245.01953125 240 192 c 0 - 240 138.990234375 275.809570312 96 320 96 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" m o n e y hyphen b i l l hyphen w a v e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" M o n e y hyphen B i l l hyphen W a v e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" M o n e y hyphen b i l l hyphen w a v e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" M O N E Y hyphen B I L L hyphen W A V E hyphen A L T -EndChar - -StartChar: money-check -Encoding: 62780 62780 673 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 0 m 2 - 0 320 l 1 - 640 320 l 1 - 640 0 l 2 - 640 -17.669921875 625.669921875 -32 608 -32 c 2 - 32 -32 l 2 - 14.330078125 -32 0 -17.669921875 0 0 c 2 -448 208 m 2 - 448 176 l 2 - 448 167.16015625 455.16015625 160 464 160 c 2 - 560 160 l 2 - 568.83984375 160 576 167.16015625 576 176 c 2 - 576 208 l 2 - 576 216.83984375 568.83984375 224 560 224 c 2 - 464 224 l 2 - 455.16015625 224 448 216.83984375 448 208 c 2 -448 88 m 2 - 448 72 l 2 - 448 67.580078125 451.580078125 64 456 64 c 2 - 568 64 l 2 - 572.419921875 64 576 67.580078125 576 72 c 2 - 576 88 l 2 - 576 92.419921875 572.419921875 96 568 96 c 2 - 456 96 l 2 - 451.580078125 96 448 92.419921875 448 88 c 2 -64 184 m 2 - 64 168 l 2 - 64 163.580078125 67.580078125 160 72 160 c 2 - 376 160 l 2 - 380.419921875 160 384 163.580078125 384 168 c 2 - 384 184 l 2 - 384 188.419921875 380.419921875 192 376 192 c 2 - 72 192 l 2 - 67.580078125 192 64 188.419921875 64 184 c 2 -64 88 m 2 - 64 72 l 2 - 64 67.580078125 67.580078125 64 72 64 c 2 - 248 64 l 2 - 252.419921875 64 256 67.580078125 256 72 c 2 - 256 88 l 2 - 256 92.419921875 252.419921875 96 248 96 c 2 - 72 96 l 2 - 67.580078125 96 64 92.419921875 64 88 c 2 -624 416 m 2 - 632.83984375 416 640 408.83984375 640 400 c 2 - 640 352 l 1 - 0 352 l 1 - 0 400 l 2 - 0 408.83984375 7.16015625 416 16 416 c 2 - 624 416 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" m o n e y hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" M o n e y hyphen C h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" M o n e y hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" M O N E Y hyphen C H E C K -EndChar - -StartChar: money-check-alt -Encoding: 62781 62781 674 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -608 416 m 2 - 625.669921875 416 640 401.669921875 640 384 c 2 - 640 0 l 2 - 640 -17.669921875 625.669921875 -32 608 -32 c 2 - 32 -32 l 2 - 14.330078125 -32 0 -17.669921875 0 0 c 2 - 0 384 l 2 - 0 401.669921875 14.330078125 416 32 416 c 2 - 608 416 l 2 -176 120.120117188 m 1 - 199.620117188 120.75 218.669921875 140.66015625 218.669921875 165.190429688 c 0 - 218.669921875 185.16015625 205.6796875 203 187.08984375 208.580078125 c 2 - 142.08984375 222.080078125 l 2 - 136.9296875 223.620117188 133.3203125 228.860351562 133.3203125 234.809570312 c 0 - 133.3203125 242.080078125 138.620117188 248 145.120117188 248 c 2 - 173.23046875 248 l 2 - 177.790039062 248 182.1796875 246.709960938 186.049804688 244.280273438 c 0 - 189.290039062 242.25 193.41015625 242.370117188 196.1796875 245.009765625 c 2 - 207.9296875 256.219726562 l 2 - 211.459960938 259.58984375 211.259765625 265.4296875 207.360351562 268.360351562 c 0 - 198.259765625 275.200195312 187.280273438 279.129882812 175.990234375 279.709960938 c 1 - 175.990234375 296 l 2 - 175.990234375 300.419921875 172.41015625 304 167.990234375 304 c 2 - 151.990234375 304 l 2 - 147.5703125 304 143.990234375 300.419921875 143.990234375 296 c 2 - 143.990234375 279.879882812 l 1 - 120.370117188 279.25 101.3203125 259.330078125 101.3203125 234.809570312 c 0 - 101.3203125 214.83984375 114.309570312 197 132.900390625 191.419921875 c 2 - 177.900390625 177.919921875 l 2 - 183.059570312 176.379882812 186.669921875 171.139648438 186.669921875 165.190429688 c 0 - 186.669921875 157.919921875 181.370117188 152 174.870117188 152 c 2 - 146.759765625 152 l 2 - 142.200195312 152 137.809570312 153.299804688 133.940429688 155.719726562 c 0 - 130.700195312 157.75 126.580078125 157.629882812 123.809570312 154.990234375 c 2 - 112.059570312 143.780273438 l 2 - 108.530273438 140.41015625 108.73046875 134.5703125 112.629882812 131.639648438 c 0 - 121.73046875 124.809570312 132.709960938 120.870117188 144 120.290039062 c 1 - 144 104 l 2 - 144 99.580078125 147.580078125 96 152 96 c 2 - 168 96 l 2 - 172.419921875 96 176 99.580078125 176 104 c 2 - 176 120.120117188 l 1 -416 136 m 2 - 416 152 l 2 - 416 156.419921875 412.419921875 160 408 160 c 2 - 296 160 l 2 - 291.580078125 160 288 156.419921875 288 152 c 2 - 288 136 l 2 - 288 131.580078125 291.580078125 128 296 128 c 2 - 408 128 l 2 - 412.419921875 128 416 131.580078125 416 136 c 2 -576 136 m 2 - 576 152 l 2 - 576 156.419921875 572.419921875 160 568 160 c 2 - 488 160 l 2 - 483.580078125 160 480 156.419921875 480 152 c 2 - 480 136 l 2 - 480 131.580078125 483.580078125 128 488 128 c 2 - 568 128 l 2 - 572.419921875 128 576 131.580078125 576 136 c 2 -576 232 m 2 - 576 248 l 2 - 576 252.419921875 572.419921875 256 568 256 c 2 - 296 256 l 2 - 291.580078125 256 288 252.419921875 288 248 c 2 - 288 232 l 2 - 288 227.580078125 291.580078125 224 296 224 c 2 - 568 224 l 2 - 572.419921875 224 576 227.580078125 576 232 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" m o n e y hyphen c h e c k hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" M o n e y hyphen C h e c k hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" M o n e y hyphen c h e c k hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" M O N E Y hyphen C H E C K hyphen A L T -EndChar - -StartChar: not-equal -Encoding: 62782 62782 675 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 240 m 2 - 317.580078125 240 l 1 - 243.049804688 144 l 1 - 416 144 l 2 - 433.669921875 144 448 129.669921875 448 112 c 2 - 448 80 l 2 - 448 62.330078125 433.669921875 48 416 48 c 2 - 168.51953125 48 l 1 - 86.4296875 -57.73046875 l 2 - 81.0595703125 -64.740234375 71.01953125 -66.080078125 64 -60.7001953125 c 2 - 38.58984375 -41.240234375 l 2 - 31.580078125 -35.8603515625 30.25 -25.8203125 35.6201171875 -18.8095703125 c 2 - 87.490234375 48 l 1 - 32 48 l 2 - 14.330078125 48 0 62.330078125 0 80 c 2 - 0 112 l 2 - 0 129.669921875 14.330078125 144 32 144 c 2 - 162.030273438 144 l 1 - 236.559570312 240 l 1 - 32 240 l 2 - 14.330078125 240 0 254.330078125 0 272 c 2 - 0 304 l 2 - 0 321.669921875 14.330078125 336 32 336 c 2 - 311.08984375 336 l 1 - 393.169921875 441.73046875 l 2 - 398.549804688 448.740234375 408.58984375 450.080078125 415.610351562 444.700195312 c 2 - 441.01953125 425.240234375 l 2 - 448.030273438 419.870117188 449.360351562 409.830078125 443.990234375 402.809570312 c 2 - 392.120117188 336 l 1 - 416 336 l 2 - 433.669921875 336 448 321.669921875 448 304 c 2 - 448 272 l 2 - 448 254.330078125 433.669921875 240 416 240 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" n o t hyphen e q u a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" N O T hyphen E Q U A L -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" N o t hyphen E q u a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" N o t hyphen e q u a l -EndChar - -StartChar: palette -Encoding: 62783 62783 676 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -204.299804688 443 m 0 - 368.099609375 474.900390625 511.5 350.900390625 512 193.299804688 c 0 - 511.900390625 157.599609375 482.900390625 128 447.099609375 128 c 2 - 367.400390625 128 l 2 - 316.400390625 128 283.400390625 75 306.5 29.599609375 c 0 - 325.400390625 -7.5 305.200195312 -55.7001953125 264 -62.099609375 c 0 - 136.900390625 -81.7998046875 -31.7998046875 57.599609375 5.2001953125 244.599609375 c 0 - 24.7998046875 343.700195312 104.900390625 423.599609375 204.299804688 443 c 0 -96 128 m 0 - 113.700195312 128 128 142.299804688 128 160 c 0 - 128 177.700195312 113.700195312 192 96 192 c 0 - 78.2998046875 192 64 177.700195312 64 160 c 0 - 64 142.299804688 78.2998046875 128 96 128 c 0 -128 256 m 0 - 145.700195312 256 160 270.299804688 160 288 c 0 - 160 305.700195312 145.700195312 320 128 320 c 0 - 110.299804688 320 96 305.700195312 96 288 c 0 - 96 270.299804688 110.299804688 256 128 256 c 0 -256 320 m 0 - 273.700195312 320 288 334.299804688 288 352 c 0 - 288 369.700195312 273.700195312 384 256 384 c 0 - 238.299804688 384 224 369.700195312 224 352 c 0 - 224 334.299804688 238.299804688 320 256 320 c 0 -384 256 m 0 - 401.700195312 256 416 270.299804688 416 288 c 0 - 416 305.700195312 401.700195312 320 384 320 c 0 - 366.299804688 320 352 305.700195312 352 288 c 0 - 352 270.299804688 366.299804688 256 384 256 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" p a l e t t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" P A L E T T E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" P a l e t t e -EndChar - -StartChar: parking -Encoding: 62784 62784 677 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.5 416 448 394.5 448 368 c 2 - 448 16 l 2 - 448 -10.5 426.5 -32 400 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 400 416 l 2 -240 128 m 2 - 292.900390625 128 336 171.099609375 336 224 c 0 - 336 276.900390625 292.900390625 320 240 320 c 2 - 144 320 l 2 - 135.200195312 320 128 312.799804688 128 304 c 2 - 128 80 l 2 - 128 71.2001953125 135.200195312 64 144 64 c 2 - 176 64 l 2 - 184.799804688 64 192 71.2001953125 192 80 c 2 - 192 128 l 1 - 240 128 l 2 -240 256 m 2 - 257.599609375 256 272 241.599609375 272 224 c 0 - 272 206.400390625 257.599609375 192 240 192 c 2 - 192 192 l 1 - 192 256 l 1 - 240 256 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" p a r k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" P a r k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" P A R K I N G -EndChar - -StartChar: percentage -Encoding: 62785 62785 678 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -109.25 274.75 m 0 - 84.259765625 249.75 43.740234375 249.75 18.740234375 274.75 c 0 - -6.25 299.740234375 -6.25 340.26953125 18.740234375 365.259765625 c 0 - 43.73046875 390.25 84.259765625 390.25 109.25 365.259765625 c 0 - 134.240234375 340.26953125 134.240234375 299.740234375 109.25 274.75 c 0 -365.25 109.259765625 m 0 - 390.25 84.259765625 390.25 43.740234375 365.25 18.75 c 0 - 340.259765625 -6.240234375 299.73046875 -6.240234375 274.740234375 18.75 c 0 - 249.75 43.740234375 249.75 84.26953125 274.740234375 109.259765625 c 0 - 299.73046875 134.25 340.259765625 134.25 365.25 109.259765625 c 0 -363.309570312 340.690429688 m 2 - 375.809570312 328.190429688 375.809570312 307.9296875 363.309570312 295.440429688 c 2 - 88.5595703125 20.6904296875 l 2 - 76.0703125 8.1904296875 55.8095703125 8.1904296875 43.3095703125 20.6904296875 c 2 - 20.6904296875 43.3095703125 l 2 - 8.1904296875 55.7998046875 8.1904296875 76.0595703125 20.6904296875 88.5595703125 c 2 - 295.440429688 363.309570312 l 2 - 307.9296875 375.809570312 328.190429688 375.809570312 340.690429688 363.309570312 c 2 - 363.309570312 340.690429688 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" p e r c e n t a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" P e r c e n t a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" P E R C E N T A G E -EndChar - -StartChar: project-diagram -Encoding: 62786 62786 679 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 128 m 2 - 401.669921875 128 416 113.669921875 416 96 c 2 - 416 -32 l 2 - 416 -49.669921875 401.669921875 -64 384 -64 c 2 - 256 -64 l 2 - 238.330078125 -64 224 -49.669921875 224 -32 c 2 - 224 96 l 2 - 224 113.669921875 238.330078125 128 256 128 c 2 - 384 128 l 2 -192 416 m 2 - 192 384 l 1 - 416 384 l 1 - 416 320 l 1 - 192 320 l 1 - 192 272.490234375 l 1 - 256.280273438 160 l 1 - 256 160 l 2 - 232.400390625 160 211.98046875 147.01953125 200.879882812 127.959960938 c 1 - 127.719726562 256 l 1 - 32 256 l 2 - 14.330078125 256 0 270.330078125 0 288 c 2 - 0 416 l 2 - 0 433.669921875 14.330078125 448 32 448 c 2 - 160 448 l 2 - 177.669921875 448 192 433.669921875 192 416 c 2 -608 448 m 2 - 625.669921875 448 640 433.669921875 640 416 c 2 - 640 288 l 2 - 640 270.330078125 625.669921875 256 608 256 c 2 - 480 256 l 2 - 462.330078125 256 448 270.330078125 448 288 c 2 - 448 416 l 2 - 448 433.669921875 462.330078125 448 480 448 c 2 - 608 448 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" p r o j e c t hyphen d i a g r a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" P r o j e c t hyphen D i a g r a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" P r o j e c t hyphen d i a g r a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" P R O J E C T hyphen D I A G R A M -EndChar - -StartChar: receipt -Encoding: 62787 62787 680 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -358.400390625 444.799804688 m 2 - 369 452.700195312 384 445.200195312 384 432 c 2 - 384 -48 l 2 - 384 -61.2001953125 368.900390625 -68.7001953125 358.400390625 -60.7998046875 c 2 - 320 -16 l 1 - 265.599609375 -60.7998046875 l 2 - 263.249023438 -62.580078125 258.948242188 -64.025390625 256 -64.025390625 c 0 - 253.051757812 -64.025390625 248.750976562 -62.580078125 246.400390625 -60.7998046875 c 2 - 192 -16 l 1 - 137.599609375 -60.7998046875 l 2 - 135.249023438 -62.580078125 130.948242188 -64.025390625 128 -64.025390625 c 0 - 125.051757812 -64.025390625 120.750976562 -62.580078125 118.400390625 -60.7998046875 c 2 - 64 -16 l 1 - 25.599609375 -60.7998046875 l 2 - 15 -68.7001953125 0 -61.2001953125 0 -48 c 2 - 0 432 l 2 - 0 445.200195312 15 452.700195312 25.599609375 444.799804688 c 2 - 64 400 l 1 - 118.400390625 444.799804688 l 2 - 120.750976562 446.580078125 125.051757812 448.025390625 128 448.025390625 c 0 - 130.948242188 448.025390625 135.249023438 446.580078125 137.599609375 444.799804688 c 2 - 192 400 l 1 - 246.400390625 444.799804688 l 2 - 248.750976562 446.580078125 253.051757812 448.025390625 256 448.025390625 c 0 - 258.948242188 448.025390625 263.249023438 446.580078125 265.599609375 444.799804688 c 2 - 320 400 l 1 - 358.400390625 444.799804688 l 2 -320 88 m 2 - 320 104 l 2 - 320 108.400390625 316.400390625 112 312 112 c 2 - 72 112 l 2 - 67.599609375 112 64 108.400390625 64 104 c 2 - 64 88 l 2 - 64 83.599609375 67.599609375 80 72 80 c 2 - 312 80 l 2 - 316.400390625 80 320 83.599609375 320 88 c 2 -320 184 m 2 - 320 200 l 2 - 320 204.400390625 316.400390625 208 312 208 c 2 - 72 208 l 2 - 67.599609375 208 64 204.400390625 64 200 c 2 - 64 184 l 2 - 64 179.599609375 67.599609375 176 72 176 c 2 - 312 176 l 2 - 316.400390625 176 320 179.599609375 320 184 c 2 -320 280 m 2 - 320 296 l 2 - 320 300.400390625 316.400390625 304 312 304 c 2 - 72 304 l 2 - 67.599609375 304 64 300.400390625 64 296 c 2 - 64 280 l 2 - 64 275.599609375 67.599609375 272 72 272 c 2 - 312 272 l 2 - 316.400390625 272 320 275.599609375 320 280 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" r e c e i p t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" R E C E I P T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" R e c e i p t -EndChar - -StartChar: robot -Encoding: 62788 62788 681 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 192 m 2 - 0 209.700195312 14.2998046875 224 32 224 c 2 - 64 224 l 1 - 64 32 l 1 - 32 32 l 2 - 14.2998046875 32 0 46.2998046875 0 64 c 2 - 0 192 l 2 -464 352 m 2 - 508.200195312 352 544 316.200195312 544 272 c 2 - 544 0 l 2 - 544 -35.2998046875 515.299804688 -64 480 -64 c 2 - 160 -64 l 2 - 124.700195312 -64 96 -35.2998046875 96 0 c 2 - 96 272 l 2 - 96 316.200195312 131.799804688 352 176 352 c 2 - 288 352 l 1 - 288 416 l 2 - 288 433.700195312 302.299804688 448 320 448 c 0 - 337.700195312 448 352 433.700195312 352 416 c 2 - 352 352 l 1 - 464 352 l 2 -256 32 m 1 - 256 64 l 1 - 192 64 l 1 - 192 32 l 1 - 256 32 l 1 -224 152 m 0 - 246.099609375 152 264 169.900390625 264 192 c 0 - 264 214.099609375 246.099609375 232 224 232 c 0 - 201.900390625 232 184 214.099609375 184 192 c 0 - 184 169.900390625 201.900390625 152 224 152 c 0 -352 32 m 1 - 352 64 l 1 - 288 64 l 1 - 288 32 l 1 - 352 32 l 1 -448 32 m 1 - 448 64 l 1 - 384 64 l 1 - 384 32 l 1 - 448 32 l 1 -416 152 m 0 - 438.099609375 152 456 169.900390625 456 192 c 0 - 456 214.099609375 438.099609375 232 416 232 c 0 - 393.900390625 232 376 214.099609375 376 192 c 0 - 376 169.900390625 393.900390625 152 416 152 c 0 -608 224 m 2 - 625.700195312 224 640 209.700195312 640 192 c 2 - 640 64 l 2 - 640 46.2998046875 625.700195312 32 608 32 c 2 - 576 32 l 1 - 576 224 l 1 - 608 224 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" r o b o t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" R o b o t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" R O B O T -EndChar - -StartChar: ruler -Encoding: 62789 62789 682 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -635.700195312 280.799804688 m 2 - 644.5 265.799804688 639.299804688 246.599609375 624.099609375 238 c 2 - 127.299804688 -43.900390625 l 2 - 112.099609375 -52.5 92.599609375 -47.400390625 83.7998046875 -32.400390625 c 2 - 4.2001953125 103.200195312 l 2 - -4.599609375 118.200195312 0.7001953125 137.299804688 15.900390625 146 c 2 - 84.900390625 185.099609375 l 1 - 144.599609375 83.7001953125 l 2 - 146.799804688 79.900390625 151.700195312 78.599609375 155.5 80.7998046875 c 2 - 169.299804688 88.599609375 l 2 - 173.099609375 90.7998046875 174.400390625 95.599609375 172.200195312 99.2998046875 c 2 - 112.5 201 l 1 - 167.700195312 232.299804688 l 1 - 195.599609375 184.799804688 l 2 - 197.799804688 181 202.700195312 179.700195312 206.5 181.900390625 c 2 - 220.299804688 189.700195312 l 2 - 224.099609375 191.900390625 225.400390625 196.599609375 223.200195312 200.400390625 c 2 - 195.299804688 247.799804688 l 1 - 250.5 279.099609375 l 1 - 310.200195312 177.400390625 l 2 - 312.400390625 173.599609375 317.299804688 172.299804688 321.099609375 174.5 c 2 - 334.900390625 182.299804688 l 2 - 338.700195312 184.5 340 189.299804688 337.799804688 193 c 2 - 278 294.700195312 l 1 - 333.200195312 326 l 1 - 361.099609375 278.700195312 l 2 - 363.299804688 274.900390625 368.200195312 273.599609375 372 275.799804688 c 2 - 385.799804688 283.599609375 l 2 - 389.599609375 285.799804688 390.900390625 290.5 388.700195312 294.299804688 c 2 - 360.799804688 341.700195312 l 1 - 416 373 l 1 - 475.700195312 271.400390625 l 2 - 477.900390625 267.599609375 482.799804688 266.299804688 486.599609375 268.5 c 2 - 500.400390625 276.299804688 l 2 - 504.200195312 278.5 505.5 283.200195312 503.299804688 287 c 2 - 443.599609375 388.700195312 l 1 - 512.599609375 427.799804688 l 2 - 527.799804688 436.400390625 547.299804688 431.299804688 556.099609375 416.299804688 c 2 - 635.700195312 280.799804688 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" r u l e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" R u l e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" R U L E R -EndChar - -StartChar: ruler-combined -Encoding: 62790 62790 683 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -160 160 m 1 - 160 118.620117188 l 1 - 1.5703125 -39.7998046875 l 2 - 0.91015625 -37.240234375 0 -34.76953125 0 -32 c 2 - 0 416 l 2 - 0 433.669921875 14.330078125 448 32 448 c 2 - 128 448 l 2 - 145.669921875 448 160 433.669921875 160 416 c 2 - 160 384 l 1 - 104 384 l 2 - 99.580078125 384 96 380.419921875 96 376 c 2 - 96 360 l 2 - 96 355.580078125 99.580078125 352 104 352 c 2 - 160 352 l 1 - 160 288 l 1 - 104 288 l 2 - 99.580078125 288 96 284.419921875 96 280 c 2 - 96 264 l 2 - 96 259.580078125 99.580078125 256 104 256 c 2 - 160 256 l 1 - 160 192 l 1 - 104 192 l 2 - 99.580078125 192 96 188.419921875 96 184 c 2 - 96 168 l 2 - 96 163.580078125 99.580078125 160 104 160 c 2 - 160 160 l 1 -480 96 m 2 - 497.669921875 96 512 81.669921875 512 64 c 2 - 512 -32 l 2 - 512 -49.669921875 497.669921875 -64 480 -64 c 2 - 32 -64 l 2 - 29.240234375 -64 26.759765625 -63.08984375 24.2001953125 -62.4296875 c 2 - 182.629882812 96 l 1 - 224 96 l 1 - 224 40 l 2 - 224 35.580078125 227.580078125 32 232 32 c 2 - 248 32 l 2 - 252.419921875 32 256 35.580078125 256 40 c 2 - 256 96 l 1 - 320 96 l 1 - 320 40 l 2 - 320 35.580078125 323.580078125 32 328 32 c 2 - 344 32 l 2 - 348.419921875 32 352 35.580078125 352 40 c 2 - 352 96 l 1 - 416 96 l 1 - 416 40 l 2 - 416 35.580078125 419.580078125 32 424 32 c 2 - 440 32 l 2 - 444.419921875 32 448 35.580078125 448 40 c 2 - 448 96 l 1 - 480 96 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" r u l e r hyphen c o m b i n e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" R u l e r hyphen C o m b i n e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" R u l e r hyphen c o m b i n e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" R U L E R hyphen C O M B I N E D -EndChar - -StartChar: ruler-horizontal -Encoding: 62791 62791 684 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 320 m 2 - 561.669921875 320 576 305.669921875 576 288 c 2 - 576 96 l 2 - 576 78.330078125 561.669921875 64 544 64 c 2 - 32 64 l 2 - 14.330078125 64 0 78.330078125 0 96 c 2 - 0 288 l 2 - 0 305.669921875 14.330078125 320 32 320 c 2 - 80 320 l 1 - 80 232 l 2 - 80 227.580078125 83.580078125 224 88 224 c 2 - 104 224 l 2 - 108.419921875 224 112 227.580078125 112 232 c 2 - 112 320 l 1 - 176 320 l 1 - 176 232 l 2 - 176 227.580078125 179.580078125 224 184 224 c 2 - 200 224 l 2 - 204.419921875 224 208 227.580078125 208 232 c 2 - 208 320 l 1 - 272 320 l 1 - 272 232 l 2 - 272 227.580078125 275.580078125 224 280 224 c 2 - 296 224 l 2 - 300.419921875 224 304 227.580078125 304 232 c 2 - 304 320 l 1 - 368 320 l 1 - 368 232 l 2 - 368 227.580078125 371.580078125 224 376 224 c 2 - 392 224 l 2 - 396.419921875 224 400 227.580078125 400 232 c 2 - 400 320 l 1 - 464 320 l 1 - 464 232 l 2 - 464 227.580078125 467.580078125 224 472 224 c 2 - 488 224 l 2 - 492.419921875 224 496 227.580078125 496 232 c 2 - 496 320 l 1 - 544 320 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" r u l e r hyphen h o r i z o n t a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" R u l e r hyphen H o r i z o n t a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" R u l e r hyphen h o r i z o n t a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" R U L E R hyphen H O R I Z O N T A L -EndChar - -StartChar: ruler-vertical -Encoding: 62792 62792 685 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -168 32 m 2 - 256 32 l 1 - 256 -32 l 2 - 256 -49.669921875 241.669921875 -64 224 -64 c 2 - 32 -64 l 2 - 14.330078125 -64 0 -49.669921875 0 -32 c 2 - 0 416 l 2 - 0 433.669921875 14.330078125 448 32 448 c 2 - 224 448 l 2 - 241.669921875 448 256 433.669921875 256 416 c 2 - 256 352 l 1 - 168 352 l 2 - 163.580078125 352 160 348.419921875 160 344 c 2 - 160 328 l 2 - 160 323.580078125 163.580078125 320 168 320 c 2 - 256 320 l 1 - 256 256 l 1 - 168 256 l 2 - 163.580078125 256 160 252.419921875 160 248 c 2 - 160 232 l 2 - 160 227.580078125 163.580078125 224 168 224 c 2 - 256 224 l 1 - 256 160 l 1 - 168 160 l 2 - 163.580078125 160 160 156.419921875 160 152 c 2 - 160 136 l 2 - 160 131.580078125 163.580078125 128 168 128 c 2 - 256 128 l 1 - 256 64 l 1 - 168 64 l 2 - 163.580078125 64 160 60.419921875 160 56 c 2 - 160 40 l 2 - 160 35.580078125 163.580078125 32 168 32 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" r u l e r hyphen v e r t i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" R u l e r hyphen V e r t i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" R u l e r hyphen v e r t i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" R U L E R hyphen V E R T I C A L -EndChar - -StartChar: school -Encoding: 62793 62793 686 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 224 m 2 - 0 241.669921875 14.330078125 256 32 256 c 2 - 96 256 l 1 - 96 -64 l 1 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 224 l 2 -360 272 m 2 - 364.419921875 272 368 268.419921875 368 264 c 2 - 368 248 l 2 - 368 243.580078125 364.419921875 240 360 240 c 2 - 312 240 l 2 - 307.580078125 240 304 243.580078125 304 248 c 2 - 304 312 l 2 - 304 316.419921875 307.580078125 320 312 320 c 2 - 328 320 l 2 - 332.419921875 320 336 316.419921875 336 312 c 2 - 336 272 l 1 - 360 272 l 2 -497.75 335.959960938 m 2 - 506.650390625 330.030273438 512 320.030273438 512 309.330078125 c 2 - 512 -64 l 1 - 384 -64 l 1 - 384 80 l 2 - 384 88.83984375 376.83984375 96 368 96 c 2 - 272 96 l 2 - 263.16015625 96 256 88.83984375 256 80 c 2 - 256 -64 l 1 - 128 -64 l 1 - 128 309.33984375 l 2 - 128.001953125 318.791015625 134.385742188 330.716796875 142.25 335.959960938 c 2 - 302.25 442.629882812 l 2 - 306.700195312 445.594726562 314.65234375 448 320 448 c 0 - 325.34765625 448 333.299804688 445.594726562 337.75 442.629882812 c 2 - 497.75 335.959960938 l 2 -320 192 m 0 - 364.1796875 192 400 227.8203125 400 272 c 0 - 400 316.1796875 364.1796875 352 320 352 c 0 - 275.8203125 352 240 316.1796875 240 272 c 0 - 240 227.8203125 275.8203125 192 320 192 c 0 -608 256 m 2 - 625.669921875 256 640 241.669921875 640 224 c 2 - 640 -48 l 2 - 640 -56.83984375 632.83984375 -64 624 -64 c 2 - 544 -64 l 1 - 544 256 l 1 - 608 256 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" s c h o o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S C H O O L -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S c h o o l -EndChar - -StartChar: screwdriver -Encoding: 62794 62794 687 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 448 m 1 - 512 384 l 1 - 416 256 l 1 - 353.940429688 256 l 1 - 270.91015625 172.969726562 l 1 - 266.66015625 179.759765625 261.83984375 186.240234375 256.040039062 192.040039062 c 0 - 250.240234375 197.849609375 243.759765625 202.66015625 236.969726562 206.91015625 c 1 - 320 289.940429688 l 1 - 320 352 l 1 - 448 448 l 1 -128 169.41015625 m 2 - 157.110351562 198.51953125 204.299804688 198.51953125 233.41015625 169.41015625 c 0 - 262.51953125 140.299804688 262.51953125 93.1103515625 233.41015625 64 c 2 - 116.330078125 -53.080078125 l 2 - 101.76953125 -67.6396484375 78.1796875 -67.6396484375 63.6201171875 -53.080078125 c 2 - 10.919921875 -0.3798828125 l 2 - -3.6298828125 14.1796875 -3.6298828125 37.7802734375 10.919921875 52.330078125 c 2 - 128 169.41015625 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" s c r e w d r i v e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S C R E W D R I V E R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S c r e w d r i v e r -EndChar - -StartChar: shoe-prints -Encoding: 62795 62795 688 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 288 m 2 - 156.650390625 288 128 316.650390625 128 352 c 0 - 128 387.349609375 156.650390625 416 192 416 c 2 - 224 416 l 1 - 224 288 l 1 - 192 288 l 2 -0 32 m 0 - 0 67.349609375 28.650390625 96 64 96 c 2 - 96 96 l 1 - 96 -32 l 1 - 64 -32 l 2 - 28.650390625 -32 0 -3.349609375 0 32 c 0 -337.459960938 160 m 0 - 427.8203125 160 512 128 512 64 c 0 - 512 18.7802734375 472.900390625 -33.2998046875 363.419921875 -56.8203125 c 0 - 331.440429688 -63.6904296875 298.530273438 -65.330078125 265.83984375 -63.01953125 c 0 - 238.540039062 -61.08984375 211.740234375 -55.25 185.530273438 -47.9697265625 c 2 - 128 -32 l 1 - 128 96 l 1 - 188.209960938 96 207.940429688 111.620117188 232.73046875 128 c 0 - 261.299804688 146.879882812 302.549804688 160 337.459960938 160 c 0 -491.419921875 440.809570312 m 0 - 600.900390625 417.299804688 640 365.219726562 640 320 c 0 - 640 256 555.8203125 224 465.459960938 224 c 0 - 430.549804688 224 389.299804688 237.120117188 360.73046875 256 c 0 - 335.940429688 272.379882812 316.200195312 288 256 288 c 1 - 256 416 l 1 - 313.530273438 431.969726562 l 2 - 339.740234375 439.240234375 366.540039062 445.080078125 393.83984375 447.009765625 c 0 - 426.530273438 449.330078125 459.440429688 447.6796875 491.419921875 440.809570312 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" s h o e hyphen p r i n t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S H O E hyphen P R I N T S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S h o e hyphen P r i n t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S h o e hyphen p r i n t s -EndChar - -StartChar: skull -Encoding: 62796 62796 689 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 448 m 0 - 397.400390625 448 512 347.700195312 512 224 c 0 - 512 153.900390625 475.099609375 91.400390625 417.5 50.2998046875 c 0 - 407.799804688 43.400390625 402.299804688 32.099609375 404 20.400390625 c 2 - 413.400390625 -45.7998046875 l 2 - 414.799804688 -55.400390625 407.400390625 -64 397.700195312 -64 c 2 - 320 -64 l 1 - 320 -8 l 2 - 320 -3.599609375 316.400390625 0 312 0 c 2 - 296 0 l 2 - 291.599609375 0 288 -3.599609375 288 -8 c 2 - 288 -64 l 1 - 224 -64 l 1 - 224 -8 l 2 - 224 -3.599609375 220.400390625 0 216 0 c 2 - 200 0 l 2 - 195.599609375 0 192 -3.599609375 192 -8 c 2 - 192 -64 l 1 - 114.299804688 -64 l 2 - 104.599609375 -64 97.2001953125 -55.400390625 98.599609375 -45.7998046875 c 2 - 108 20.400390625 l 2 - 109.700195312 32.2001953125 104.099609375 43.400390625 94.5 50.2998046875 c 0 - 36.900390625 91.400390625 0 153.900390625 0 224 c 0 - 0 347.700195312 114.599609375 448 256 448 c 0 -160 128 m 0 - 195.299804688 128 224 156.700195312 224 192 c 0 - 224 227.299804688 195.299804688 256 160 256 c 0 - 124.700195312 256 96 227.299804688 96 192 c 0 - 96 156.700195312 124.700195312 128 160 128 c 0 -352 128 m 0 - 387.299804688 128 416 156.700195312 416 192 c 0 - 416 227.299804688 387.299804688 256 352 256 c 0 - 316.700195312 256 288 227.299804688 288 192 c 0 - 288 156.700195312 316.700195312 128 352 128 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" s k u l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" S K U L L -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" S k u l l -EndChar - -StartChar: smoking-ban -Encoding: 62797 62797 690 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 144 m 2 - 96 208 l 2 - 96 216.799804688 103.200195312 224 112 224 c 2 - 133.5 224 l 1 - 229.5 128 l 1 - 112 128 l 2 - 103.200195312 128 96 135.200195312 96 144 c 2 -256 448 m 0 - 397.400390625 448 512 333.400390625 512 192 c 0 - 512 50.599609375 397.400390625 -64 256 -64 c 0 - 114.599609375 -64 0 50.599609375 0 192 c 0 - 0 333.400390625 114.599609375 448 256 448 c 0 -256 0 m 0 - 297.400390625 0 335.700195312 13.2998046875 367.099609375 35.7001953125 c 1 - 99.7001953125 303.099609375 l 1 - 77.2998046875 271.700195312 64 233.400390625 64 192 c 0 - 64 86.099609375 150.099609375 0 256 0 c 0 -301.200195312 192 m 1 - 333.200195312 160 l 1 - 384 160 l 1 - 384 192 l 1 - 301.200195312 192 l 1 -412.299804688 80.900390625 m 1 - 434.700195312 112.299804688 448 150.599609375 448 192 c 0 - 448 297.900390625 361.900390625 384 256 384 c 0 - 214.599609375 384 176.299804688 370.700195312 144.900390625 348.299804688 c 1 - 269.200195312 224 l 1 - 400 224 l 2 - 408.799804688 224 416 216.799804688 416 208 c 2 - 416 144 l 2 - 416 135.200195312 408.799804688 128 400 128 c 2 - 365.200195312 128 l 1 - 412.299804688 80.900390625 l 1 -320.599609375 320 m 0 - 352.700195312 320 379.299804688 296.299804688 383.900390625 265.400390625 c 0 - 384.599609375 260.5 380.900390625 256 375.900390625 256 c 2 - 359.700195312 256 l 2 - 356 256 352.700195312 258.5 352 262.099609375 c 0 - 349.200195312 276.799804688 336.200195312 288 320.599609375 288 c 0 - 288.5 288 261.900390625 311.700195312 257.299804688 342.599609375 c 0 - 256.599609375 347.5 260.299804688 352 265.299804688 352 c 2 - 281.5 352 l 2 - 285.200195312 352 288.5 349.5 289.200195312 345.900390625 c 0 - 292 331.200195312 305 320 320.599609375 320 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" s m o k i n g hyphen b a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S M O K I N G hyphen B A N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S m o k i n g hyphen B a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" S m o k i n g hyphen b a n -EndChar - -StartChar: store -Encoding: 62798 62798 691 -Width: 616 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -602 329.400390625 m 2 - 635.599609375 275.799804688 605.799804688 201.400390625 543 193 c 0 - 538.5 192.400390625 534 192.099609375 529.299804688 192.099609375 c 0 - 499.799804688 192.099609375 473.599609375 205.099609375 455.5 225.200195312 c 1 - 437.5 205.099609375 411.299804688 192.099609375 381.700195312 192.099609375 c 0 - 352.200195312 192.099609375 325.900390625 205.099609375 307.900390625 225.200195312 c 1 - 289.900390625 205.099609375 263.700195312 192.099609375 234.099609375 192.099609375 c 0 - 204.599609375 192.099609375 178.299804688 205.099609375 160.299804688 225.200195312 c 1 - 142.299804688 205.099609375 116.099609375 192.099609375 86.5 192.099609375 c 0 - 81.900390625 192.099609375 77.2998046875 192.400390625 72.7998046875 193 c 0 - 10.2001953125 201.5 -19.5 275.900390625 14 329.400390625 c 2 - 78.900390625 433 l 2 - 84.7001953125 442.299804688 95 448 106 448 c 2 - 510 448 l 2 - 521 448 531.299804688 442.299804688 537.099609375 433 c 2 - 602 329.400390625 l 2 -529.5 160 m 0 - 535.599609375 160 541.599609375 160.400390625 547.700195312 161.200195312 c 0 - 553.299804688 161.900390625 558.700195312 163.200195312 564.099609375 164.799804688 c 1 - 564.099609375 -32 l 2 - 564.099609375 -49.7001953125 549.799804688 -64 532.099609375 -64 c 2 - 84.099609375 -64 l 2 - 66.400390625 -64 52.099609375 -49.7001953125 52.099609375 -32 c 2 - 52.099609375 164.799804688 l 1 - 57.400390625 163.299804688 62.900390625 162 68.5 161.200195312 c 0 - 74.400390625 160.400390625 80.5 160 86.5 160 c 0 - 96.5 160 106.400390625 161.599609375 116 163.799804688 c 1 - 116 64 l 1 - 500 64 l 1 - 500 163.799804688 l 1 - 509.599609375 161.5 519.5 160 529.5 160 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" s t o r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" S t o r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" S T O R E -EndChar - -StartChar: store-alt -Encoding: 62799 62799 692 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320 64 m 1 - 320 224 l 1 - 384 224 l 1 - 384 -32 l 2 - 384 -49.7001953125 369.700195312 -64 352 -64 c 2 - 96 -64 l 2 - 78.2998046875 -64 64 -49.7001953125 64 -32 c 2 - 64 224 l 1 - 128 224 l 1 - 128 64 l 1 - 320 64 l 1 -634.599609375 305.799804688 m 2 - 648.700195312 284.5 633.5 256 608 256 c 2 - 32.099609375 256 l 2 - 6.5 256 -8.7001953125 284.5 5.5 305.799804688 c 2 - 90.7998046875 433.799804688 l 2 - 96.7001953125 442.700195312 106.700195312 448 117.400390625 448 c 2 - 522.599609375 448 l 2 - 533.299804688 448 543.299804688 442.700195312 549.299804688 433.799804688 c 2 - 634.599609375 305.799804688 l 2 -512 -48 m 2 - 512 224 l 1 - 576 224 l 1 - 576 -48 l 2 - 576 -56.7998046875 568.799804688 -64 560 -64 c 2 - 528 -64 l 2 - 519.200195312 -64 512 -56.7998046875 512 -48 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" s t o r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" S t o r e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" S t o r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" S T O R E hyphen A L T -EndChar - -StartChar: stream -Encoding: 62800 62800 693 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -16 320 m 2 - 7.16015625 320 0 327.16015625 0 336 c 2 - 0 400 l 2 - 0 408.83984375 7.16015625 416 16 416 c 2 - 432 416 l 2 - 440.83984375 416 448 408.83984375 448 400 c 2 - 448 336 l 2 - 448 327.16015625 440.83984375 320 432 320 c 2 - 16 320 l 2 -496 240 m 2 - 504.83984375 240 512 232.83984375 512 224 c 2 - 512 160 l 2 - 512 151.16015625 504.83984375 144 496 144 c 2 - 80 144 l 2 - 71.16015625 144 64 151.16015625 64 160 c 2 - 64 224 l 2 - 64 232.83984375 71.16015625 240 80 240 c 2 - 496 240 l 2 -432 64 m 2 - 440.83984375 64 448 56.83984375 448 48 c 2 - 448 -16 l 2 - 448 -24.83984375 440.83984375 -32 432 -32 c 2 - 16 -32 l 2 - 7.16015625 -32 0 -24.83984375 0 -16 c 2 - 0 48 l 2 - 0 56.83984375 7.16015625 64 16 64 c 2 - 432 64 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" s t r e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S t r e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S T R E A M -EndChar - -StartChar: stroopwafel -Encoding: 62801 62801 694 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -188.120117188 237.259765625 m 1 - 233.370117188 192 l 1 - 188.110351562 146.75 l 1 - 142.860351562 192 l 1 - 188.120117188 237.259765625 l 1 -301.25 259.879882812 m 1 - 256 214.629882812 l 1 - 210.75 259.889648438 l 1 - 256 305.139648438 l 1 - 301.25 259.879882812 l 1 -210.75 124.120117188 m 1 - 256 169.370117188 l 1 - 301.259765625 124.120117188 l 1 - 256 78.8603515625 l 1 - 210.75 124.120117188 l 1 -256 448 m 0 - 397.379882812 448 512 333.379882812 512 192 c 0 - 512 50.6201171875 397.379882812 -64 256 -64 c 0 - 114.620117188 -64 0 50.6201171875 0 192 c 0 - 0 333.379882812 114.620117188 448 256 448 c 0 -442.6796875 152.400390625 m 2 - 443.971679688 153.6953125 445.020507812 156.23046875 445.020507812 158.059570312 c 0 - 445.020507812 159.889648438 443.971679688 162.424804688 442.6796875 163.719726562 c 2 - 414.389648438 192 l 1 - 442.66015625 220.309570312 l 2 - 445.780273438 223.4296875 445.780273438 228.5 442.66015625 231.620117188 c 2 - 431.349609375 242.9296875 l 2 - 428.23046875 246.049804688 423.16015625 246.049804688 420.040039062 242.9296875 c 2 - 391.75 214.639648438 l 1 - 346.5 259.900390625 l 1 - 380.440429688 293.83984375 l 1 - 397.41015625 276.870117188 l 2 - 400.530273438 273.75 405.599609375 273.75 408.719726562 276.870117188 c 2 - 420.030273438 288.1796875 l 2 - 423.150390625 291.299804688 423.150390625 296.370117188 420.030273438 299.490234375 c 2 - 403.059570312 316.459960938 l 1 - 420.030273438 333.4296875 l 2 - 423.150390625 336.549804688 423.150390625 341.620117188 420.030273438 344.740234375 c 2 - 408.719726562 356.049804688 l 2 - 405.599609375 359.169921875 400.530273438 359.169921875 397.41015625 356.049804688 c 2 - 380.440429688 339.080078125 l 1 - 363.469726562 356.049804688 l 2 - 360.349609375 359.169921875 355.280273438 359.169921875 352.16015625 356.049804688 c 2 - 340.849609375 344.740234375 l 2 - 337.73046875 341.620117188 337.73046875 336.549804688 340.849609375 333.4296875 c 2 - 357.8203125 316.459960938 l 1 - 323.879882812 282.51953125 l 1 - 278.620117188 327.76953125 l 1 - 306.91015625 356.059570312 l 2 - 310.030273438 359.1796875 310.030273438 364.25 306.91015625 367.370117188 c 2 - 295.599609375 378.6796875 l 2 - 292.48046875 381.799804688 287.41015625 381.799804688 284.290039062 378.6796875 c 2 - 256 350.389648438 l 1 - 227.690429688 378.66015625 l 2 - 224.5703125 381.780273438 219.5 381.780273438 216.379882812 378.66015625 c 2 - 205.0703125 367.349609375 l 2 - 201.950195312 364.23046875 201.950195312 359.16015625 205.0703125 356.040039062 c 2 - 233.360351562 327.75 l 1 - 188.099609375 282.5 l 1 - 154.16015625 316.440429688 l 1 - 171.129882812 333.41015625 l 2 - 174.25 336.530273438 174.25 341.599609375 171.129882812 344.719726562 c 2 - 159.8203125 356.030273438 l 2 - 156.700195312 359.150390625 151.629882812 359.150390625 148.509765625 356.030273438 c 2 - 131.540039062 339.059570312 l 1 - 114.5703125 356.030273438 l 2 - 111.450195312 359.150390625 106.379882812 359.150390625 103.259765625 356.030273438 c 2 - 91.9501953125 344.719726562 l 2 - 88.830078125 341.599609375 88.830078125 336.530273438 91.9501953125 333.41015625 c 2 - 108.919921875 316.440429688 l 1 - 91.9501953125 299.469726562 l 2 - 88.830078125 296.349609375 88.830078125 291.280273438 91.9501953125 288.16015625 c 2 - 103.259765625 276.849609375 l 2 - 106.379882812 273.73046875 111.450195312 273.73046875 114.5703125 276.849609375 c 2 - 131.540039062 293.8203125 l 1 - 165.48046875 259.879882812 l 1 - 120.23046875 214.620117188 l 1 - 91.9404296875 242.91015625 l 2 - 88.8203125 246.030273438 83.75 246.030273438 80.6298828125 242.91015625 c 2 - 69.3203125 231.599609375 l 2 - 66.2001953125 228.48046875 66.2001953125 223.41015625 69.3203125 220.290039062 c 2 - 97.6103515625 192 l 1 - 69.3203125 163.709960938 l 2 - 66.2001953125 160.58984375 66.2001953125 155.51953125 69.3203125 152.400390625 c 2 - 80.66015625 141.0703125 l 2 - 83.7802734375 137.950195312 88.849609375 137.950195312 91.9697265625 141.0703125 c 2 - 120.259765625 169.360351562 l 1 - 165.509765625 124.110351562 l 1 - 131.5703125 90.169921875 l 1 - 114.599609375 107.139648438 l 2 - 111.48046875 110.259765625 106.41015625 110.259765625 103.290039062 107.139648438 c 2 - 91.98046875 95.830078125 l 2 - 88.8603515625 92.7099609375 88.8603515625 87.6396484375 91.98046875 84.51953125 c 2 - 108.950195312 67.5498046875 l 1 - 91.98046875 50.580078125 l 2 - 88.8603515625 47.4599609375 88.8603515625 42.3896484375 91.98046875 39.26953125 c 2 - 103.290039062 27.9599609375 l 2 - 106.41015625 24.83984375 111.48046875 24.83984375 114.599609375 27.9599609375 c 2 - 131.5703125 44.9296875 l 1 - 148.540039062 27.9599609375 l 2 - 151.66015625 24.83984375 156.73046875 24.83984375 159.849609375 27.9599609375 c 2 - 171.16015625 39.26953125 l 2 - 174.280273438 42.3896484375 174.280273438 47.4599609375 171.16015625 50.580078125 c 2 - 154.190429688 67.5498046875 l 1 - 188.129882812 101.490234375 l 1 - 233.379882812 56.23046875 l 1 - 205.08984375 27.9404296875 l 2 - 201.969726562 24.8203125 201.969726562 19.75 205.08984375 16.6298828125 c 2 - 216.400390625 5.3203125 l 2 - 219.51953125 2.2001953125 224.58984375 2.2001953125 227.709960938 5.3203125 c 2 - 256 33.6103515625 l 1 - 284.309570312 5.33984375 l 2 - 287.4296875 2.2197265625 292.5 2.2197265625 295.620117188 5.33984375 c 2 - 306.9296875 16.650390625 l 2 - 310.049804688 19.76953125 310.049804688 24.83984375 306.9296875 27.9599609375 c 2 - 278.639648438 56.25 l 1 - 323.900390625 101.509765625 l 1 - 357.83984375 67.5703125 l 1 - 340.870117188 50.599609375 l 2 - 337.75 47.48046875 337.75 42.41015625 340.870117188 39.2900390625 c 2 - 352.1796875 27.98046875 l 2 - 355.299804688 24.8603515625 360.370117188 24.8603515625 363.490234375 27.98046875 c 2 - 380.459960938 44.9501953125 l 1 - 397.4296875 27.98046875 l 2 - 400.549804688 24.8603515625 405.620117188 24.8603515625 408.740234375 27.98046875 c 2 - 420.049804688 39.2900390625 l 2 - 423.169921875 42.41015625 423.169921875 47.48046875 420.049804688 50.599609375 c 2 - 403.080078125 67.5703125 l 1 - 420.049804688 84.5400390625 l 2 - 423.169921875 87.66015625 423.169921875 92.73046875 420.049804688 95.849609375 c 2 - 408.740234375 107.16015625 l 2 - 405.620117188 110.280273438 400.549804688 110.280273438 397.4296875 107.16015625 c 2 - 380.459960938 90.1904296875 l 1 - 346.51953125 124.129882812 l 1 - 391.76953125 169.379882812 l 1 - 420.059570312 141.08984375 l 2 - 423.1796875 137.969726562 428.25 137.969726562 431.370117188 141.08984375 c 2 - 442.6796875 152.400390625 l 2 -278.629882812 192 m 1 - 323.889648438 237.259765625 l 1 - 369.139648438 192 l 1 - 323.889648438 146.75 l 1 - 278.629882812 192 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" s t r o o p w a f e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S t r o o p w a f e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S T R O O P W A F E L -EndChar - -StartChar: toolbox -Encoding: 62802 62802 695 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -502.629882812 233.370117188 m 2 - 508.629882812 227.370117188 512 219.23046875 512 210.75 c 2 - 512 128 l 1 - 384 128 l 1 - 384 144 l 2 - 384 152.83984375 376.83984375 160 368 160 c 2 - 336 160 l 2 - 327.16015625 160 320 152.83984375 320 144 c 2 - 320 128 l 1 - 192 128 l 1 - 192 144 l 2 - 192 152.83984375 184.83984375 160 176 160 c 2 - 144 160 l 2 - 135.16015625 160 128 152.83984375 128 144 c 2 - 128 128 l 1 - 0 128 l 1 - 0 210.740234375 l 2 - 0 219.23046875 3.3701171875 227.370117188 9.3701171875 233.370117188 c 2 - 54.6201171875 278.629882812 l 2 - 60.6298828125 284.629882812 68.759765625 288 77.25 288 c 2 - 128 288 l 1 - 128 368 l 2 - 128 394.509765625 149.490234375 416 176 416 c 2 - 336 416 l 2 - 362.509765625 416 384 394.509765625 384 368 c 2 - 384 287.990234375 l 1 - 434.75 287.990234375 l 2 - 443.240234375 287.990234375 451.379882812 284.620117188 457.379882812 278.620117188 c 2 - 502.629882812 233.370117188 l 2 -320 288 m 1 - 320 352 l 1 - 192 352 l 1 - 192 288 l 1 - 320 288 l 1 -384 80 m 2 - 384 96 l 1 - 512 96 l 1 - 512 0 l 2 - 512 -17.669921875 497.669921875 -32 480 -32 c 2 - 32 -32 l 2 - 14.330078125 -32 0 -17.669921875 0 0 c 2 - 0 96 l 1 - 128 96 l 1 - 128 80 l 2 - 128 71.16015625 135.16015625 64 144 64 c 2 - 176 64 l 2 - 184.83984375 64 192 71.16015625 192 80 c 2 - 192 96 l 1 - 320 96 l 1 - 320 80 l 2 - 320 71.16015625 327.16015625 64 336 64 c 2 - 368 64 l 2 - 376.83984375 64 384 71.16015625 384 80 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" t o o l b o x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" T o o l b o x -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" T O O L B O X -EndChar - -StartChar: tshirt -Encoding: 62803 62803 696 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -631.200195312 351.5 m 2 - 639.099609375 347.599609375 642.299804688 337.900390625 638.299804688 330 c 2 - 581 215.599609375 l 2 - 577 207.599609375 567.400390625 204.400390625 559.5 208.400390625 c 2 - 502.900390625 236.099609375 l 2 - 492.299804688 241.299804688 479.900390625 233.5 479.900390625 221.700195312 c 2 - 479.900390625 -32 l 2 - 479.900390625 -49.7001953125 465.599609375 -64 447.900390625 -64 c 2 - 191.900390625 -64 l 2 - 174.200195312 -64 159.900390625 -49.7001953125 159.900390625 -32 c 2 - 159.900390625 221.599609375 l 2 - 159.900390625 233.5 147.5 241.200195312 136.900390625 236 c 2 - 80.2998046875 208.299804688 l 2 - 72.400390625 204.400390625 62.7998046875 207.599609375 58.7998046875 215.5 c 2 - 1.599609375 330 l 2 - -2.2998046875 337.900390625 0.900390625 347.5 8.7998046875 351.5 c 2 - 203.5 448 l 1 - 223.599609375 420.200195312 268.099609375 400.799804688 320 400.799804688 c 0 - 371.900390625 400.799804688 416.400390625 420.200195312 436.5 448 c 1 - 631.200195312 351.5 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" t s h i r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" T s h i r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" T S H I R T -EndChar - -StartChar: walking -Encoding: 62804 62804 697 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -208 352 m 0 - 181.5 352 160 373.5 160 400 c 0 - 160 426.5 181.5 448 208 448 c 0 - 234.5 448 256 426.5 256 400 c 0 - 256 373.5 234.5 352 208 352 c 0 -302.5 202.900390625 m 2 - 318.200195312 195 324.5 175.599609375 316.799804688 159.900390625 c 0 - 308.900390625 144.099609375 289.900390625 137.700195312 274.299804688 145.599609375 c 2 - 251 157.400390625 l 2 - 236 165 224.599609375 178.299804688 219.299804688 194.400390625 c 2 - 213.799804688 210.900390625 l 1 - 196.599609375 142.200195312 l 1 - 242.099609375 92.5 l 2 - 249.299804688 84.7001953125 254.400390625 75.099609375 257 64.7998046875 c 2 - 279.200195312 -24.2001953125 l 2 - 283.5 -41.2998046875 273 -58.7001953125 255.900390625 -63 c 0 - 238.799804688 -67.2998046875 221.400390625 -56.7998046875 217.099609375 -39.7001953125 c 2 - 198.799804688 33.599609375 l 2 - 196.200195312 43.900390625 191.099609375 53.400390625 183.900390625 61.2998046875 c 2 - 124 126.700195312 l 2 - 109.5 142.599609375 103.900390625 164.700195312 109.099609375 185.5 c 2 - 124.299804688 246.200195312 l 1 - 97.5 235.400390625 l 2 - 90.2998046875 232.5 84.5 227 81 220 c 2 - 74.2998046875 206.400390625 l 2 - 66.400390625 190.599609375 47.400390625 184.200195312 31.7998046875 192.099609375 c 0 - 16.099609375 200 9.7998046875 219.200195312 17.599609375 235 c 2 - 24.2998046875 248.599609375 l 2 - 34.7001953125 269.599609375 52.400390625 286.099609375 74 294.799804688 c 0 - 111.400390625 309.900390625 131.299804688 320.099609375 167.299804688 320 c 0 - 213.799804688 319.900390625 254.799804688 288.700195312 269.5 244.099609375 c 2 - 279.200195312 214.700195312 l 1 - 302.5 202.900390625 l 2 -73.599609375 62.2001953125 m 2 - 94.2998046875 113.700195312 l 1 - 103 101.799804688 86.400390625 120.299804688 141.700195312 60 c 1 - 128.200195312 26.2001953125 l 2 - 124.900390625 18.099609375 120.099609375 10.7998046875 114 4.7001953125 c 2 - 54.599609375 -54.7001953125 l 2 - 42.099609375 -67.2001953125 21.900390625 -67.2001953125 9.400390625 -54.7001953125 c 0 - -3.099609375 -42.2001953125 -3.099609375 -21.900390625 9.400390625 -9.400390625 c 2 - 59.400390625 40.7001953125 l 2 - 65.599609375 46.7998046875 70.400390625 54.099609375 73.599609375 62.2001953125 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" w a l k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" W a l k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" W A L K I N G -EndChar - -StartChar: wallet -Encoding: 62805 62805 698 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -461.200195312 320 m 2 - 489.219726562 320 512 298.469726562 512 272 c 2 - 512 16 l 2 - 512 -10.4697265625 489.219726562 -32 461.200195312 -32 c 2 - 64 -32 l 2 - 28.650390625 -32 0 -3.349609375 0 32 c 2 - 0 352 l 2 - 0 387.349609375 28.650390625 416 64 416 c 2 - 432 416 l 2 - 458.509765625 416 480 394.509765625 480 368 c 0 - 480 359.16015625 472.83984375 352 464 352 c 2 - 80 352 l 2 - 71.16015625 352 64 344.83984375 64 336 c 0 - 64 327.16015625 71.16015625 320 80 320 c 2 - 461.200195312 320 l 2 -416 112 m 0 - 433.669921875 112 448 126.330078125 448 144 c 0 - 448 161.669921875 433.669921875 176 416 176 c 0 - 398.330078125 176 384 161.669921875 384 144 c 0 - 384 126.330078125 398.330078125 112 416 112 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" w a l l e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" W a l l e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" W A L L E T -EndChar - -StartChar: angry -Encoding: 62806 62806 699 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -136 208 m 0 - 136 190.299804688 150.400390625 176 168.099609375 176 c 0 - 185.799804688 176 200.099609375 190.299804688 200.099609375 208 c 0 - 200.099609375 210.900390625 199.099609375 213.5 198.400390625 216.200195312 c 1 - 199 216.200195312 199.599609375 216 200.099609375 216 c 0 - 207 216 213.299804688 220.5 215.400390625 227.400390625 c 0 - 218 235.799804688 213.200195312 244.799804688 204.700195312 247.299804688 c 2 - 124.700195312 271.299804688 l 2 - 116.200195312 273.799804688 107.299804688 269.099609375 104.799804688 260.599609375 c 0 - 102.200195312 252.200195312 107 243.200195312 115.5 240.700195312 c 2 - 146.5 231.400390625 l 1 - 140.099609375 225.5 136 217.299804688 136 208 c 0 -304 53.7998046875 m 0 - 317.400390625 37.7001953125 342.299804688 57.7998046875 328.5 74.2998046875 c 0 - 308.5 98.2998046875 279.099609375 112.099609375 247.900390625 112.099609375 c 0 - 216.700195312 112.099609375 187.299804688 98.2998046875 167.299804688 74.2998046875 c 0 - 153.700195312 58 178.400390625 37.5 191.900390625 53.7998046875 c 0 - 219.799804688 87.2001953125 276.200195312 87.2001953125 304 53.7998046875 c 0 -380.599609375 240.700195312 m 2 - 389.099609375 243.200195312 393.900390625 252.099609375 391.400390625 260.599609375 c 0 - 388.900390625 269 379.900390625 273.799804688 371.5 271.299804688 c 2 - 291.5 247.299804688 l 2 - 283.099609375 244.799804688 278.299804688 235.900390625 280.799804688 227.400390625 c 0 - 282.900390625 220.5 289.200195312 216 296.099609375 216 c 0 - 296.700195312 216 297.200195312 216.099609375 297.799804688 216.200195312 c 1 - 297 213.599609375 296.099609375 210.900390625 296.099609375 208 c 0 - 296.099609375 190.299804688 310.400390625 176 328.099609375 176 c 0 - 345.799804688 176 360.099609375 190.299804688 360.099609375 208 c 0 - 360.099609375 217.299804688 355.900390625 225.599609375 349.599609375 231.400390625 c 1 - 380.599609375 240.700195312 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" a n g r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" A N G R Y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" A n g r y -EndChar - -StartChar: archway -Encoding: 62807 62807 700 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -560 0 m 2 - 568.83984375 0 576 -7.16015625 576 -16 c 2 - 576 -48 l 2 - 576 -56.83984375 568.83984375 -64 560 -64 c 2 - 400.01953125 -64 l 2 - 391.1796875 -64 384.01953125 -56.83984375 384.01953125 -48 c 2 - 384.01953125 -32 l 1 - 384 128 l 2 - 384 181.01953125 341.01953125 224 288 224 c 0 - 234.98046875 224 192 181.01953125 192 128 c 2 - 192 -48 l 2 - 192 -56.83984375 184.83984375 -64 176 -64 c 2 - 16.01953125 -64 l 2 - 7.1796875 -64 0.01953125 -56.83984375 0.01953125 -48 c 2 - 0.01953125 -16 l 2 - 0.01953125 -7.16015625 7.1796875 0 16.01953125 0 c 2 - 32 0 l 1 - 32 352 l 1 - 544 352 l 1 - 544 0 l 1 - 560 0 l 2 -560 448 m 2 - 568.83984375 448 576 440.83984375 576 432 c 2 - 576 400 l 2 - 576 391.16015625 568.83984375 384 560 384 c 2 - 16 384 l 2 - 7.16015625 384 0 391.16015625 0 400 c 2 - 0 432 l 2 - 0 440.83984375 7.16015625 448 16 448 c 2 - 560 448 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" a r c h w a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" A r c h w a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" A R C H W A Y -EndChar - -StartChar: atlas -Encoding: 62808 62808 701 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -318.379882812 240 m 1 - 313.099609375 208.780273438 292.790039062 182.830078125 265.080078125 169.58984375 c 1 - 272.75 188.650390625 277.799804688 212.969726562 279.290039062 240 c 1 - 318.379882812 240 l 1 -318.379882812 272 m 1 - 279.290039062 272 l 1 - 277.799804688 299.030273438 272.759765625 323.349609375 265.080078125 342.41015625 c 1 - 292.790039062 329.169921875 313.08984375 303.219726562 318.379882812 272 c 1 -224 350.690429688 m 1 - 231.690429688 343.240234375 244.76953125 316.259765625 247.440429688 272 c 1 - 200.5703125 272 l 1 - 203.23046875 316.26953125 216.309570312 343.240234375 224 350.690429688 c 1 -182.919921875 342.41015625 m 1 - 175.240234375 323.349609375 170.200195312 299.030273438 168.709960938 272 c 1 - 129.620117188 272 l 1 - 134.900390625 303.219726562 155.209960938 329.169921875 182.919921875 342.41015625 c 1 -182.919921875 169.58984375 m 1 - 155.209960938 182.830078125 134.900390625 208.780273438 129.620117188 240 c 1 - 168.709960938 240 l 1 - 170.200195312 212.969726562 175.240234375 188.650390625 182.919921875 169.58984375 c 1 -247.4296875 240 m 1 - 244.76953125 195.740234375 231.690429688 168.759765625 223.990234375 161.309570312 c 1 - 216.299804688 168.759765625 203.219726562 195.740234375 200.559570312 240 c 1 - 247.4296875 240 l 1 -448 89.599609375 m 2 - 448 80 444.799804688 73.599609375 438.400390625 70.400390625 c 1 - 435.200195312 57.599609375 435.200195312 12.7998046875 438.400390625 -3.2001953125 c 1 - 444.799804688 -9.599609375 448 -16 448 -22.400390625 c 2 - 448 -38.400390625 l 2 - 448 -54.400390625 435.200195312 -64 422.400390625 -64 c 2 - 96 -64 l 2 - 41.599609375 -64 0 -22.400390625 0 32 c 2 - 0 352 l 2 - 0 406.400390625 41.599609375 448 96 448 c 2 - 422.400390625 448 l 2 - 438.400390625 448 448 438.400390625 448 422.400390625 c 2 - 448 89.599609375 l 2 -224 384 m 0 - 153.309570312 384 96 326.690429688 96 256 c 0 - 96 185.309570312 153.309570312 128 224 128 c 0 - 294.690429688 128 352 185.309570312 352 256 c 0 - 352 326.690429688 294.690429688 384 224 384 c 0 -384 0 m 1 - 384 64 l 1 - 96 64 l 2 - 80 64 64 51.2001953125 64 32 c 0 - 64 12.7998046875 76.7998046875 0 96 0 c 2 - 384 0 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" a t l a s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" A T L A S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" A t l a s -EndChar - -StartChar: award -Encoding: 62809 62809 702 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -97.1201171875 85.3701171875 m 0 - 110.91015625 71.58984375 129.23046875 64 148.73046875 64 c 0 - 161.169921875 64 173.200195312 67.5400390625 184.040039062 73.580078125 c 1 - 131.990234375 -54.0400390625 l 2 - 127.599609375 -64.8095703125 113.559570312 -67.4404296875 105.559570312 -59 c 2 - 69.3203125 -20.7197265625 l 1 - 16.6298828125 -22.73046875 l 2 - 5.009765625 -23.169921875 -3.1904296875 -11.4697265625 1.2001953125 -0.7001953125 c 2 - 46.5703125 110.540039062 l 1 - 54.1298828125 104.669921875 62.490234375 99.76953125 72 97.2197265625 c 0 - 92.9599609375 91.6103515625 88.4296875 94.0595703125 97.1201171875 85.3701171875 c 0 -382.799804688 -0.7001953125 m 2 - 387.190429688 -11.4599609375 378.990234375 -23.169921875 367.370117188 -22.73046875 c 2 - 314.6796875 -20.7197265625 l 1 - 278.4296875 -59 l 2 - 270.440429688 -67.4404296875 256.389648438 -64.8095703125 252 -54.0400390625 c 2 - 199.950195312 73.580078125 l 1 - 210.790039062 67.5498046875 222.8203125 64 235.259765625 64 c 0 - 254.759765625 64 273.08984375 71.58984375 286.879882812 85.3701171875 c 0 - 295.549804688 94.0400390625 290.9296875 91.580078125 312 97.2197265625 c 0 - 321.509765625 99.76953125 329.870117188 104.66015625 337.4296875 110.540039062 c 1 - 382.799804688 -0.7001953125 l 2 -263 108 m 0 - 249.76953125 94.5302734375 229.16015625 92.1201171875 213.26953125 102.1796875 c 0 - 207.896484375 105.591796875 198.370117188 108.360351562 192.004882812 108.360351562 c 0 - 185.640625 108.360351562 176.11328125 105.591796875 170.740234375 102.1796875 c 0 - 154.83984375 92.1201171875 134.23046875 94.5302734375 121 108 c 0 - 106.26953125 123 104.599609375 122.040039062 82.2197265625 128.139648438 c 0 - 68.330078125 131.9296875 57.4697265625 142.98046875 53.75 157.120117188 c 0 - 46.26953125 185.51953125 48.2099609375 182.08984375 27.7998046875 202.870117188 c 0 - 17.6298828125 213.23046875 13.66015625 228.3203125 17.3798828125 242.459960938 c 0 - 24.8603515625 270.879882812 24.849609375 266.919921875 17.3798828125 295.280273438 c 0 - 13.650390625 309.419921875 17.6298828125 324.509765625 27.7998046875 334.860351562 c 0 - 48.2099609375 355.639648438 46.2802734375 352.219726562 53.75 380.610351562 c 0 - 57.4697265625 394.75 68.330078125 405.799804688 82.2197265625 409.58984375 c 0 - 110.110351562 417.200195312 106.75 415.219726562 127.16015625 436 c 0 - 137.330078125 446.360351562 152.16015625 450.400390625 166.049804688 446.610351562 c 0 - 193.969726562 439 190.080078125 439.009765625 217.950195312 446.610351562 c 0 - 231.83984375 450.400390625 246.669921875 446.349609375 256.83984375 436 c 0 - 277.26953125 415.209960938 273.91015625 417.200195312 301.790039062 409.58984375 c 0 - 315.6796875 405.799804688 326.540039062 394.75 330.259765625 380.610351562 c 0 - 337.740234375 352.219726562 335.799804688 355.639648438 356.209960938 334.860351562 c 0 - 366.379882812 324.509765625 370.349609375 309.419921875 366.629882812 295.280273438 c 0 - 359.150390625 266.870117188 359.16015625 270.830078125 366.629882812 242.450195312 c 0 - 370.349609375 228.309570312 366.379882812 213.219726562 356.209960938 202.870117188 c 0 - 335.799804688 182.08984375 337.740234375 185.51953125 330.259765625 157.120117188 c 0 - 326.540039062 142.98046875 315.6796875 131.9296875 301.790039062 128.139648438 c 0 - 280.030273438 122.209960938 278.280273438 123.549804688 263 108 c 0 -97.66015625 272.040039062 m 0 - 97.66015625 219.009765625 139.900390625 176.01953125 192 176.01953125 c 0 - 244.099609375 176.01953125 286.33984375 219.009765625 286.33984375 272.040039062 c 0 - 286.33984375 325.0703125 244.099609375 368.059570312 192 368.059570312 c 0 - 139.900390625 368.059570312 97.66015625 325.0703125 97.66015625 272.040039062 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" a w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" A w a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" A W A R D -EndChar - -StartChar: backspace -Encoding: 62810 62810 703 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -576 384 m 2 - 611.349609375 384 640 355.349609375 640 320 c 2 - 640 64 l 2 - 640 28.650390625 611.349609375 0 576 0 c 2 - 205.25 0 l 2 - 188.280273438 0 172 6.75 160 18.75 c 2 - 9.3701171875 169.379882812 l 2 - -3.1298828125 181.870117188 -3.1298828125 202.129882812 9.3701171875 214.629882812 c 2 - 160 365.25 l 2 - 170.34375 375.599609375 190.614257812 384 205.247070312 384 c 2 - 205.259765625 384 l 1 - 576 384 l 2 -491.309570312 129.940429688 m 2 - 429.25 192 l 1 - 491.309570312 254.059570312 l 2 - 497.559570312 260.309570312 497.559570312 270.440429688 491.309570312 276.690429688 c 2 - 468.690429688 299.309570312 l 2 - 462.440429688 305.559570312 452.309570312 305.559570312 446.059570312 299.309570312 c 2 - 384 237.25 l 1 - 321.940429688 299.309570312 l 2 - 315.690429688 305.559570312 305.559570312 305.559570312 299.309570312 299.309570312 c 2 - 276.690429688 276.690429688 l 2 - 270.440429688 270.440429688 270.440429688 260.309570312 276.690429688 254.059570312 c 2 - 338.75 192 l 1 - 276.690429688 129.940429688 l 2 - 270.440429688 123.690429688 270.440429688 113.559570312 276.690429688 107.309570312 c 2 - 299.309570312 84.6904296875 l 2 - 305.559570312 78.4404296875 315.690429688 78.4404296875 321.940429688 84.6904296875 c 2 - 384 146.75 l 1 - 446.059570312 84.6904296875 l 2 - 452.309570312 78.4404296875 462.440429688 78.4404296875 468.690429688 84.6904296875 c 2 - 491.309570312 107.309570312 l 2 - 497.559570312 113.559570312 497.559570312 123.690429688 491.309570312 129.940429688 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" b a c k s p a c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" B A C K S P A C E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" B a c k s p a c e -EndChar - -StartChar: bezier-curve -Encoding: 62811 62811 704 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -368 416 m 2 - 385.669921875 416 400 401.669921875 400 384 c 2 - 400 288 l 2 - 400 270.330078125 385.669921875 256 368 256 c 2 - 272 256 l 2 - 254.330078125 256 240 270.330078125 240 288 c 2 - 240 384 l 2 - 240 401.669921875 254.330078125 416 272 416 c 2 - 368 416 l 2 -208 360 m 1 - 208 288 l 2 - 208 278.549804688 210.1796875 269.639648438 213.879882812 261.559570312 c 1 - 179.610351562 237.209960938 154.139648438 201.610351562 142.83984375 160 c 1 - 93.4404296875 160 l 1 - 107.120117188 224.6796875 147.610351562 279.48046875 202.98046875 312 c 1 - 123.25 312 l 1 - 113.75 288.559570312 90.83984375 272 64 272 c 0 - 28.66015625 272 0 300.650390625 0 336 c 0 - 0 371.349609375 28.66015625 400 64 400 c 0 - 90.83984375 400 113.75 383.440429688 123.25 360 c 1 - 208 360 l 1 -160 128 m 2 - 177.669921875 128 192 113.669921875 192 96 c 2 - 192 0 l 2 - 192 -17.669921875 177.669921875 -32 160 -32 c 2 - 64 -32 l 2 - 46.330078125 -32 32 -17.669921875 32 0 c 2 - 32 96 l 2 - 32 113.669921875 46.330078125 128 64 128 c 2 - 160 128 l 2 -576 400 m 0 - 611.33984375 400 640 371.349609375 640 336 c 0 - 640 300.650390625 611.33984375 272 576 272 c 0 - 549.16015625 272 526.25 288.559570312 516.75 312 c 1 - 437.01953125 312 l 1 - 492.389648438 279.48046875 532.879882812 224.6796875 546.559570312 160 c 1 - 497.16015625 160 l 1 - 485.860351562 201.610351562 460.389648438 237.209960938 426.120117188 261.559570312 c 1 - 429.809570312 269.639648438 432 278.549804688 432 288 c 2 - 432 360 l 1 - 516.75 360 l 1 - 526.25 383.440429688 549.16015625 400 576 400 c 0 -576 128 m 2 - 593.669921875 128 608 113.669921875 608 96 c 2 - 608 0 l 2 - 608 -17.669921875 593.669921875 -32 576 -32 c 2 - 480 -32 l 2 - 462.330078125 -32 448 -17.669921875 448 0 c 2 - 448 96 l 2 - 448 113.669921875 462.330078125 128 480 128 c 2 - 576 128 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" b e z i e r hyphen c u r v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" B e z i e r hyphen C u r v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" B e z i e r hyphen c u r v e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" B E Z I E R hyphen C U R V E -EndChar - -StartChar: bong -Encoding: 62812 62812 705 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -302.5 -64 m 2 - 81.5 -64 l 2 - 58.330078125 -64 37.080078125 -51.419921875 25.5 -31.33984375 c 0 - 9.3095703125 -3.26953125 0 29.25 0 64 c 0 - 0 135.030273438 38.669921875 196.900390625 96 230.110351562 c 1 - 96 384.040039062 l 1 - 80.0302734375 384.01953125 l 2 - 71.1796875 384.009765625 64 391.1796875 64.009765625 400.030273438 c 2 - 64.0498046875 431.759765625 l 2 - 64.0595703125 440.580078125 71.2099609375 447.73046875 80.0302734375 447.740234375 c 2 - 303.969726562 448 l 2 - 312.8203125 448.009765625 320 440.830078125 319.990234375 431.98046875 c 2 - 319.950195312 400.259765625 l 2 - 319.940429688 391.440429688 312.790039062 384.290039062 303.969726562 384.280273438 c 2 - 288 384.259765625 l 1 - 288 230.099609375 l 1 - 302.120117188 221.919921875 315.08984375 211.959960938 326.650390625 200.58984375 c 1 - 366.059570312 240 l 1 - 356.6796875 249.379882812 l 2 - 350.4296875 255.629882812 350.4296875 265.759765625 356.6796875 272.009765625 c 2 - 367.990234375 283.3203125 l 2 - 374.240234375 289.5703125 384.370117188 289.5703125 390.620117188 283.3203125 c 2 - 443.309570312 230.629882812 l 2 - 449.559570312 224.379882812 449.559570312 214.25 443.309570312 208 c 2 - 432.009765625 196.6796875 l 2 - 425.759765625 190.4296875 415.629882812 190.4296875 409.379882812 196.6796875 c 2 - 400 206.059570312 l 1 - 356.559570312 162.620117188 l 1 - 373.919921875 133.809570312 384 100.120117188 384 64 c 0 - 384 29.25 374.690429688 -3.259765625 358.5 -31.33984375 c 0 - 346.9296875 -51.419921875 325.6796875 -64 302.5 -64 c 2 -120.059570312 188.5703125 m 2 - 95.25 174.200195312 75.9501953125 152.83984375 63.5 128 c 1 - 320.5 128 l 1 - 308.059570312 152.83984375 288.75 174.200195312 263.940429688 188.5703125 c 2 - 240 202.440429688 l 1 - 240 384.200195312 l 1 - 144 384.08984375 l 1 - 144 202.440429688 l 1 - 120.059570312 188.5703125 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" b o n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B o n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B O N G -EndChar - -StartChar: brush -Encoding: 62813 62813 706 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -352 448 m 2 - 369.669921875 448 384 433.669921875 384 416 c 2 - 384 192 l 1 - 0 192 l 1 - 0 416 l 2 - 0 433.669921875 14.330078125 448 32 448 c 2 - 352 448 l 2 -0 128 m 2 - 0 160 l 1 - 384 160 l 1 - 384 128 l 2 - 384 92.650390625 355.33984375 64 320 64 c 2 - 256 64 l 1 - 256 0 l 2 - 256 -35.349609375 227.33984375 -64 192 -64 c 0 - 156.66015625 -64 128 -35.349609375 128 0 c 2 - 128 64 l 1 - 64 64 l 2 - 28.66015625 64 0 92.650390625 0 128 c 2 -192 24 m 0 - 178.75 24 168 13.259765625 168 0 c 0 - 168 -13.25 178.75 -24 192 -24 c 0 - 205.25 -24 216 -13.25 216 0 c 0 - 216 13.259765625 205.25 24 192 24 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" b r u s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" B r u s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" B R U S H -EndChar - -StartChar: bus-alt -Encoding: 62814 62814 707 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -488 320 m 2 - 501.25 320 512 309.259765625 512 296 c 2 - 512 216 l 2 - 512 202.75 501.25 192 488 192 c 2 - 480 192 l 1 - 480 25.599609375 l 2 - 480 12.7998046875 470.400390625 0 454.400390625 0 c 2 - 448 0 l 1 - 448 -32 l 2 - 448 -49.669921875 433.669921875 -64 416 -64 c 2 - 384 -64 l 2 - 366.330078125 -64 352 -49.669921875 352 -32 c 2 - 352 0 l 1 - 160 0 l 1 - 160 -32 l 2 - 160 -49.669921875 145.669921875 -64 128 -64 c 2 - 96 -64 l 2 - 78.330078125 -64 64 -49.669921875 64 -32 c 2 - 64 0 l 1 - 46.330078125 0 32 14.330078125 32 32 c 2 - 32 192 l 1 - 24 192 l 2 - 10.75 192 0 202.75 0 216 c 2 - 0 296 l 2 - 0 309.259765625 10.75 320 24 320 c 2 - 32 320 l 1 - 32 368 l 2 - 32 412.799804688 131.200195312 448 256 448 c 0 - 380.799804688 448 480 412.799804688 480 368 c 2 - 480 320 l 1 - 488 320 l 2 -160 376 m 2 - 160 360 l 2 - 160 355.580078125 163.580078125 352 168 352 c 2 - 344 352 l 2 - 348.419921875 352 352 355.580078125 352 360 c 2 - 352 376 l 2 - 352 380.419921875 348.419921875 384 344 384 c 2 - 168 384 l 2 - 163.580078125 384 160 380.419921875 160 376 c 2 -112 48 m 0 - 129.669921875 48 144 62.330078125 144 80 c 0 - 144 97.669921875 129.669921875 112 112 112 c 0 - 94.330078125 112 80 97.669921875 80 80 c 0 - 80 62.330078125 94.330078125 48 112 48 c 0 -240 160 m 1 - 240 320 l 1 - 128 320 l 2 - 110.330078125 320 96 305.669921875 96 288 c 2 - 96 192 l 2 - 96 174.330078125 110.330078125 160 128 160 c 2 - 240 160 l 1 -272 160 m 1 - 384 160 l 2 - 401.669921875 160 416 174.330078125 416 192 c 2 - 416 288 l 2 - 416 305.669921875 401.669921875 320 384 320 c 2 - 272 320 l 1 - 272 160 l 1 -400 48 m 0 - 417.669921875 48 432 62.330078125 432 80 c 0 - 432 97.669921875 417.669921875 112 400 112 c 0 - 382.330078125 112 368 97.669921875 368 80 c 0 - 368 62.330078125 382.330078125 48 400 48 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" b u s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" B u s hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" B u s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" B U S hyphen A L T -EndChar - -StartChar: cannabis -Encoding: 62815 62815 708 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -503.469726562 87.75 m 0 - 508.709960938 84.990234375 511.990234375 79.5400390625 512 73.599609375 c 0 - 512.009765625 67.669921875 508.73046875 62.23046875 503.490234375 59.4501953125 c 0 - 501.040039062 58.16015625 442.719726562 27.73046875 370 27.73046875 c 0 - 363.870117188 27.73046875 358.040039062 27.830078125 352.5 28.0400390625 c 1 - 363.860351562 5.8095703125 369.01953125 -10.26953125 369.309570312 -11.1796875 c 0 - 371.110351562 -16.8603515625 369.599609375 -23.0703125 365.400390625 -27.2900390625 c 0 - 362.80859375 -29.890625 357.724609375 -32.0009765625 354.053710938 -32.0009765625 c 0 - 352.7109375 -32.0009765625 350.58203125 -31.6787109375 349.299804688 -31.2802734375 c 0 - 347.469726562 -30.7001953125 311.580078125 -19.2900390625 272 8.009765625 c 1 - 272 -56 l 2 - 272 -60.419921875 268.419921875 -64 264 -64 c 2 - 248 -64 l 2 - 243.580078125 -64 240 -60.419921875 240 -56 c 2 - 240 8.01953125 l 1 - 200.419921875 -19.2802734375 164.530273438 -30.7001953125 162.700195312 -31.26953125 c 0 - 161.41796875 -31.66796875 159.2890625 -31.9912109375 157.946289062 -31.9912109375 c 0 - 154.275390625 -31.9912109375 149.19140625 -29.880859375 146.599609375 -27.2802734375 c 0 - 142.400390625 -23.0595703125 140.889648438 -16.849609375 142.690429688 -11.169921875 c 0 - 142.98046875 -10.259765625 148.129882812 5.8203125 159.5 28.0498046875 c 1 - 153.959960938 27.83984375 148.139648438 27.740234375 142 27.740234375 c 0 - 69.26953125 27.740234375 10.9599609375 58.169921875 8.509765625 59.4599609375 c 0 - 3.8134765625 61.94921875 0.0009765625 68.2841796875 0.0009765625 73.599609375 c 0 - 0.0009765625 78.923828125 3.822265625 85.263671875 8.5302734375 87.75 c 0 - 10.099609375 88.5703125 40.919921875 104.639648438 85.3095703125 113.559570312 c 1 - 21.0595703125 188.6796875 1.259765625 275.23046875 0.3798828125 279.200195312 c 0 - 0.1689453125 280.147460938 -0.0029296875 281.705078125 -0.0029296875 282.67578125 c 0 - -0.0029296875 286.326171875 2.0908203125 291.38671875 4.669921875 293.969726562 c 0 - 7.7001953125 297.009765625 11.7900390625 298.669921875 15.990234375 298.669921875 c 0 - 17.1396484375 298.669921875 18.2900390625 298.540039062 19.4296875 298.290039062 c 0 - 23.3203125 297.4296875 105.98046875 278.690429688 180.009765625 218.530273438 c 1 - 180.009765625 219.990234375 180 221.459960938 180 222.9296875 c 0 - 180 341.719726562 239.98046875 436.650390625 242.530273438 440.629882812 c 0 - 245.469726562 445.219726562 250.549804688 448 256 448 c 2 - 256.001953125 448 l 2 - 260.830078125 448 266.859375 444.698242188 269.459960938 440.629882812 c 0 - 272.009765625 436.650390625 331.990234375 341.719726562 331.990234375 222.9296875 c 0 - 331.990234375 221.459960938 331.990234375 219.990234375 331.98046875 218.530273438 c 1 - 406.01953125 278.700195312 488.6796875 297.440429688 492.559570312 298.290039062 c 0 - 493.709960938 298.549804688 494.860351562 298.669921875 496 298.669921875 c 0 - 500.200195312 298.669921875 504.290039062 297.009765625 507.3203125 293.969726562 c 0 - 511.1796875 290.099609375 512.799804688 284.530273438 511.620117188 279.200195312 c 0 - 510.740234375 275.23046875 490.940429688 188.6796875 426.690429688 113.559570312 c 1 - 471.080078125 104.639648438 501.91015625 88.5703125 503.469726562 87.75 c 0 -EndSplineSet -Validated: 524329 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" c a n n a b i s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" C a n n a b i s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" C A N N A B I S -EndChar - -StartChar: check-double -Encoding: 62816 62816 709 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -505 273.200195312 m 2 - 514.299804688 263.900390625 514.299804688 248.700195312 504.900390625 239.200195312 c 2 - 208.900390625 -57 l 2 - 199.599609375 -66.400390625 184.400390625 -66.400390625 175 -57 c 2 - 7 111.099609375 l 2 - -2.400390625 120.5 -2.400390625 135.700195312 7 145.099609375 c 2 - 46.7001953125 184.799804688 l 2 - 56 194.200195312 71.2001953125 194.200195312 80.599609375 184.799804688 c 2 - 192 73.2998046875 l 1 - 431.5 312.799804688 l 2 - 440.799804688 322.200195312 456 322.200195312 465.400390625 312.799804688 c 2 - 505 273.200195312 l 2 -180.700195312 167.200195312 m 2 - 68.7001953125 279.400390625 l 2 - 62.5 285.599609375 62.5 295.700195312 68.7001953125 302 c 2 - 114 347.299804688 l 2 - 120.200195312 353.599609375 130.400390625 353.599609375 136.599609375 347.299804688 c 2 - 192 291.799804688 l 1 - 343.5 443.299804688 l 2 - 349.700195312 449.599609375 359.900390625 449.599609375 366.099609375 443.299804688 c 2 - 411.299804688 398 l 2 - 417.5 391.799804688 417.5 381.700195312 411.299804688 375.400390625 c 2 - 203.299804688 167.200195312 l 2 - 197.099609375 160.900390625 186.900390625 160.900390625 180.700195312 167.200195312 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" c h e c k hyphen d o u b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C h e c k hyphen D o u b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C h e c k hyphen d o u b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" C H E C K hyphen D O U B L E -EndChar - -StartChar: cocktail -Encoding: 62817 62817 710 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -296 -16 m 2 - 318.08984375 -16 336 -33.91015625 336 -56 c 0 - 336 -60.419921875 332.419921875 -64 328 -64 c 2 - 88 -64 l 2 - 83.580078125 -64 80 -60.419921875 80 -56 c 0 - 80 -33.91015625 97.91015625 -16 120 -16 c 2 - 176 -16 l 1 - 176 109.219726562 l 1 - 7.259765625 277.950195312 l 2 - -8.259765625 293.469726562 2.73046875 320 24.6796875 320 c 2 - 391.3203125 320 l 2 - 413.26953125 320 424.259765625 293.469726562 408.740234375 277.950195312 c 2 - 240 109.219726562 l 1 - 240 -16 l 1 - 296 -16 l 2 -432 448 m 0 - 511.530273438 448 576 383.530273438 576 304 c 0 - 576 224.469726562 511.530273438 160 432 160 c 0 - 404.58984375 160 379.23046875 168.080078125 357.419921875 181.379882812 c 1 - 392.6796875 216.639648438 l 1 - 404.709960938 211.200195312 417.959960938 208 432 208 c 0 - 484.9296875 208 528 251.059570312 528 304 c 0 - 528 356.940429688 484.9296875 400 432 400 c 0 - 396.629882812 400 366.009765625 380.549804688 349.360351562 352 c 1 - 296.8203125 352 l 1 - 316.650390625 407.799804688 369.389648438 448 432 448 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" c o c k t a i l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" C o c k t a i l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" C O C K T A I L -EndChar - -StartChar: concierge-bell -Encoding: 62818 62818 711 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 317.459960938 m 1 - 396.509765625 301.889648438 480 208.8203125 480 96 c 1 - 32 96 l 1 - 32 208.8203125 115.490234375 301.889648438 224 317.459960938 c 1 - 224 336 l 1 - 208 336 l 2 - 199.16015625 336 192 343.16015625 192 352 c 2 - 192 368 l 2 - 192 376.83984375 199.16015625 384 208 384 c 2 - 304 384 l 2 - 312.83984375 384 320 376.83984375 320 368 c 2 - 320 352 l 2 - 320 343.16015625 312.83984375 336 304 336 c 2 - 288 336 l 1 - 288 317.459960938 l 1 -496 64 m 2 - 504.83984375 64 512 56.83984375 512 48 c 2 - 512 16 l 2 - 512 7.16015625 504.83984375 0 496 0 c 2 - 16 0 l 2 - 7.16015625 0 0 7.16015625 0 16 c 2 - 0 48 l 2 - 0 56.83984375 7.16015625 64 16 64 c 2 - 496 64 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" c o n c i e r g e hyphen b e l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" C o n c i e r g e hyphen B e l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" C o n c i e r g e hyphen b e l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" C O N C I E R G E hyphen B E L L -EndChar - -StartChar: cookie -Encoding: 62819 62819 712 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -510.370117188 193.209960938 m 2 - 514.75 165.549804688 510.259765625 137.209960938 497.549804688 112.25 c 2 - 462.450195312 43.3798828125 l 2 - 451.680664062 22.2470703125 425.791015625 -3.6474609375 404.66015625 -14.419921875 c 2 - 335.540039062 -49.6298828125 l 2 - 310.709960938 -62.26953125 282.530273438 -66.740234375 255.01953125 -62.3798828125 c 2 - 178.3203125 -50.240234375 l 2 - 154.930664062 -46.5322265625 122.356445312 -29.93359375 105.610351562 -13.1904296875 c 2 - 50.849609375 41.5595703125 l 2 - 34.0537109375 58.3623046875 17.4052734375 91.0439453125 13.6904296875 114.509765625 c 2 - 1.6103515625 190.780273438 l 2 - 0.708984375 196.46875 -0.0224609375 205.760742188 -0.0224609375 211.521484375 c 0 - -0.0224609375 229.09375 6.4521484375 256.0625 14.4296875 271.719726562 c 2 - 49.5302734375 340.599609375 l 2 - 60.296875 361.735351562 86.1865234375 387.629882812 107.3203125 398.400390625 c 2 - 176.440429688 433.610351562 l 2 - 201.26953125 446.259765625 229.450195312 450.73046875 256.959960938 446.370117188 c 2 - 333.66015625 434.219726562 l 2 - 361.190429688 429.870117188 386.639648438 416.889648438 406.370117188 397.169921875 c 2 - 461.129882812 342.419921875 l 2 - 477.926757812 325.6171875 494.57421875 292.935546875 498.290039062 269.469726562 c 2 - 510.370117188 193.209960938 l 2 -176 80 m 0 - 193.669921875 80 208 94.330078125 208 112 c 0 - 208 129.669921875 193.669921875 144 176 144 c 0 - 158.330078125 144 144 129.669921875 144 112 c 0 - 144 94.330078125 158.330078125 80 176 80 c 0 -208 240 m 0 - 225.669921875 240 240 254.330078125 240 272 c 0 - 240 289.669921875 225.669921875 304 208 304 c 0 - 190.330078125 304 176 289.669921875 176 272 c 0 - 176 254.330078125 190.330078125 240 208 240 c 0 -368 112 m 0 - 385.669921875 112 400 126.330078125 400 144 c 0 - 400 161.669921875 385.669921875 176 368 176 c 0 - 350.330078125 176 336 161.669921875 336 144 c 0 - 336 126.330078125 350.330078125 112 368 112 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" c o o k i e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C O O K I E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C o o k i e -EndChar - -StartChar: cookie-bite -Encoding: 62820 62820 713 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -510.51953125 192.1796875 m 1 - 514.620117188 164.849609375 510.169921875 136.91015625 497.610351562 112.26953125 c 2 - 462.509765625 43.3896484375 l 2 - 451.744140625 22.2529296875 425.853515625 -3.646484375 404.719726562 -14.419921875 c 2 - 335.58984375 -49.6298828125 l 2 - 310.759765625 -62.2802734375 282.5703125 -66.75 255.059570312 -62.3896484375 c 2 - 178.349609375 -50.240234375 l 2 - 154.958007812 -46.5322265625 122.383789062 -29.9296875 105.639648438 -13.1796875 c 2 - 50.8701171875 41.580078125 l 2 - 34.0732421875 58.3857421875 17.42578125 91.0712890625 13.7099609375 114.540039062 c 2 - 1.6298828125 190.809570312 l 2 - 0.7294921875 196.499023438 -0.001953125 205.791992188 -0.001953125 211.551757812 c 0 - -0.001953125 229.126953125 6.47265625 256.099609375 14.4501953125 271.759765625 c 2 - 49.5498046875 340.639648438 l 2 - 60.314453125 361.779296875 86.2041015625 387.678710938 107.33984375 398.450195312 c 2 - 176.469726562 433.669921875 l 2 - 201.059570312 446.190429688 228.9296875 450.629882812 256.190429688 446.490234375 c 1 - 257.049804688 376.530273438 313.879882812 320.040039062 384.049804688 320.040039062 c 1 - 384.049804688 249.870117188 440.549804688 193.030273438 510.51953125 192.1796875 c 1 -176 80 m 0 - 193.669921875 80 208 94.330078125 208 112 c 0 - 208 129.669921875 193.669921875 144 176 144 c 0 - 158.330078125 144 144 129.669921875 144 112 c 0 - 144 94.330078125 158.330078125 80 176 80 c 0 -208 240 m 0 - 225.669921875 240 240 254.330078125 240 272 c 0 - 240 289.669921875 225.669921875 304 208 304 c 0 - 190.330078125 304 176 289.669921875 176 272 c 0 - 176 254.330078125 190.330078125 240 208 240 c 0 -368 112 m 0 - 385.669921875 112 400 126.330078125 400 144 c 0 - 400 161.669921875 385.669921875 176 368 176 c 0 - 350.330078125 176 336 161.669921875 336 144 c 0 - 336 126.330078125 350.330078125 112 368 112 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" c o o k i e hyphen b i t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C o o k i e hyphen B i t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C o o k i e hyphen b i t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" C O O K I E hyphen B I T E -EndChar - -StartChar: crop-alt -Encoding: 62821 62821 714 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -488 96 m 2 - 501.25 96 512 85.259765625 512 72 c 2 - 512 24 l 2 - 512 10.75 501.25 0 488 0 c 2 - 448 0 l 1 - 448 -40 l 2 - 448 -53.25 437.25 -64 424 -64 c 2 - 376 -64 l 2 - 362.75 -64 352 -53.25 352 -40 c 2 - 352 288 l 1 - 192 288 l 1 - 192 384 l 1 - 416 384 l 2 - 433.669921875 384 448 369.669921875 448 352 c 2 - 448 96 l 1 - 488 96 l 2 -160 424 m 2 - 160 96 l 1 - 320 96 l 1 - 320 0 l 1 - 96 0 l 2 - 78.330078125 0 64 14.330078125 64 32 c 2 - 64 288 l 1 - 24 288 l 2 - 10.75 288 0 298.75 0 312 c 2 - 0 360 l 2 - 0 373.259765625 10.75 384 24 384 c 2 - 64 384 l 1 - 64 424 l 2 - 64 437.259765625 74.75 448 88 448 c 2 - 136 448 l 2 - 149.25 448 160 437.259765625 160 424 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" c r o p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" C r o p hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" C r o p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" C R O P hyphen A L T -EndChar - -StartChar: digital-tachograph -Encoding: 62822 62822 715 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -608 352 m 2 - 625.669921875 352 640 337.669921875 640 320 c 2 - 640 64 l 2 - 640 46.330078125 625.669921875 32 608 32 c 2 - 32 32 l 2 - 14.330078125 32 0 46.330078125 0 64 c 2 - 0 320 l 2 - 0 337.669921875 14.330078125 352 32 352 c 2 - 608 352 l 2 -304 96 m 2 - 304 104 l 2 - 304 108.419921875 300.419921875 112 296 112 c 2 - 72 112 l 2 - 67.580078125 112 64 108.419921875 64 104 c 2 - 64 96 l 2 - 64 91.580078125 67.580078125 88 72 88 c 2 - 296 88 l 2 - 300.419921875 88 304 91.580078125 304 96 c 2 -72 160 m 2 - 72 155.580078125 75.580078125 152 80 152 c 2 - 96 152 l 2 - 100.419921875 152 104 155.580078125 104 160 c 2 - 104 176 l 2 - 104 180.419921875 100.419921875 184 96 184 c 2 - 80 184 l 2 - 75.580078125 184 72 180.419921875 72 176 c 2 - 72 160 l 2 -136 160 m 2 - 136 155.580078125 139.580078125 152 144 152 c 2 - 160 152 l 2 - 164.419921875 152 168 155.580078125 168 160 c 2 - 168 176 l 2 - 168 180.419921875 164.419921875 184 160 184 c 2 - 144 184 l 2 - 139.580078125 184 136 180.419921875 136 176 c 2 - 136 160 l 2 -200 160 m 2 - 200 155.580078125 203.580078125 152 208 152 c 2 - 224 152 l 2 - 228.419921875 152 232 155.580078125 232 160 c 2 - 232 176 l 2 - 232 180.419921875 228.419921875 184 224 184 c 2 - 208 184 l 2 - 203.580078125 184 200 180.419921875 200 176 c 2 - 200 160 l 2 -264 160 m 2 - 264 155.580078125 267.580078125 152 272 152 c 2 - 288 152 l 2 - 292.419921875 152 296 155.580078125 296 160 c 2 - 296 176 l 2 - 296 180.419921875 292.419921875 184 288 184 c 2 - 272 184 l 2 - 267.580078125 184 264 180.419921875 264 176 c 2 - 264 160 l 2 -304 224 m 2 - 304 272 l 2 - 304 280.83984375 296.83984375 288 288 288 c 2 - 80 288 l 2 - 71.16015625 288 64 280.83984375 64 272 c 2 - 64 224 l 2 - 64 215.16015625 71.16015625 208 80 208 c 2 - 288 208 l 2 - 296.83984375 208 304 215.16015625 304 224 c 2 -576 96 m 2 - 576 104 l 2 - 576 108.419921875 572.419921875 112 568 112 c 2 - 344 112 l 2 - 339.580078125 112 336 108.419921875 336 104 c 2 - 336 96 l 2 - 336 91.580078125 339.580078125 88 344 88 c 2 - 568 88 l 2 - 572.419921875 88 576 91.580078125 576 96 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" d i g i t a l hyphen t a c h o g r a p h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" D i g i t a l hyphen T a c h o g r a p h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" D i g i t a l hyphen t a c h o g r a p h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" D I G I T A L hyphen T A C H O G R A P H -EndChar - -StartChar: dizzy -Encoding: 62823 62823 716 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -152 233.400390625 m 1 - 180.700195312 204.700195312 l 2 - 195.400390625 189.900390625 218.5 212.099609375 203.299804688 227.299804688 c 2 - 174.599609375 256 l 1 - 203.299804688 284.700195312 l 2 - 218.299804688 299.599609375 195.700195312 322.299804688 180.700195312 307.299804688 c 2 - 152 278.599609375 l 1 - 123.299804688 307.299804688 l 2 - 108.400390625 322.299804688 85.7001953125 299.700195312 100.700195312 284.700195312 c 2 - 129.400390625 256 l 1 - 100.700195312 227.299804688 l 2 - 85.5 212.200195312 108.5 189.900390625 123.299804688 204.700195312 c 2 - 152 233.400390625 l 1 -248 32 m 0 - 283.299804688 32 312 60.7001953125 312 96 c 0 - 312 131.299804688 283.299804688 160 248 160 c 0 - 212.700195312 160 184 131.299804688 184 96 c 0 - 184 60.7001953125 212.700195312 32 248 32 c 0 -395.299804688 227.299804688 m 2 - 366.599609375 256 l 1 - 395.299804688 284.700195312 l 2 - 410.299804688 299.599609375 387.700195312 322.299804688 372.700195312 307.299804688 c 2 - 344 278.599609375 l 1 - 315.299804688 307.299804688 l 2 - 300.400390625 322.299804688 277.700195312 299.700195312 292.700195312 284.700195312 c 2 - 321.400390625 256 l 1 - 292.700195312 227.299804688 l 2 - 277.5 212.200195312 300.5 189.900390625 315.299804688 204.700195312 c 2 - 344 233.400390625 l 1 - 372.700195312 204.700195312 l 2 - 387.400390625 189.900390625 410.5 212.099609375 395.299804688 227.299804688 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" d i z z y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" D I Z Z Y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" D i z z y -EndChar - -StartChar: drafting-compass -Encoding: 62824 62824 717 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -457.009765625 103.580078125 m 1 - 511.990234375 8.349609375 l 1 - 504.969726562 -49.900390625 l 2 - 503.690429688 -60.490234375 492.610351562 -66.8896484375 482.799804688 -62.7001953125 c 2 - 428.849609375 -39.66015625 l 1 - 374.469726562 54.5302734375 l 1 - 404.379882812 66.400390625 431.959960938 83.25 457.009765625 103.580078125 c 1 -499.5 198.139648438 m 0 - 446.879882812 115.009765625 355.049804688 64 256 64 c 0 - 220.620117188 64 186.129882812 70.7197265625 153.940429688 82.9599609375 c 1 - 83.1396484375 -39.669921875 l 1 - 29.1904296875 -62.7099609375 l 2 - 19.3798828125 -66.900390625 8.2998046875 -60.5 7.01953125 -49.91015625 c 2 - 0 8.33984375 l 1 - 71.2802734375 131.799804688 l 1 - 49.990234375 149.610351562 30.8701171875 170.1796875 15.2998046875 193.8203125 c 0 - 10.3095703125 201.389648438 13.08984375 211.75 20.9404296875 216.290039062 c 2 - 48.6904296875 232.360351562 l 2 - 56.099609375 236.650390625 65.2802734375 234.129882812 70.0703125 227.030273438 c 0 - 79.7900390625 212.620117188 91.2001953125 199.639648438 103.75 188.030273438 c 1 - 172.049804688 306.33984375 l 1 - 164.610351562 319.969726562 160 335.370117188 160 352 c 0 - 160 405.01953125 202.98046875 448 256 448 c 0 - 309.01953125 448 352 405.01953125 352 352 c 0 - 352 335.370117188 347.389648438 319.969726562 339.940429688 306.33984375 c 1 - 391.73046875 216.629882812 l 1 - 368.6796875 193.459960938 340.349609375 176.669921875 309.120117188 167.709960938 c 1 - 258.030273438 256.209960938 l 2 - 257.33984375 256.190429688 256.690429688 256 255.990234375 256 c 0 - 255.290039062 256 254.650390625 256.190429688 253.950195312 256.209960938 c 2 - 186.58984375 139.530273438 l 1 - 208.76953125 132.25 232.0703125 128 256 128 c 0 - 332.25 128 403.009765625 166.849609375 444.120117188 230.379882812 c 0 - 448.76953125 237.559570312 457.900390625 240.25 465.379882812 236.099609375 c 2 - 493.450195312 220.530273438 l 2 - 501.389648438 216.129882812 504.360351562 205.809570312 499.5 198.139648438 c 0 -256 384 m 0 - 238.330078125 384 224 369.669921875 224 352 c 0 - 224 334.330078125 238.330078125 320 256 320 c 0 - 273.669921875 320 288 334.330078125 288 352 c 0 - 288 369.669921875 273.669921875 384 256 384 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" d r a f t i n g hyphen c o m p a s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" D r a f t i n g hyphen C o m p a s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" D r a f t i n g hyphen c o m p a s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" D R A F T I N G hyphen C O M P A S S -EndChar - -StartChar: drum -Encoding: 62825 62825 718 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -431.33984375 325.950195312 m 1 - 476.240234375 309.610351562 512 283.169921875 512 239.849609375 c 2 - 512 79.6201171875 l 2 - 512 49.349609375 484.5 21.9404296875 440 1.759765625 c 1 - 440 103.66015625 l 2 - 440 116.908203125 429.248046875 127.66015625 416 127.66015625 c 0 - 402.751953125 127.66015625 392 116.908203125 392 103.66015625 c 2 - 392 -15.26953125 l 1 - 358.950195312 -24.3798828125 320.9296875 -30.330078125 280 -32 c 1 - 280 71.6103515625 l 2 - 280 84.8583984375 269.248046875 95.6103515625 256 95.6103515625 c 0 - 242.751953125 95.6103515625 232 84.8583984375 232 71.6103515625 c 2 - 232 -32 l 1 - 191.0703125 -30.330078125 153.049804688 -24.3798828125 120 -15.26953125 c 1 - 120 103.66015625 l 2 - 120 116.908203125 109.248046875 127.66015625 96 127.66015625 c 0 - 82.751953125 127.66015625 72 116.908203125 72 103.66015625 c 2 - 72 1.759765625 l 1 - 27.5 21.9404296875 0 49.349609375 0 79.6201171875 c 2 - 0 239.849609375 l 2 - 0 347.450195312 219.549804688 352 256 352 c 0 - 271.219726562 352 318.4296875 351.08984375 368.190429688 342.309570312 c 1 - 478.25 413.309570312 l 2 - 480.474609375 414.79296875 484.451171875 415.997070312 487.125 415.997070312 c 0 - 491.853515625 415.997070312 497.818359375 412.8046875 500.440429688 408.870117188 c 2 - 509.309570312 395.559570312 l 2 - 510.79296875 393.334960938 511.997070312 389.358398438 511.997070312 386.684570312 c 0 - 511.997070312 381.95703125 508.8046875 375.9921875 504.870117188 373.370117188 c 2 - 431.33984375 325.950195312 l 1 -256 175.759765625 m 0 - 370.870117188 175.759765625 464 204.450195312 464 239.849609375 c 0 - 464 261.16015625 430.08984375 280 378.139648438 291.599609375 c 1 - 259.5 215.080078125 l 2 - 257.275390625 213.596679688 253.298828125 212.392578125 250.625 212.392578125 c 0 - 245.896484375 212.392578125 239.931640625 215.5859375 237.309570312 219.51953125 c 2 - 228.440429688 232.830078125 l 2 - 226.955078125 235.055664062 225.75 239.034179688 225.75 241.709960938 c 0 - 225.75 246.434570312 228.939453125 252.397460938 232.870117188 255.01953125 c 2 - 305.6796875 302.01953125 l 1 - 289.73046875 303.219726562 273.150390625 303.9296875 256 303.9296875 c 0 - 141.120117188 303.9296875 48 275.25 48 239.849609375 c 0 - 48 204.450195312 141.120117188 175.759765625 256 175.759765625 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" d r u m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" D R U M -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" D r u m -EndChar - -StartChar: drum-steelpan -Encoding: 62826 62826 719 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 416 m 0 - 447.059570312 416 576 358.690429688 576 288 c 2 - 576 96 l 2 - 576 25.3095703125 447.059570312 -32 288 -32 c 0 - 128.940429688 -32 0 25.3095703125 0 96 c 2 - 0 288 l 2 - 0 358.690429688 128.940429688 416 288 416 c 0 -205.009765625 257.639648438 m 0 - 210.120117188 276.700195312 207.5 296.599609375 197.639648438 313.690429688 c 2 - 172.040039062 358.030273438 l 1 - 98.1103515625 344.389648438 48 318.16015625 48 288 c 0 - 48 257.219726562 100.23046875 230.540039062 176.700195312 217.16015625 c 1 - 190.469726562 227.0703125 200.559570312 241.030273438 205.009765625 257.639648438 c 0 -288 208 m 0 - 309.080078125 208 329.41015625 209 348.889648438 210.700195312 c 1 - 340.830078125 236.830078125 316.740234375 256 288 256 c 0 - 259.259765625 256 235.169921875 236.830078125 227.110351562 210.700195312 c 1 - 246.58984375 209 266.919921875 208 288 208 c 0 -352 352 m 2 - 352 365.040039062 l 1 - 331.599609375 366.919921875 310.200195312 368 288 368 c 0 - 265.799804688 368 244.400390625 366.919921875 224 365.040039062 c 1 - 224 352 l 2 - 224 316.709960938 252.709960938 288 288 288 c 0 - 323.290039062 288 352 316.709960938 352 352 c 2 -398.9296875 217.099609375 m 1 - 475.599609375 230.459960938 528 257.169921875 528 288 c 0 - 528 318.209960938 477.719726562 344.5 403.559570312 358.099609375 c 1 - 377.91015625 313.6796875 l 2 - 368.040039062 296.599609375 365.419921875 276.700195312 370.530273438 257.639648438 c 0 - 374.990234375 241 385.120117188 227.009765625 398.9296875 217.099609375 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" d r u m hyphen s t e e l p a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" D r u m hyphen S t e e l p a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" D r u m hyphen s t e e l p a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" D R U M hyphen S T E E L P A N -EndChar - -StartChar: feather-alt -Encoding: 62827 62827 720 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 448 m 1 - 510.190429688 421.740234375 500.290039062 315.139648438 458.379882812 213.209960938 c 1 - 351.83984375 160 l 1 - 432.98046875 160 l 1 - 423.900390625 143.58984375 413.780273438 127.76953125 402.530273438 112.879882812 c 1 - 255.740234375 64 l 1 - 356.690429688 64 l 1 - 321.129882812 33.9296875 277.58984375 12.900390625 224.110351562 7.4599609375 c 0 - 182.299804688 2.6298828125 140.240234375 0.240234375 98.150390625 0.099609375 c 1 - 41.01953125 -56.9697265625 l 2 - 31.6298828125 -66.33984375 16.419921875 -66.33984375 7.0400390625 -56.9697265625 c 0 - -2.33984375 -47.599609375 -2.33984375 -32.400390625 7.0400390625 -23.0302734375 c 2 - 266.540039062 236.209960938 l 2 - 272.790039062 242.459960938 272.790039062 252.58984375 266.540039062 258.83984375 c 0 - 260.290039062 265.08984375 250.139648438 265.08984375 243.889648438 258.83984375 c 2 - 65.01953125 80.150390625 l 1 - 66.169921875 106.950195312 67.919921875 133.73046875 71.009765625 160.389648438 c 0 - 96.4404296875 409.799804688 460.219726562 444.440429688 512 448 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" f e a t h e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F e a t h e r hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F e a t h e r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F E A T H E R hyphen A L T -EndChar - -StartChar: file-contract -Encoding: 62828 62828 721 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -64 376 m 2 - 64 360 l 2 - 64 355.580078125 67.580078125 352 72 352 c 2 - 152 352 l 2 - 156.419921875 352 160 355.580078125 160 360 c 2 - 160 376 l 2 - 160 380.419921875 156.419921875 384 152 384 c 2 - 72 384 l 2 - 67.580078125 384 64 380.419921875 64 376 c 2 -64 312 m 2 - 64 296 l 2 - 64 291.580078125 67.580078125 288 72 288 c 2 - 152 288 l 2 - 156.419921875 288 160 291.580078125 160 296 c 2 - 160 312 l 2 - 160 316.419921875 156.419921875 320 152 320 c 2 - 72 320 l 2 - 67.580078125 320 64 316.419921875 64 312 c 2 -256.809570312 64 m 2 - 252.610351562 64 248.669921875 66.4404296875 246.650390625 70.5 c 0 - 234.700195312 94.3603515625 200.419921875 100.849609375 180.650390625 84.66015625 c 1 - 166.76953125 126.299804688 l 2 - 163.48046875 136.120117188 154.33984375 142.709960938 144 142.709960938 c 0 - 133.66015625 142.709960938 124.51953125 136.110351562 121.219726562 126.299804688 c 2 - 103.030273438 71.66015625 l 2 - 101.5 67.080078125 97.2197265625 64 92.3896484375 64 c 2 - 80 64 l 2 - 71.16015625 64 64 56.83984375 64 48 c 0 - 64 39.16015625 71.16015625 32 80 32 c 2 - 92.3896484375 32 l 2 - 111.009765625 32 127.5 43.8701171875 133.389648438 61.5302734375 c 2 - 144 93.41015625 l 1 - 160.830078125 42.9501953125 l 2 - 162.860351562 36.8095703125 168.41015625 32.509765625 174.860351562 32.0595703125 c 0 - 175.25 32.0302734375 175.620117188 32.009765625 176 32.009765625 c 2 - 176.009765625 32.009765625 l 2 - 181.46484375 32.009765625 187.87109375 35.970703125 190.309570312 40.849609375 c 2 - 197.98046875 56.1904296875 l 2 - 200.780273438 61.7900390625 205.919921875 62.3798828125 208 62.3798828125 c 0 - 210.080078125 62.3798828125 215.219726562 61.7802734375 218.169921875 55.8603515625 c 0 - 225.540039062 41.1396484375 240.360351562 32 256.809570312 32 c 2 - 304 32 l 2 - 312.83984375 32 320 39.16015625 320 48 c 0 - 320 56.83984375 312.83984375 64 304 64 c 2 - 256.809570312 64 l 2 -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" f i l e hyphen c o n t r a c t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" F i l e hyphen C o n t r a c t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" F i l e hyphen c o n t r a c t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" F I L E hyphen C O N T R A C T -EndChar - -StartChar: file-download -Encoding: 62829 62829 722 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -300.450195312 100.639648438 m 2 - 310.580078125 110.709960938 303.459960938 128 289.1796875 128 c 2 - 224 128 l 1 - 224 208 l 2 - 224 216.83984375 216.83984375 224 208 224 c 2 - 176 224 l 2 - 167.16015625 224 160 216.83984375 160 208 c 2 - 160 128 l 1 - 94.8203125 128 l 2 - 80.5400390625 128 73.419921875 110.709960938 83.5703125 100.639648438 c 2 - 179.990234375 4.9404296875 l 2 - 186.639648438 -1.669921875 197.379882812 -1.669921875 204.030273438 4.9404296875 c 2 - 300.450195312 100.639648438 l 2 -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" f i l e hyphen d o w n l o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" F i l e hyphen D o w n l o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" F i l e hyphen d o w n l o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" F I L E hyphen D O W N L O A D -EndChar - -StartChar: file-export -Encoding: 62830 62830 723 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 326.099609375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 -571 140 m 2 - 577.599609375 133.400390625 577.599609375 122.599609375 571 116 c 2 - 475.299804688 19.5 l 2 - 465.200195312 9.400390625 447.900390625 16.5 447.900390625 30.7998046875 c 2 - 447.900390625 96 l 1 - 383.900390625 96 l 1 - 383.900390625 160 l 1 - 447.900390625 160 l 1 - 447.900390625 225.099609375 l 2 - 447.900390625 239.400390625 465.200195312 246.5 475.299804688 236.400390625 c 2 - 571 140 l 2 -192 112 m 2 - 192 103.200195312 199.200195312 96 208 96 c 2 - 384 96 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 160 l 1 - 208 160 l 2 - 199.200195312 160 192 152.799804688 192 144 c 2 - 192 112 l 2 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" f i l e hyphen e x p o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" F i l e hyphen E x p o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" F i l e hyphen e x p o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" F I L E hyphen E X P O R T -EndChar - -StartChar: file-import -Encoding: 62831 62831 724 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -16 160 m 2 - 128 160 l 1 - 128 96 l 1 - 16 96 l 2 - 7.2001953125 96 0 103.200195312 0 112 c 2 - 0 144 l 2 - 0 152.799804688 7.2001953125 160 16 160 c 2 -505 343 m 2 - 509.5 338.5 512 332.400390625 512 326.099609375 c 2 - 512 320 l 1 - 384 320 l 1 - 384 448 l 1 - 390.099609375 448 l 2 - 396.5 448 402.599609375 445.5 407.099609375 441 c 2 - 505 343 l 2 -352 312 m 2 - 352 298.799804688 362.799804688 288 376 288 c 2 - 512 288 l 1 - 512 -40 l 2 - 512 -53.2998046875 501.299804688 -64 488 -64 c 2 - 152 -64 l 2 - 138.700195312 -64 128 -53.2998046875 128 -40 c 2 - 128 96 l 1 - 255.900390625 96 l 1 - 255.900390625 30.900390625 l 2 - 255.900390625 16.599609375 273.200195312 9.5 283.299804688 19.599609375 c 2 - 379 116 l 2 - 385.599609375 122.599609375 385.599609375 133.299804688 379 140 c 2 - 283.400390625 236.5 l 2 - 273.299804688 246.599609375 256 239.5 256 225.200195312 c 2 - 256 160 l 1 - 128 160 l 1 - 128 424 l 2 - 128 437.299804688 138.700195312 448 152 448 c 2 - 352 448 l 1 - 352 312 l 2 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" f i l e hyphen i m p o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F i l e hyphen I m p o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F i l e hyphen i m p o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F I L E hyphen I M P O R T -EndChar - -StartChar: file-invoice -Encoding: 62832 62832 725 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 192 m 1 - 288 128 l 1 - 96 128 l 1 - 96 192 l 1 - 288 192 l 1 -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -64 376 m 2 - 64 360 l 2 - 64 355.580078125 67.580078125 352 72 352 c 2 - 152 352 l 2 - 156.419921875 352 160 355.580078125 160 360 c 2 - 160 376 l 2 - 160 380.419921875 156.419921875 384 152 384 c 2 - 72 384 l 2 - 67.580078125 384 64 380.419921875 64 376 c 2 -64 312 m 2 - 64 296 l 2 - 64 291.580078125 67.580078125 288 72 288 c 2 - 152 288 l 2 - 156.419921875 288 160 291.580078125 160 296 c 2 - 160 312 l 2 - 160 316.419921875 156.419921875 320 152 320 c 2 - 72 320 l 2 - 67.580078125 320 64 316.419921875 64 312 c 2 -320 8 m 2 - 320 24 l 2 - 320 28.419921875 316.419921875 32 312 32 c 2 - 232 32 l 2 - 227.580078125 32 224 28.419921875 224 24 c 2 - 224 8 l 2 - 224 3.580078125 227.580078125 0 232 0 c 2 - 312 0 l 2 - 316.419921875 0 320 3.580078125 320 8 c 2 -320 208 m 2 - 320 216.83984375 312.83984375 224 304 224 c 2 - 80 224 l 2 - 71.16015625 224 64 216.83984375 64 208 c 2 - 64 112 l 2 - 64 103.16015625 71.16015625 96 80 96 c 2 - 304 96 l 2 - 312.83984375 96 320 103.16015625 320 112 c 2 - 320 208 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" f i l e hyphen i n v o i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" F i l e hyphen I n v o i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" F i l e hyphen i n v o i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" F I L E hyphen I N V O I C E -EndChar - -StartChar: file-invoice-dollar -Encoding: 62833 62833 726 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -64 376 m 2 - 64 360 l 2 - 64 355.580078125 67.580078125 352 72 352 c 2 - 152 352 l 2 - 156.419921875 352 160 355.580078125 160 360 c 2 - 160 376 l 2 - 160 380.419921875 156.419921875 384 152 384 c 2 - 72 384 l 2 - 67.580078125 384 64 380.419921875 64 376 c 2 -64 296 m 2 - 64 291.580078125 67.580078125 288 72 288 c 2 - 152 288 l 2 - 156.419921875 288 160 291.580078125 160 296 c 2 - 160 312 l 2 - 160 316.419921875 156.419921875 320 152 320 c 2 - 72 320 l 2 - 67.580078125 320 64 316.419921875 64 312 c 2 - 64 296 l 2 -208 32.1201171875 m 1 - 231.620117188 32.75 250.669921875 52.66015625 250.669921875 77.1904296875 c 0 - 250.669921875 97.16015625 237.6796875 115 219.08984375 120.580078125 c 2 - 174.08984375 134.080078125 l 2 - 168.9296875 135.620117188 165.3203125 140.860351562 165.3203125 146.809570312 c 0 - 165.3203125 154.080078125 170.620117188 160 177.120117188 160 c 2 - 205.23046875 160 l 2 - 209.790039062 160 214.1796875 158.709960938 218.049804688 156.280273438 c 0 - 221.290039062 154.25 225.41015625 154.370117188 228.1796875 157.009765625 c 2 - 239.9296875 168.219726562 l 2 - 243.459960938 171.58984375 243.259765625 177.4296875 239.360351562 180.360351562 c 0 - 230.259765625 187.200195312 219.280273438 191.129882812 207.990234375 191.709960938 c 1 - 207.990234375 216 l 2 - 207.990234375 220.419921875 204.41015625 224 199.990234375 224 c 2 - 183.990234375 224 l 2 - 179.5703125 224 175.990234375 220.419921875 175.990234375 216 c 2 - 175.990234375 191.879882812 l 1 - 152.370117188 191.25 133.3203125 171.330078125 133.3203125 146.809570312 c 0 - 133.3203125 126.83984375 146.309570312 109 164.900390625 103.419921875 c 2 - 209.900390625 89.919921875 l 2 - 215.059570312 88.3798828125 218.669921875 83.1396484375 218.669921875 77.1904296875 c 0 - 218.669921875 69.919921875 213.370117188 64 206.870117188 64 c 2 - 178.759765625 64 l 2 - 174.200195312 64 169.809570312 65.2998046875 165.940429688 67.7197265625 c 0 - 162.700195312 69.75 158.580078125 69.6298828125 155.809570312 66.990234375 c 2 - 144.059570312 55.7802734375 l 2 - 140.530273438 52.41015625 140.73046875 46.5703125 144.629882812 43.6396484375 c 0 - 153.73046875 36.8095703125 164.709960938 32.8701171875 176 32.2900390625 c 1 - 176 8 l 2 - 176 3.580078125 179.580078125 0 184 0 c 2 - 200 0 l 2 - 204.419921875 0 208 3.580078125 208 8 c 2 - 208 32.1201171875 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" f i l e hyphen i n v o i c e hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" F i l e hyphen I n v o i c e hyphen D o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" F i l e hyphen i n v o i c e hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" F I L E hyphen I N V O I C E hyphen D O L L A R -EndChar - -StartChar: file-prescription -Encoding: 62834 62834 727 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -292.530273438 132.51953125 m 2 - 286.280273438 138.76953125 276.150390625 138.76953125 269.900390625 132.51953125 c 2 - 240 102.620117188 l 1 - 206.540039062 136.080078125 l 1 - 226.379882812 146.950195312 240 167.780273438 240 192 c 0 - 240 227.349609375 211.349609375 256 176 256 c 2 - 96 256 l 2 - 87.16015625 256 80 248.83984375 80 240 c 2 - 80 80 l 2 - 80 71.16015625 87.16015625 64 96 64 c 2 - 112 64 l 2 - 120.83984375 64 128 71.16015625 128 80 c 2 - 128 128 l 1 - 146.740234375 128 l 1 - 206.059570312 68.6904296875 l 1 - 176 38.6298828125 l 2 - 169.75 32.3798828125 169.75 22.25 176 16 c 2 - 187.309570312 4.6904296875 l 2 - 193.559570312 -1.5595703125 203.690429688 -1.5595703125 209.940429688 4.6904296875 c 2 - 240 34.75 l 1 - 270.059570312 4.6796875 l 2 - 276.309570312 -1.5703125 286.440429688 -1.5703125 292.690429688 4.6796875 c 2 - 304 15.990234375 l 2 - 310.25 22.240234375 310.25 32.3701171875 304 38.6201171875 c 2 - 273.940429688 68.6796875 l 1 - 303.83984375 98.580078125 l 2 - 310.08984375 104.830078125 310.08984375 114.959960938 303.83984375 121.209960938 c 2 - 292.530273438 132.51953125 l 2 -176 176 m 2 - 128 176 l 1 - 128 208 l 1 - 176 208 l 2 - 184.8203125 208 192 200.8203125 192 192 c 0 - 192 183.1796875 184.8203125 176 176 176 c 2 -384 326.099609375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" f i l e hyphen p r e s c r i p t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" F i l e hyphen P r e s c r i p t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" F i l e hyphen p r e s c r i p t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" F I L E hyphen P R E S C R I P T I O N -EndChar - -StartChar: file-signature -Encoding: 62835 62835 728 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -218.169921875 23.8603515625 m 0 - 225.419921875 9.3896484375 239.879882812 0.419921875 256 0.1103515625 c 2 - 384 0 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384.009765625 288 l 1 - 384.009765625 241.450195312 l 1 - 256.009765625 114.360351562 l 1 - 256.009765625 32.240234375 l 2 - 252.139648438 32.5498046875 248.540039062 34.7197265625 246.650390625 38.5 c 0 - 234.709960938 62.3603515625 200.400390625 68.849609375 180.650390625 52.66015625 c 1 - 166.76953125 94.2998046875 l 2 - 163.48046875 104.120117188 154.33984375 110.709960938 144 110.709960938 c 0 - 133.66015625 110.709960938 124.51953125 104.110351562 121.219726562 94.2998046875 c 2 - 103.030273438 39.66015625 l 2 - 101.5 35.080078125 97.2197265625 32 92.3896484375 32 c 2 - 80 32 l 2 - 71.16015625 32 64 24.83984375 64 16 c 0 - 64 7.16015625 71.16015625 0 80 0 c 2 - 92.3896484375 0 l 2 - 111.009765625 0 127.5 11.8701171875 133.389648438 29.5302734375 c 2 - 144 61.41015625 l 1 - 160.830078125 10.9404296875 l 2 - 165.280273438 -2.51953125 183.940429688 -3.9296875 190.309570312 8.849609375 c 2 - 197.98046875 24.1904296875 l 2 - 200.780273438 29.7900390625 205.919921875 30.3798828125 208 30.3798828125 c 0 - 210.080078125 30.3798828125 215.219726562 29.7802734375 218.169921875 23.8603515625 c 0 -384 326.099609375 m 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 -288 101.040039062 m 1 - 450.790039062 262.66015625 l 1 - 518.669921875 194.780273438 l 1 - 356.990234375 32 l 1 - 288 32 l 1 - 288 101.040039062 l 1 -568.540039062 280.669921875 m 2 - 578.490234375 270.73046875 578.490234375 254.599609375 568.540039062 244.66015625 c 2 - 541.290039062 217.41015625 l 1 - 473.41015625 285.290039062 l 1 - 500.66015625 312.540039062 l 2 - 510.599609375 322.48046875 526.73046875 322.48046875 536.669921875 312.540039062 c 2 - 568.540039062 280.669921875 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" f i l e hyphen s i g n a t u r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" F i l e hyphen S i g n a t u r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" F i l e hyphen s i g n a t u r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" F I L E hyphen S I G N A T U R E -EndChar - -StartChar: file-upload -Encoding: 62836 62836 729 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -289.1796875 95.990234375 m 2 - 303.459960938 95.990234375 310.580078125 113.280273438 300.4296875 123.349609375 c 2 - 204.009765625 219.049804688 l 2 - 197.360351562 225.66015625 186.620117188 225.66015625 179.969726562 219.049804688 c 2 - 83.5498046875 123.349609375 l 2 - 73.41015625 113.280273438 80.5400390625 95.990234375 94.8203125 95.990234375 c 2 - 160 95.990234375 l 1 - 160 15.990234375 l 2 - 160 7.150390625 167.16015625 -0.009765625 176 -0.009765625 c 2 - 208 -0.009765625 l 2 - 216.83984375 -0.009765625 224 7.150390625 224 15.990234375 c 2 - 224 95.990234375 l 1 - 289.1796875 95.990234375 l 2 -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" f i l e hyphen u p l o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F i l e hyphen U p l o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F i l e hyphen u p l o a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" F I L E hyphen U P L O A D -EndChar - -StartChar: fill -Encoding: 62837 62837 730 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -502.629882812 230.940429688 m 2 - 515.120117188 218.440429688 515.120117188 198.1796875 502.629882812 185.6796875 c 2 - 281.059570312 -35.8896484375 l 2 - 262.309570312 -54.6396484375 237.75 -64.009765625 213.1796875 -64.009765625 c 0 - 188.620117188 -64.009765625 164.059570312 -54.6298828125 145.309570312 -35.8896484375 c 2 - 28.1201171875 81.2998046875 l 2 - -9.3701171875 118.790039062 -9.3701171875 179.559570312 28.1201171875 217.049804688 c 2 - 122.879882812 311.809570312 l 1 - 36.6904296875 397.990234375 l 2 - 30.4501953125 404.240234375 30.4501953125 414.370117188 36.6904296875 420.620117188 c 2 - 59.3095703125 443.23046875 l 2 - 65.5498046875 449.48046875 75.6904296875 449.48046875 81.9296875 443.23046875 c 2 - 168.110351562 357.049804688 l 1 - 249.690429688 438.629882812 l 2 - 255.9296875 444.879882812 264.120117188 448 272.309570312 448 c 0 - 280.5 448 288.690429688 444.879882812 294.940429688 438.629882812 c 2 - 502.629882812 230.940429688 l 2 -386.41015625 159.969726562 m 1 - 434.759765625 208.309570312 l 1 - 272.309570312 370.75 l 1 - 213.360351562 311.799804688 l 1 - 271.969726562 253.200195312 l 2 - 284.459960938 240.709960938 284.459960938 220.450195312 271.969726562 207.959960938 c 0 - 259.48046875 195.469726562 239.219726562 195.469726562 226.73046875 207.959960938 c 2 - 168.120117188 266.559570312 l 1 - 86.509765625 184.950195312 l 1 - 73.3603515625 171.799804688 l 2 - 69.5 167.950195312 67.2900390625 163.809570312 65.9296875 159.969726562 c 2 - 386.41015625 159.969726562 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" f i l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" F I L L -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" F i l l -EndChar - -StartChar: fill-drip -Encoding: 62838 62838 731 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 128 m 1 - 512 128 576 35.349609375 576 0 c 0 - 576 -35.349609375 547.33984375 -64 512 -64 c 0 - 476.66015625 -64 448 -35.349609375 448 0 c 0 - 448 35.349609375 512 128 512 128 c 1 -502.629882812 230.940429688 m 2 - 515.120117188 218.440429688 515.120117188 198.190429688 502.620117188 185.690429688 c 2 - 281.049804688 -35.8798828125 l 2 - 262.309570312 -54.6298828125 237.75 -64 213.1796875 -64 c 0 - 188.620117188 -64 164.049804688 -54.6201171875 145.309570312 -35.8798828125 c 2 - 28.1201171875 81.3095703125 l 2 - -9.3701171875 118.799804688 -9.3701171875 179.580078125 28.1201171875 217.059570312 c 2 - 122.879882812 311.8203125 l 1 - 36.6904296875 398 l 2 - 30.4501953125 404.240234375 30.4501953125 414.370117188 36.6904296875 420.620117188 c 2 - 59.3095703125 443.240234375 l 2 - 65.5498046875 449.490234375 75.6796875 449.490234375 81.9296875 443.240234375 c 2 - 168.110351562 357.049804688 l 1 - 249.690429688 438.629882812 l 2 - 255.9296875 444.879882812 264.120117188 448 272.309570312 448 c 0 - 280.5 448 288.690429688 444.879882812 294.940429688 438.629882812 c 2 - 502.629882812 230.940429688 l 2 -386.41015625 159.969726562 m 1 - 434.75 208.309570312 l 1 - 272.309570312 370.75 l 1 - 213.360351562 311.799804688 l 1 - 271.959960938 253.200195312 l 2 - 284.450195312 240.709960938 284.450195312 220.450195312 271.959960938 207.959960938 c 0 - 259.469726562 195.469726562 239.209960938 195.469726562 226.719726562 207.959960938 c 2 - 168.120117188 266.559570312 l 1 - 86.509765625 184.950195312 l 1 - 73.3603515625 171.799804688 l 2 - 69.5 167.950195312 67.2900390625 163.809570312 65.9296875 159.969726562 c 2 - 386.41015625 159.969726562 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" f i l l hyphen d r i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" F i l l hyphen D r i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" F i l l hyphen d r i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" F I L L hyphen D R I P -EndChar - -StartChar: fingerprint -Encoding: 62839 62839 732 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256.120117188 202.040039062 m 0 - 269.379882812 202.040039062 280.120117188 191.290039062 280.110351562 178.040039062 c 0 - 281.669921875 78.9296875 264.16015625 1.4296875 250.629882812 -46.48046875 c 0 - 247.650390625 -57.080078125 238.01953125 -64 227.540039062 -64 c 0 - 206.5703125 -64 201.690429688 -43.23046875 204.419921875 -33.509765625 c 0 - 223.98046875 36.1396484375 233.259765625 105.790039062 232.120117188 178.040039062 c 0 - 232.120117188 191.299804688 242.870117188 202.040039062 256.120117188 202.040039062 c 0 -255.259765625 283.76953125 m 0 - 312.23046875 282.9296875 359.290039062 236.849609375 360.169921875 181.049804688 c 0 - 360.959960938 130.150390625 357.1796875 78.9697265625 348.900390625 28.9404296875 c 0 - 348.129882812 24.26953125 341.290039062 5.83984375 321.3203125 9.169921875 c 0 - 308.25 11.330078125 299.389648438 23.6904296875 301.559570312 36.75 c 0 - 309.360351562 83.9697265625 312.940429688 132.25 312.169921875 180.299804688 c 0 - 311.700195312 210.4296875 285.860351562 235.299804688 254.549804688 235.76953125 c 0 - 220.01953125 235.919921875 199.690429688 209.379882812 200.099609375 183.4296875 c 0 - 200.900390625 131.990234375 196.0703125 80.5 185.73046875 30.41015625 c 0 - 183.040039062 17.4296875 170.419921875 9.099609375 157.370117188 11.76953125 c 0 - 144.400390625 14.4404296875 136.040039062 27.150390625 138.73046875 40.1298828125 c 0 - 148.349609375 86.76953125 152.849609375 134.740234375 152.099609375 182.6796875 c 0 - 151.25 236.700195312 194 283.83984375 255.259765625 283.76953125 c 0 -144.5703125 303.549804688 m 0 - 154.849609375 295.1796875 156.41015625 280.0703125 148.059570312 269.790039062 c 0 - 129.259765625 246.700195312 119.58984375 218.700195312 120.059570312 188.8203125 c 0 - 120.700195312 148.150390625 117.389648438 107.330078125 110.200195312 67.490234375 c 0 - 109.379882812 62.9404296875 102.419921875 44.6298828125 82.3095703125 48.1298828125 c 0 - 69.259765625 50.490234375 60.6103515625 62.9697265625 62.9501953125 76.01953125 c 0 - 69.58984375 112.799804688 72.650390625 150.490234375 72.0595703125 188.0703125 c 0 - 71.419921875 228.790039062 85.1904296875 268.5703125 110.809570312 300.0703125 c 0 - 119.200195312 310.349609375 134.26953125 311.889648438 144.5703125 303.549804688 c 0 -254.040039062 365.879882812 m 0 - 355.129882812 364.379882812 438.639648438 282.799804688 440.200195312 184.049804688 c 0 - 440.26171875 180.071289062 440.311523438 173.612304688 440.311523438 169.6328125 c 0 - 440.311523438 140.439453125 437.623046875 93.205078125 434.309570312 64.2001953125 c 0 - 433.240234375 54.9697265625 424.450195312 41.1396484375 407.73046875 43.08984375 c 0 - 394.5703125 44.58984375 385.120117188 56.5 386.620117188 69.669921875 c 0 - 390.919921875 107.190429688 392.790039062 145.419921875 392.200195312 183.299804688 c 0 - 391.049804688 256.379882812 328.75 316.75 253.3203125 317.879882812 c 0 - 241.790039062 317.959960938 230.370117188 316.799804688 219.3203125 314.190429688 c 0 - 206.4296875 311.190429688 193.490234375 319.129882812 190.4296875 332.01953125 c 0 - 187.389648438 344.9296875 195.370117188 357.849609375 208.259765625 360.91015625 c 0 - 223.169921875 364.440429688 238.629882812 366.290039062 254.040039062 365.879882812 c 0 -506.110351562 244.4296875 m 0 - 512.33984375 216.200195312 512.120117188 194.26953125 511.940429688 172.08984375 c 0 - 511.830078125 158.900390625 501.110351562 148.290039062 487.940429688 148.290039062 c 2 - 487.740234375 148.290039062 l 2 - 474.490234375 148.400390625 463.830078125 159.219726562 463.940429688 172.490234375 c 0 - 464.150390625 196.6796875 463.950195312 212.6796875 459.240234375 234.08984375 c 0 - 456.379882812 247.040039062 464.559570312 259.83984375 477.5 262.700195312 c 0 - 490.599609375 265.629882812 503.25 257.349609375 506.110351562 244.4296875 c 0 -465.990234375 335.150390625 m 0 - 473.610351562 324.309570312 470.990234375 309.33984375 460.150390625 301.719726562 c 0 - 449.290039062 294.129882812 434.33984375 296.719726562 426.73046875 307.580078125 c 0 - 386.83984375 364.41015625 321.559570312 398.940429688 252.110351562 399.969726562 c 0 - 195.76953125 400.780273438 143.190429688 379.91015625 104.4296875 341.110351562 c 0 - 67.3095703125 303.969726562 47.3203125 254.610351562 48.150390625 202.110351562 c 2 - 47.990234375 178.469726562 l 2 - 47.6103515625 165.469726562 36.9404296875 155.169921875 24.01953125 155.169921875 c 0 - 23.7802734375 155.169921875 23.5302734375 155.169921875 23.2998046875 155.190429688 c 0 - 10.0498046875 155.5703125 -0.3701171875 166.629882812 0.01953125 179.879882812 c 2 - 0.1396484375 201.349609375 l 2 - -0.900390625 266.959960938 24.08984375 328.629882812 70.4599609375 375.059570312 c 0 - 118.469726562 423.08984375 183.01953125 448.8203125 252.809570312 447.98046875 c 0 - 337.599609375 446.709960938 417.290039062 404.540039062 465.990234375 335.150390625 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" f i n g e r p r i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" F i n g e r p r i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" F I N G E R P R I N T -EndChar - -StartChar: fish -Encoding: 62840 62840 733 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -327.099609375 352 m 0 - 464.559570312 352 576 224 576 192 c 0 - 576 160 464.559570312 32 327.099609375 32 c 0 - 237.129882812 32 158.549804688 86.76953125 114.8203125 133.620117188 c 1 - 27.490234375 67.5703125 l 2 - 15.3603515625 58.400390625 -2.75 68.169921875 0.349609375 82.23046875 c 2 - 24.5400390625 192 l 1 - 0.3603515625 301.759765625 l 2 - -2.740234375 315.8203125 15.3701171875 325.599609375 27.5 316.419921875 c 2 - 114.830078125 250.370117188 l 1 - 158.559570312 297.23046875 237.129882812 352 327.099609375 352 c 0 -414.530273438 168 m 0 - 427.780273438 168 438.530273438 178.75 438.530273438 192 c 0 - 438.530273438 205.259765625 427.790039062 216 414.530273438 216 c 0 - 401.280273438 216 390.530273438 205.259765625 390.530273438 192 c 0 - 390.530273438 178.75 401.280273438 168 414.530273438 168 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" f i s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" F i s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" F I S H -EndChar - -StartChar: flushed -Encoding: 62841 62841 734 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -344 248 m 0 - 357.299804688 248 368 237.299804688 368 224 c 0 - 368 210.700195312 357.299804688 200 344 200 c 0 - 330.700195312 200 320 210.700195312 320 224 c 0 - 320 237.299804688 330.700195312 248 344 248 c 0 -152 248 m 0 - 165.299804688 248 176 237.299804688 176 224 c 0 - 176 210.700195312 165.299804688 200 152 200 c 0 - 138.700195312 200 128 210.700195312 128 224 c 0 - 128 237.299804688 138.700195312 248 152 248 c 0 -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -80 224 m 0 - 80 184.200195312 112.200195312 152 152 152 c 0 - 191.799804688 152 224 184.200195312 224 224 c 0 - 224 263.799804688 191.799804688 296 152 296 c 0 - 112.200195312 296 80 263.799804688 80 224 c 0 -312 48 m 2 - 333.200195312 48 333.200195312 80 312 80 c 2 - 184 80 l 2 - 162.799804688 80 162.799804688 48 184 48 c 2 - 312 48 l 2 -344 152 m 0 - 383.799804688 152 416 184.200195312 416 224 c 0 - 416 263.799804688 383.799804688 296 344 296 c 0 - 304.200195312 296 272 263.799804688 272 224 c 0 - 272 184.200195312 304.200195312 152 344 152 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" f l u s h e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" F l u s h e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" F L U S H E D -EndChar - -StartChar: frown-open -Encoding: 62842 62842 735 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -136 240 m 0 - 136 222.299804688 150.299804688 208 168 208 c 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 -323.299804688 56.7001953125 m 0 - 334.700195312 53.2001953125 345.799804688 62.900390625 343.799804688 74.7998046875 c 0 - 336.799804688 114.700195312 283.700195312 136 248 136 c 0 - 212.299804688 136 159.200195312 114.799804688 152.200195312 74.7998046875 c 0 - 150.200195312 63 161.200195312 53.2001953125 172.700195312 56.7001953125 c 0 - 203.900390625 66.2998046875 232.099609375 72 248 72 c 0 - 263.900390625 72 292.099609375 66.2998046875 323.299804688 56.7001953125 c 0 -328 208 m 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" f r o w n hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" F r o w n hyphen O p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" F r o w n hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" F R O W N hyphen O P E N -EndChar - -StartChar: glass-martini-alt -Encoding: 62843 62843 736 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -502.049804688 390.400390625 m 2 - 288 176.360351562 l 1 - 288 -16 l 1 - 344 -16 l 2 - 366.08984375 -16 384 -33.91015625 384 -56 c 0 - 384 -60.419921875 380.419921875 -64 376 -64 c 2 - 136 -64 l 2 - 131.580078125 -64 128 -60.419921875 128 -56 c 0 - 128 -33.91015625 145.91015625 -16 168 -16 c 2 - 224 -16 l 1 - 224 176.360351562 l 1 - 9.9501953125 390.400390625 l 2 - -11.2998046875 411.66015625 3.75 448 33.7998046875 448 c 2 - 478.200195312 448 l 2 - 508.25 448 523.299804688 411.66015625 502.049804688 390.400390625 c 2 -443.76953125 400 m 1 - 68.240234375 400 l 1 - 116.240234375 352 l 1 - 395.76953125 352 l 1 - 443.76953125 400 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" g l a s s hyphen m a r t i n i hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" G l a s s hyphen M a r t i n i hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" G l a s s hyphen m a r t i n i hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" G L A S S hyphen M A R T I N I hyphen A L T -EndChar - -StartChar: globe-africa -Encoding: 62844 62844 737 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 384.969726562 440 496 328.969726562 496 192 c 0 - 496 55.0302734375 384.969726562 -56 248 -56 c 0 - 111.030273438 -56 0 55.0302734375 0 192 c 0 - 0 328.969726562 111.030273438 440 248 440 c 0 -408 224.5 m 2 - 408 233.059570312 414.940429688 240 423.5 240 c 2 - 441.9296875 240 l 1 - 422.860351562 316.98046875 359.23046875 376.370117188 280.009765625 389.209960938 c 1 - 280.009765625 367.509765625 l 2 - 280.009765625 358.950195312 273.0703125 352.009765625 264.509765625 352.009765625 c 2 - 240.299804688 352.009765625 l 2 - 235.120117188 352.009765625 230.280273438 349.419921875 227.41015625 345.110351562 c 2 - 219.330078125 333 l 2 - 217.190429688 329.790039062 213.9296875 327.5 210.190429688 326.559570312 c 2 - 195.740234375 322.950195312 l 2 - 188.83984375 321.219726562 184 315.01953125 184 307.91015625 c 2 - 184 303.509765625 l 2 - 184 294.950195312 190.940429688 288.009765625 199.5 288.009765625 c 2 - 289.549804688 288.009765625 l 1 - 289.552734375 288.009765625 l 2 - 293.095703125 288.009765625 298.004882812 285.9765625 300.509765625 283.469726562 c 2 - 307.4296875 276.549804688 l 2 - 310.33984375 273.639648438 314.280273438 272.009765625 318.389648438 272.009765625 c 2 - 328.48046875 272.009765625 l 2 - 337.040039062 272.009765625 343.98046875 265.0703125 343.98046875 256.509765625 c 0 - 343.98046875 249.83984375 339.709960938 243.919921875 333.379882812 241.809570312 c 2 - 286.0703125 226.040039062 l 2 - 282.169921875 224.740234375 277.919921875 225.040039062 274.240234375 226.879882812 c 2 - 259.51953125 234.240234375 l 2 - 251.940429688 238.040039062 243.5703125 240.009765625 235.08984375 240.009765625 c 2 - 234.200195312 240.009765625 l 2 - 224.147460938 240.0078125 209.461914062 235.110351562 201.419921875 229.080078125 c 2 - 173.83984375 208.389648438 l 2 - 160.08984375 198.0703125 151.990234375 181.879882812 151.990234375 164.690429688 c 2 - 151.990234375 150.629882812 l 2 - 151.9921875 138.139648438 159.16015625 120.833984375 167.990234375 112 c 0 - 178.240234375 101.759765625 192.129882812 96 206.620117188 96 c 2 - 232.5 96 l 2 - 241.059570312 96 248 89.0595703125 248 80.5 c 2 - 248 50.6103515625 l 1 - 248 50.6064453125 l 2 - 248 40.32421875 251.731445312 24.5166015625 256.330078125 15.3203125 c 0 - 261.030273438 5.919921875 270.639648438 -0.01953125 281.150390625 -0.01953125 c 0 - 289.348632812 -0.0185546875 299.692382812 5.5185546875 304.240234375 12.33984375 c 2 - 317.26953125 31.8896484375 l 2 - 323.194335938 40.7744140625 334.39453125 53.837890625 342.26953125 61.0498046875 c 0 - 344.740234375 63.3203125 346.41015625 66.3203125 347.030273438 69.6103515625 c 2 - 351.330078125 92.4404296875 l 2 - 351.76953125 94.76953125 352.740234375 96.9697265625 354.16015625 98.8701171875 c 2 - 372.900390625 123.849609375 l 2 - 374.91015625 126.530273438 376 129.799804688 376 133.150390625 c 2 - 376 144.490234375 l 2 - 376 153.049804688 369.059570312 159.990234375 360.5 159.990234375 c 2 - 352.290039062 159.990234375 l 2 - 347.110351562 159.990234375 342.26953125 162.580078125 339.400390625 166.889648438 c 2 - 326.16015625 186.75 l 2 - 320.490234375 195.259765625 324.450195312 206.8203125 334.150390625 210.049804688 c 2 - 336.799804688 210.9296875 l 2 - 338.116210938 211.3671875 340.309570312 211.72265625 341.697265625 211.72265625 c 0 - 344.2890625 211.72265625 348.142578125 210.556640625 350.299804688 209.120117188 c 2 - 368.509765625 196.98046875 l 2 - 370.665039062 195.541015625 374.517578125 194.373046875 377.109375 194.373046875 c 0 - 379.12890625 194.373046875 382.234375 195.106445312 384.040039062 196.009765625 c 2 - 399.4296875 203.709960938 l 2 - 404.6796875 206.330078125 408 211.700195312 408 217.5703125 c 2 - 408 224.5 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" g l o b e hyphen a f r i c a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" G l o b e hyphen A f r i c a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" G l o b e hyphen a f r i c a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" G L O B E hyphen A F R I C A -EndChar - -StartChar: globe-americas -Encoding: 62845 62845 738 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 384.969726562 440 496 328.969726562 496 192 c 0 - 496 55.0302734375 384.969726562 -56 248 -56 c 0 - 111.030273438 -56 0 55.0302734375 0 192 c 0 - 0 328.969726562 111.030273438 440 248 440 c 0 -330.290039062 82.400390625 m 0 - 337.859375 89.9287109375 344.006835938 104.704101562 344.009765625 115.379882812 c 2 - 344.009765625 115.384765625 l 2 - 344.009765625 122.357421875 340.009765625 132.018554688 335.080078125 136.950195312 c 2 - 321.389648438 150.639648438 l 2 - 315.379882812 156.639648438 307.25 160.009765625 298.759765625 160.009765625 c 2 - 232.009765625 160.009765625 l 1 - 222.599609375 164.719726562 210.530273438 192.009765625 200.009765625 192.009765625 c 0 - 189.490234375 192.009765625 179.110351562 194.459960938 169.700195312 199.169921875 c 2 - 158.620117188 204.709960938 l 2 - 154.5703125 206.740234375 152.009765625 210.870117188 152.009765625 215.400390625 c 2 - 152.009765625 215.403320312 l 2 - 152.009765625 220.157226562 155.669921875 225.236328125 160.1796875 226.740234375 c 2 - 191.349609375 237.129882812 l 2 - 192.708007812 237.58203125 194.97265625 237.948242188 196.404296875 237.948242188 c 0 - 199.705078125 237.948242188 204.407226562 236.193359375 206.900390625 234.030273438 c 2 - 216.1796875 225.969726562 l 2 - 217.629882812 224.709960938 219.490234375 224.009765625 221.419921875 224.009765625 c 2 - 227.059570312 224.009765625 l 2 - 233 224.009765625 236.870117188 230.26953125 234.209960938 235.58984375 c 2 - 218.620117188 266.780273438 l 2 - 218.155273438 267.711914062 217.779296875 269.3125 217.779296875 270.352539062 c 0 - 217.779296875 272.21875 218.86328125 274.788085938 220.200195312 276.08984375 c 2 - 230.120117188 285.740234375 l 2 - 231.620117188 287.200195312 233.620117188 288.009765625 235.700195312 288.009765625 c 2 - 244.690429688 288.009765625 l 1 - 244.693359375 288.009765625 l 2 - 246.521484375 288.009765625 249.055664062 289.05859375 250.349609375 290.349609375 c 2 - 258.349609375 298.349609375 l 2 - 261.469726562 301.469726562 261.469726562 306.540039062 258.349609375 309.66015625 c 2 - 253.66015625 314.349609375 l 2 - 250.540039062 317.469726562 250.540039062 322.540039062 253.66015625 325.66015625 c 2 - 264 336 l 1 - 268.690429688 340.6796875 l 2 - 274.940429688 346.9296875 274.940429688 357.059570312 268.690429688 363.309570312 c 2 - 240.389648438 391.610351562 l 1 - 232.120117188 391.299804688 223.990234375 390.48046875 216 389.190429688 c 1 - 216 377.889648438 l 2 - 216 365.990234375 203.48046875 358.259765625 192.83984375 363.580078125 c 2 - 168.830078125 375.58984375 l 1 - 122.990234375 355.740234375 86.099609375 319.200195312 65.6298828125 273.700195312 c 1 - 75.5595703125 258.98046875 90.83984375 236.330078125 100.219726562 222.559570312 c 0 - 104.513671875 216.234375 112.604492188 206.942382812 118.280273438 201.8203125 c 2 - 119.080078125 201.099609375 l 2 - 128.629882812 192.490234375 139.25 185.129882812 150.73046875 179.349609375 c 0 - 164.73046875 172.299804688 185.169921875 161.190429688 199.540039062 153.240234375 c 0 - 209.73046875 147.610351562 216 136.91015625 216 125.26953125 c 2 - 216 93.259765625 l 2 - 216 84.76953125 219.370117188 76.6298828125 225.370117188 70.6298828125 c 0 - 240.360351562 55.6396484375 249.690429688 32 248 19.3798828125 c 2 - 248 -8 l 1 - 262.650390625 -8 276.889648438 -6.3095703125 290.650390625 -3.3095703125 c 1 - 308.040039062 43.5400390625 l 2 - 310.080078125 49.0302734375 311.299804688 54.75 312.809570312 60.41015625 c 0 - 313.879882812 64.419921875 315.990234375 68.1201171875 318.98046875 71.1201171875 c 0 - 322.299804688 74.4501953125 326.389648438 78.51953125 330.290039062 82.400390625 c 0 -417 173.75 m 2 - 446.1796875 166.459960938 l 1 - 447.259765625 174.83984375 448 183.330078125 448 192 c 0 - 448 224.129882812 440.200195312 254.41015625 426.6796875 281.330078125 c 1 - 413.700195312 274.83984375 l 2 - 409.959960938 272.98046875 406.780273438 270.16015625 404.459960938 266.690429688 c 2 - 384.870117188 237.309570312 l 2 - 382.642578125 233.973632812 380.834960938 228.010742188 380.834960938 224 c 0 - 380.834960938 219.989257812 382.642578125 214.026367188 384.870117188 210.690429688 c 2 - 402.849609375 183.719726562 l 2 - 406.16015625 178.75 411.209960938 175.200195312 417 173.75 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" g l o b e hyphen a m e r i c a s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" G l o b e hyphen A m e r i c a s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" G l o b e hyphen a m e r i c a s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" G L O B E hyphen A M E R I C A S -EndChar - -StartChar: globe-asia -Encoding: 62846 62846 739 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 384.969726562 440 496 328.969726562 496 192 c 0 - 496 55.0302734375 384.969726562 -56 248 -56 c 0 - 111.030273438 -56 0 55.0302734375 0 192 c 0 - 0 328.969726562 111.030273438 440 248 440 c 0 -236.66015625 199.76953125 m 2 - 254.030273438 228.719726562 l 2 - 255.830078125 231.709960938 260.23046875 231.540039062 261.790039062 228.419921875 c 0 - 263.139648438 225.709960938 265.91015625 224 268.940429688 224 c 2 - 272 224 l 2 - 276.419921875 224 280 227.580078125 280 232 c 2 - 280 310.120117188 l 2 - 280 316.1796875 276.580078125 321.719726562 271.16015625 324.4296875 c 2 - 260.330078125 329.83984375 l 2 - 254.83984375 332.58984375 254.360351562 340.240234375 259.469726562 343.650390625 c 2 - 309.629882812 382.1796875 l 1 - 290.200195312 388.490234375 269.509765625 392 248 392 c 0 - 137.719726562 392 48 302.280273438 48 192 c 0 - 48 181.080078125 49.1201171875 170.450195312 50.8095703125 160.009765625 c 1 - 113.379882812 160.009765625 l 2 - 117.620117188 160.009765625 121.690429688 161.700195312 124.690429688 164.700195312 c 2 - 144.16015625 184.16015625 l 2 - 148.01953125 188.01953125 154.530273438 186.959960938 156.969726562 182.080078125 c 2 - 179.58984375 136.849609375 l 2 - 182.299804688 131.419921875 187.83984375 128 193.900390625 128 c 2 - 200.009765625 128 l 2 - 208.849609375 128 216.009765625 135.16015625 216.009765625 144 c 2 - 216.009765625 153.370117188 l 2 - 216.009765625 157.610351562 214.3203125 161.6796875 211.3203125 164.6796875 c 2 - 205.66015625 170.33984375 l 2 - 202.540039062 173.459960938 202.540039062 178.530273438 205.66015625 181.650390625 c 2 - 211.3203125 187.309570312 l 2 - 214.3203125 190.309570312 218.389648438 192 222.629882812 192 c 2 - 222.940429688 192 l 2 - 228.559570312 192 233.76953125 194.950195312 236.66015625 199.76953125 c 2 -408 89.5703125 m 2 - 407.990234375 114.169921875 l 2 - 407.990234375 118.41015625 406.299804688 122.48046875 403.299804688 125.48046875 c 2 - 391.389648438 137.389648438 l 2 - 389.889648438 138.889648438 389.049804688 140.9296875 389.049804688 143.049804688 c 2 - 389.049804688 155.98046875 l 2 - 389.049804688 158.190429688 387.259765625 159.98046875 385.049804688 159.98046875 c 2 - 378.990234375 159.98046875 l 2 - 377.209960938 159.98046875 375.650390625 158.809570312 375.150390625 157.099609375 c 2 - 370.950195312 142.629882812 l 2 - 370.459960938 140.9296875 368.889648438 139.75 367.110351562 139.75 c 2 - 363.309570312 139.75 l 2 - 361.838867188 139.750976562 360.186523438 140.852539062 359.620117188 142.209960938 c 2 - 354.26953125 155.059570312 l 2 - 353.030273438 158.049804688 350.110351562 159.990234375 346.879882812 159.990234375 c 2 - 334.790039062 159.990234375 l 1 - 334.778320312 159.990234375 l 2 - 333.370117188 159.990234375 331.296875 159.327148438 330.150390625 158.509765625 c 2 - 306.440429688 141.620117188 l 2 - 304.709960938 140.389648438 302.830078125 139.360351562 300.849609375 138.5703125 c 2 - 261.509765625 122.830078125 l 2 - 258.469726562 121.610351562 256.48046875 118.669921875 256.48046875 115.400390625 c 2 - 256.48046875 105.200195312 l 1 - 256.48046875 105.197265625 l 2 - 256.48046875 103.368164062 257.528320312 100.833984375 258.8203125 99.5400390625 c 2 - 270.73046875 87.6298828125 l 2 - 273.73046875 84.6298828125 277.799804688 82.9404296875 282.040039062 82.9404296875 c 2 - 292.379882812 82.9404296875 l 2 - 293.690429688 82.9404296875 294.990234375 83.099609375 296.259765625 83.419921875 c 2 - 317.530273438 88.740234375 l 2 - 319.294921875 89.181640625 322.204101562 89.5390625 324.0234375 89.5390625 c 0 - 330.143554688 89.5390625 338.622070312 86.02734375 342.950195312 81.7001953125 c 2 - 355.959960938 68.6904296875 l 2 - 358.959960938 65.6904296875 363.030273438 64 367.26953125 64 c 2 - 382.4296875 64 l 2 - 386.669921875 64 390.740234375 65.6904296875 393.740234375 68.6904296875 c 2 - 403.309570312 78.259765625 l 2 - 406.309570312 81.259765625 408 85.330078125 408 89.5703125 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" g l o b e hyphen a s i a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" G l o b e hyphen a s i a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" G L O B E hyphen A S I A -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" G l o b e hyphen A s i a -EndChar - -StartChar: grimace -Encoding: 62847 62847 740 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -144 48 m 1 - 144 88 l 1 - 104 88 l 1 - 104 80 l 2 - 104 62.2998046875 118.299804688 48 136 48 c 2 - 144 48 l 1 -144 104 m 1 - 144 144 l 1 - 136 144 l 2 - 118.299804688 144 104 129.700195312 104 112 c 2 - 104 104 l 1 - 144 104 l 1 -136 240 m 0 - 136 222.299804688 150.299804688 208 168 208 c 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 -208 48 m 1 - 208 88 l 1 - 160 88 l 1 - 160 48 l 1 - 208 48 l 1 -208 104 m 1 - 208 144 l 1 - 160 144 l 1 - 160 104 l 1 - 208 104 l 1 -272 48 m 1 - 272 88 l 1 - 224 88 l 1 - 224 48 l 1 - 272 48 l 1 -272 104 m 1 - 272 144 l 1 - 224 144 l 1 - 224 104 l 1 - 272 104 l 1 -336 48 m 1 - 336 88 l 1 - 288 88 l 1 - 288 48 l 1 - 336 48 l 1 -336 104 m 1 - 336 144 l 1 - 288 144 l 1 - 288 104 l 1 - 336 104 l 1 -328 208 m 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 -392 80 m 2 - 392 88 l 1 - 352 88 l 1 - 352 48 l 1 - 360 48 l 2 - 377.700195312 48 392 62.2998046875 392 80 c 2 -392 104 m 1 - 392 112 l 2 - 392 129.700195312 377.700195312 144 360 144 c 2 - 352 144 l 1 - 352 104 l 1 - 392 104 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" g r i m a c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" G r i m a c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" G R I M A C E -EndChar - -StartChar: grin -Encoding: 62848 62848 741 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -328 272 m 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 -168 272 m 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 -248 16 m 0 - 308.599609375 16 382.5 54.2998046875 391.799804688 109.299804688 c 0 - 393.700195312 121.099609375 382.400390625 130.900390625 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.5 130.900390625 102.200195312 121.099609375 104.200195312 109.299804688 c 0 - 113.5 54.2998046875 187.400390625 16 248 16 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" g r i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" G r i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" G R I N -EndChar - -StartChar: grin-alt -Encoding: 62849 62849 742 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -311.700195312 311.299804688 m 0 - 299.299804688 292.900390625 296.5 274.400390625 296 256 c 0 - 296.599609375 237.599609375 299.299804688 219.099609375 311.700195312 200.700195312 c 0 - 319.700195312 189 336.799804688 189.299804688 344.400390625 200.700195312 c 0 - 356.799804688 219.099609375 359.599609375 237.599609375 360.099609375 256 c 0 - 359.5 274.400390625 356.799804688 292.900390625 344.400390625 311.299804688 c 0 - 336.400390625 323 319.299804688 322.700195312 311.700195312 311.299804688 c 0 -151.700195312 311.299804688 m 0 - 139.299804688 292.900390625 136.5 274.400390625 136 256 c 0 - 136.599609375 237.599609375 139.299804688 219.099609375 151.700195312 200.700195312 c 0 - 159.700195312 189 176.799804688 189.299804688 184.400390625 200.700195312 c 0 - 196.799804688 219.099609375 199.599609375 237.599609375 200.099609375 256 c 0 - 199.5 274.400390625 196.799804688 292.900390625 184.400390625 311.299804688 c 0 - 176.400390625 323 159.299804688 322.700195312 151.700195312 311.299804688 c 0 -248 16 m 0 - 308.599609375 16 382.5 54.2998046875 391.799804688 109.299804688 c 0 - 393.700195312 121.099609375 382.5 130.900390625 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.5 130.900390625 102.200195312 121.099609375 104.200195312 109.299804688 c 0 - 113.5 54.2998046875 187.400390625 16 248 16 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" g r i n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" G r i n hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" G r i n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" G R I N hyphen A L T -EndChar - -StartChar: grin-beam -Encoding: 62850 62850 743 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -328 296 m 0 - 304.200195312 296 275.299804688 266.700195312 272.200195312 224.599609375 c 0 - 271.5 216.099609375 283 212.799804688 287.099609375 220.099609375 c 2 - 296.599609375 237.099609375 l 2 - 304.299804688 250.799804688 315.799804688 258.700195312 328.099609375 258.700195312 c 0 - 340.400390625 258.700195312 351.900390625 250.799804688 359.599609375 237.099609375 c 2 - 369.099609375 220.099609375 l 2 - 373.200195312 212.700195312 384.700195312 216 384 224.599609375 c 0 - 380.700195312 266.700195312 351.799804688 296 328 296 c 0 -168 296 m 0 - 144.200195312 296 115.299804688 266.700195312 112.200195312 224.599609375 c 0 - 111.5 216.099609375 122.900390625 212.700195312 127.099609375 220.099609375 c 2 - 136.599609375 237.099609375 l 2 - 144.299804688 250.799804688 155.799804688 258.700195312 168.099609375 258.700195312 c 0 - 180.400390625 258.700195312 191.900390625 250.799804688 199.599609375 237.099609375 c 2 - 209.099609375 220.099609375 l 2 - 213.200195312 212.700195312 224.700195312 216 224 224.599609375 c 0 - 220.700195312 266.700195312 191.799804688 296 168 296 c 0 -248 16 m 0 - 308.599609375 16 382.5 54.2998046875 391.799804688 109.299804688 c 0 - 393.700195312 121.099609375 382.5 130.900390625 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.599609375 130.900390625 102.200195312 121.200195312 104.200195312 109.299804688 c 0 - 113.5 54.2998046875 187.400390625 16 248 16 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" g r i n hyphen b e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" G r i n hyphen B e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" G r i n hyphen b e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" G R I N hyphen B E A M -EndChar - -StartChar: grin-beam-sweat -Encoding: 62851 62851 744 -Width: 504 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -456 320 m 0 - 429.5 320 408 341 408 367 c 0 - 408 387 436.5 427.400390625 449.599609375 444.799804688 c 0 - 452.799804688 449.099609375 459.200195312 449.099609375 462.400390625 444.799804688 c 0 - 475.5 427.400390625 504 387 504 367 c 0 - 504 341 482.5 320 456 320 c 0 -456 288 m 0 - 462.799804688 288 469.200195312 289.099609375 475.5 290.599609375 c 1 - 488.599609375 260.400390625 496 227.099609375 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 - 298.299804688 440 345 424.900390625 384.099609375 399.200195312 c 1 - 376.299804688 381.200195312 376 371.400390625 376 367 c 0 - 376 323.400390625 411.900390625 288 456 288 c 0 -328 296 m 0 - 304.200195312 296 275.299804688 266.700195312 272.200195312 224.599609375 c 0 - 271.5 216.099609375 283 212.700195312 287.099609375 220.099609375 c 2 - 296.599609375 237.099609375 l 2 - 304.299804688 250.799804688 315.799804688 258.700195312 328.099609375 258.700195312 c 0 - 340.400390625 258.700195312 351.900390625 250.799804688 359.599609375 237.099609375 c 2 - 369.099609375 220.099609375 l 2 - 373.200195312 212.599609375 384.700195312 216 384 224.599609375 c 0 - 380.700195312 266.700195312 351.799804688 296 328 296 c 0 -168 296 m 0 - 144.200195312 296 115.299804688 266.700195312 112.200195312 224.599609375 c 0 - 111.5 216.099609375 122.900390625 212.700195312 127.099609375 220.099609375 c 2 - 136.599609375 237.099609375 l 2 - 144.299804688 250.799804688 155.799804688 258.700195312 168.099609375 258.700195312 c 0 - 180.400390625 258.700195312 191.900390625 250.799804688 199.599609375 237.099609375 c 2 - 209.099609375 220.099609375 l 2 - 213.200195312 212.599609375 224.700195312 216 224 224.599609375 c 0 - 220.700195312 266.700195312 191.799804688 296 168 296 c 0 -248 16 m 0 - 308.599609375 16 382.5 54.2998046875 391.799804688 109.299804688 c 0 - 393.700195312 121 382.599609375 130.900390625 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.5 130.900390625 102.200195312 121.099609375 104.200195312 109.299804688 c 0 - 113.5 54.2998046875 187.400390625 16 248 16 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" g r i n hyphen b e a m hyphen s w e a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" G r i n hyphen B e a m hyphen S w e a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" G r i n hyphen b e a m hyphen s w e a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" G R I N hyphen B E A M hyphen S W E A T -EndChar - -StartChar: grin-hearts -Encoding: 62852 62852 745 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -90.400390625 264.400390625 m 0 - 82.7001953125 244.200195312 94.2001953125 222.599609375 114.599609375 217.200195312 c 2 - 184.799804688 199 l 2 - 189.400390625 197.799804688 194.099609375 200.5 195.299804688 205 c 2 - 214.700195312 274.900390625 l 2 - 220.299804688 295.200195312 207.299804688 316 185.900390625 319.400390625 c 0 - 167.200195312 322.400390625 149.400390625 309.599609375 144.400390625 291.5 c 2 - 142.400390625 284.400390625 l 1 - 135.299804688 286.299804688 l 2 - 117.099609375 291.099609375 97.099609375 282 90.400390625 264.400390625 c 0 -248 16 m 0 - 308.599609375 16 382.5 54.2998046875 391.799804688 109.299804688 c 0 - 393.700195312 121.099609375 382.5 130.799804688 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.400390625 130.799804688 102.200195312 121.099609375 104.200195312 109.299804688 c 0 - 113.5 54.2998046875 187.400390625 16 248 16 c 0 -381.400390625 217.299804688 m 2 - 401.799804688 222.599609375 413.299804688 244.200195312 405.599609375 264.5 c 0 - 398.900390625 282.099609375 378.900390625 291.099609375 360.700195312 286.400390625 c 2 - 353.599609375 284.5 l 1 - 351.599609375 291.599609375 l 2 - 346.5 309.700195312 328.700195312 322.5 310.099609375 319.5 c 0 - 288.700195312 316.099609375 275.700195312 295.299804688 281.299804688 275 c 2 - 300.700195312 205.099609375 l 2 - 302 200.599609375 306.700195312 197.900390625 311.200195312 199.099609375 c 2 - 381.400390625 217.299804688 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" g r i n hyphen h e a r t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" G r i n hyphen H e a r t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" G r i n hyphen h e a r t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" G R I N hyphen H E A R T S -EndChar - -StartChar: grin-squint -Encoding: 62853 62853 746 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -281.799804688 250.299804688 m 2 - 274.099609375 245.599609375 274.099609375 234.400390625 281.799804688 229.700195312 c 2 - 361.799804688 181.700195312 l 2 - 373.299804688 174.900390625 385.900390625 189.299804688 377.200195312 199.700195312 c 2 - 343.599609375 240 l 1 - 377.200195312 280.299804688 l 2 - 385.799804688 290.599609375 373.400390625 305.200195312 361.799804688 298.299804688 c 2 - 281.799804688 250.299804688 l 2 -118.799804688 280.299804688 m 2 - 152.400390625 240 l 1 - 118.799804688 199.700195312 l 2 - 110.200195312 189.299804688 122.700195312 174.900390625 134.200195312 181.700195312 c 2 - 214.200195312 229.700195312 l 2 - 222 234.400390625 222 245.599609375 214.200195312 250.299804688 c 2 - 134.200195312 298.299804688 l 2 - 122.599609375 305.200195312 110.200195312 290.599609375 118.799804688 280.299804688 c 2 -248 16 m 0 - 308.599609375 16 382.5 54.2998046875 391.799804688 109.299804688 c 0 - 393.700195312 121 382.599609375 130.900390625 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.599609375 130.900390625 102.200195312 121.200195312 104.200195312 109.299804688 c 0 - 113.5 54.2998046875 187.400390625 16 248 16 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" g r i n hyphen s q u i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" G r i n hyphen S q u i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" G r i n hyphen s q u i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" G R I N hyphen S Q U I N T -EndChar - -StartChar: grin-squint-tears -Encoding: 62854 62854 747 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -409.599609375 336.099609375 m 0 - 404 335.299804688 399.299804688 340 400.099609375 345.5 c 0 - 403.400390625 368.099609375 412.099609375 419 426.900390625 433.799804688 c 0 - 446 453 477.599609375 452.700195312 497.200195312 433.099609375 c 0 - 516.799804688 413.5 517.099609375 382.099609375 497.900390625 362.900390625 c 0 - 483.099609375 348.099609375 432.200195312 339.299804688 409.599609375 336.099609375 c 0 -102.400390625 47.900390625 m 0 - 108 48.7001953125 112.700195312 44 111.900390625 38.5 c 0 - 108.599609375 15.900390625 99.900390625 -35 85.099609375 -49.7998046875 c 0 - 65.900390625 -69 34.5 -68.7001953125 14.900390625 -49.099609375 c 0 - -4.7001953125 -29.5 -5 2 14.099609375 21.099609375 c 0 - 28.900390625 35.900390625 79.7998046875 44.7001953125 102.400390625 47.900390625 c 0 -414.099609375 304.400390625 m 0 - 438.099609375 307.900390625 456.200195312 311.799804688 470.599609375 315.900390625 c 1 - 525.400390625 221 512.599609375 97.7001953125 431.400390625 16.599609375 c 0 - 350.200195312 -64.5 226.900390625 -77.400390625 132.099609375 -22.599609375 c 1 - 136.200195312 -8.2001953125 140.200195312 9.900390625 143.599609375 33.900390625 c 0 - 146.5 54.400390625 131.099609375 83.5 97.900390625 79.599609375 c 0 - 73.7998046875 76.099609375 55.7998046875 72.2001953125 41.400390625 68.099609375 c 1 - -13.400390625 163 -0.5 286.299804688 80.599609375 367.400390625 c 0 - 161.799804688 448.5 285.099609375 461.400390625 379.900390625 406.599609375 c 1 - 375.799804688 392.200195312 371.799804688 374.099609375 368.400390625 350.099609375 c 0 - 365.5 329.5 381.099609375 300.5 414.099609375 304.400390625 c 0 -255.700195312 342 m 2 - 233.200195312 251.400390625 l 2 - 231 242.799804688 238.799804688 234.700195312 247.700195312 236.900390625 c 2 - 338.200195312 259.5 l 2 - 351.299804688 262.799804688 349.799804688 281.900390625 336.400390625 283.099609375 c 2 - 284.099609375 287.900390625 l 1 - 279.299804688 340.200195312 l 2 - 278.099609375 353.5 259 355.200195312 255.700195312 342 c 2 -164.799804688 111.700195312 m 2 - 166.099609375 98.2998046875 185.200195312 96.7998046875 188.299804688 110 c 2 - 210.900390625 200.5 l 2 - 213.099609375 209.200195312 205.200195312 217.200195312 196.400390625 215 c 2 - 105.900390625 192.400390625 l 2 - 92.7998046875 189.099609375 94.2998046875 170 107.700195312 168.799804688 c 2 - 160 164 l 1 - 164.799804688 111.700195312 l 2 -380.5 67.5 m 0 - 423.299804688 110.400390625 448.5 189.799804688 416.200195312 235.099609375 c 0 - 409.099609375 245 394.299804688 243.599609375 388.900390625 233.099609375 c 0 - 374.299804688 204.900390625 346.5 169.200195312 312.599609375 135.299804688 c 0 - 278.700195312 101.400390625 243.099609375 73.599609375 214.799804688 59 c 0 - 204.099609375 53.599609375 203 38.7001953125 212.799804688 31.7998046875 c 0 - 227.200195312 21.599609375 244.900390625 17.099609375 263.799804688 17.099609375 c 0 - 304.799804688 17.099609375 351.200195312 38.2001953125 380.5 67.5 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" g r i n hyphen s q u i n t hyphen t e a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" G r i n hyphen S q u i n t hyphen T e a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" G r i n hyphen s q u i n t hyphen t e a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" G R I N hyphen S Q U I N T hyphen T E A R S -EndChar - -StartChar: grin-stars -Encoding: 62855 62855 748 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -94.599609375 279.099609375 m 2 - 88.400390625 278.099609375 85.7001953125 270.5 90.2998046875 265.799804688 c 2 - 115.700195312 241.200195312 l 1 - 109.700195312 206.299804688 l 2 - 108.700195312 200.099609375 115 195.299804688 120.700195312 198.400390625 c 2 - 152 214.700195312 l 1 - 183.200195312 198.5 l 2 - 188.900390625 195.400390625 195.200195312 200.200195312 194.200195312 206.400390625 c 2 - 188.200195312 241.299804688 l 1 - 213.599609375 265.900390625 l 2 - 218.200195312 270.5 215.5 278.099609375 209.299804688 279.099609375 c 2 - 174.400390625 284.099609375 l 1 - 158.900390625 315.700195312 l 2 - 156 321.5 147.900390625 321.5 145 315.700195312 c 2 - 129.5 284.099609375 l 1 - 94.599609375 279.099609375 l 2 -248 16 m 0 - 308.599609375 16 382.5 54.2998046875 391.799804688 109.299804688 c 0 - 393.700195312 121.099609375 382.599609375 130.900390625 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.5 130.799804688 102.200195312 121.099609375 104.200195312 109.299804688 c 0 - 113.5 54.2998046875 187.400390625 16 248 16 c 0 -405.700195312 265.900390625 m 2 - 410.299804688 270.5 407.599609375 278.099609375 401.299804688 279 c 2 - 366.400390625 284 l 1 - 350.900390625 315.599609375 l 2 - 348 321.400390625 339.900390625 321.400390625 337 315.599609375 c 2 - 321.5 284 l 1 - 286.599609375 279 l 2 - 280.400390625 278 277.799804688 270.400390625 282.299804688 265.799804688 c 2 - 307.700195312 241.200195312 l 1 - 301.700195312 206.299804688 l 2 - 300.700195312 200.099609375 307 195.299804688 312.700195312 198.400390625 c 2 - 344 214.700195312 l 1 - 375.299804688 198.5 l 2 - 381 195.400390625 387.299804688 200.200195312 386.299804688 206.400390625 c 2 - 380.299804688 241.299804688 l 1 - 405.700195312 265.900390625 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" g r i n hyphen s t a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" G r i n hyphen s t a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" G R I N hyphen S T A R S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" G r i n hyphen S t a r s -EndChar - -StartChar: grin-tears -Encoding: 62856 62856 749 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -102.400390625 191.900390625 m 0 - 108 192.700195312 112.700195312 188 111.900390625 182.5 c 0 - 108.599609375 159.900390625 99.900390625 109 85.099609375 94.2001953125 c 0 - 65.900390625 75 34.5 75.2998046875 14.900390625 94.900390625 c 0 - -4.7001953125 114.5 -5 146 14.099609375 165.099609375 c 0 - 28.900390625 179.900390625 79.7998046875 188.700195312 102.400390625 191.900390625 c 0 -625.799804688 165.099609375 m 0 - 645 146 644.599609375 114.400390625 625 94.7998046875 c 0 - 605.400390625 75.2001953125 574 74.900390625 554.799804688 94.099609375 c 0 - 540 108.900390625 531.200195312 159.799804688 528 182.400390625 c 0 - 527.200195312 188 532 192.700195312 537.5 191.900390625 c 0 - 560.099609375 188.599609375 611 179.900390625 625.799804688 165.099609375 c 0 -496.400390625 177.900390625 m 0 - 508.200195312 95.599609375 526.299804688 77.5 532.200195312 71.599609375 c 0 - 533.099609375 70.599609375 534.200195312 70 535.200195312 69.099609375 c 0 - 492.5 -5.599609375 412.200195312 -56 320 -56 c 0 - 227.799804688 -56 147.5 -5.599609375 104.799804688 69 c 0 - 105.799804688 69.900390625 106.900390625 70.599609375 107.799804688 71.5 c 0 - 113.700195312 77.5 131.799804688 95.599609375 143.599609375 177.900390625 c 0 - 146.5 198.299804688 131.099609375 227.5 97.900390625 223.599609375 c 0 - 89 222.299804688 81.099609375 220.900390625 73.599609375 219.5 c 1 - 87.2998046875 343.5 192.299804688 440 320 440 c 0 - 447.700195312 440 552.700195312 343.5 566.400390625 219.5 c 1 - 558.900390625 220.900390625 551 222.299804688 542.099609375 223.599609375 c 0 - 515.5 227.400390625 492.599609375 204.5 496.400390625 177.900390625 c 0 -400 296 m 0 - 376.200195312 296 347.299804688 266.700195312 344.200195312 224.599609375 c 0 - 343.5 216.099609375 354.900390625 212.700195312 359.099609375 220.099609375 c 2 - 368.599609375 237.099609375 l 2 - 376.299804688 250.799804688 387.799804688 258.700195312 400.099609375 258.700195312 c 0 - 412.400390625 258.700195312 423.900390625 250.799804688 431.599609375 237.099609375 c 2 - 441.099609375 220.099609375 l 2 - 445.200195312 212.599609375 456.700195312 216 456 224.599609375 c 0 - 452.700195312 266.700195312 423.799804688 296 400 296 c 0 -240 296 m 0 - 216.200195312 296 187.299804688 266.700195312 184.200195312 224.599609375 c 0 - 183.5 216.099609375 194.900390625 212.700195312 199.099609375 220.099609375 c 2 - 208.599609375 237.099609375 l 2 - 216.299804688 250.799804688 227.799804688 258.700195312 240.099609375 258.700195312 c 0 - 252.400390625 258.700195312 263.900390625 250.799804688 271.599609375 237.099609375 c 2 - 281.099609375 220.099609375 l 2 - 285.200195312 212.599609375 296.700195312 216 296 224.599609375 c 0 - 292.700195312 266.700195312 263.799804688 296 240 296 c 0 -320 16 m 0 - 380.599609375 16 454.5 54.2998046875 463.799804688 109.299804688 c 0 - 465.700195312 121.099609375 454.5 130.900390625 443.099609375 127.200195312 c 0 - 412.900390625 117.5 368 112 320 112 c 0 - 272 112 227.099609375 117.5 196.900390625 127.200195312 c 0 - 185.400390625 130.900390625 174.200195312 121 176.200195312 109.299804688 c 0 - 185.5 54.2998046875 259.400390625 16 320 16 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" g r i n hyphen t e a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" G r i n hyphen T e a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" G r i n hyphen t e a r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" G R I N hyphen T E A R S -EndChar - -StartChar: grin-tongue -Encoding: 62857 62857 750 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 85.7001953125 429 -4.7001953125 335 -40 c 1 - 340.599609375 -27.7998046875 344 -14.2998046875 344 0 c 2 - 344 45.5 l 1 - 368.700195312 61.7001953125 387.5 83.599609375 391.799804688 109.299804688 c 0 - 393.700195312 121.099609375 382.5 130.799804688 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.5 130.799804688 102.200195312 121.099609375 104.200195312 109.299804688 c 0 - 108.5 83.599609375 127.299804688 61.7001953125 152 45.5 c 1 - 152 0 l 2 - 152 -14.2998046875 155.400390625 -27.7998046875 161 -40 c 1 - 67 -4.7001953125 0 85.7001953125 0 192 c 0 - 0 329 111 440 248 440 c 0 -168 208 m 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 -328 208 m 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 -293.099609375 73.400390625 m 0 - 293.900390625 73 292.599609375 73.7001953125 312.099609375 64.099609375 c 1 - 312.099609375 0.099609375 l 2 - 312.099609375 -35.5 282.900390625 -64.400390625 247.200195312 -63.900390625 c 0 - 212.099609375 -63.5 184.099609375 -34.2001953125 184.099609375 1 c 2 - 184.099609375 64 l 1 - 203.299804688 73.599609375 202.099609375 73 203 73.400390625 c 0 - 217.400390625 79.900390625 234.099609375 71.2001953125 237.599609375 55.7998046875 c 2 - 239.400390625 48 l 2 - 241.5 38.7998046875 254.599609375 38.7998046875 256.700195312 48 c 2 - 258.5 55.7998046875 l 2 - 262 71.2001953125 278.700195312 79.900390625 293.099609375 73.400390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" g r i n hyphen t o n g u e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" G r i n hyphen T o n g u e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" G r i n hyphen t o n g u e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" G R I N hyphen T O N G U E -EndChar - -StartChar: grin-tongue-squint -Encoding: 62858 62858 751 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -293.099609375 73.400390625 m 0 - 293.900390625 73 292.599609375 73.7001953125 312.099609375 64.099609375 c 1 - 312.099609375 0.099609375 l 2 - 312.099609375 -35.5 282.900390625 -64.400390625 247.200195312 -63.900390625 c 0 - 212.099609375 -63.5 184.099609375 -34.2001953125 184.099609375 1 c 2 - 184.099609375 64 l 1 - 203.299804688 73.599609375 202.099609375 73 203 73.400390625 c 0 - 217.400390625 79.900390625 234.099609375 71.2001953125 237.599609375 55.7998046875 c 2 - 239.400390625 48 l 2 - 241.5 38.7998046875 254.599609375 38.7998046875 256.700195312 48 c 2 - 258.5 55.7998046875 l 2 - 262 71.2001953125 278.700195312 79.900390625 293.099609375 73.400390625 c 0 -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 85.7001953125 429 -4.7001953125 335 -40 c 1 - 340.599609375 -27.7998046875 344 -14.2998046875 344 0 c 2 - 344 45.5 l 1 - 368.700195312 61.7001953125 387.5 83.599609375 391.799804688 109.299804688 c 0 - 393.700195312 121.099609375 382.5 130.900390625 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.400390625 130.799804688 102.200195312 121.099609375 104.200195312 109.299804688 c 0 - 108.5 83.599609375 127.299804688 61.7001953125 152 45.5 c 1 - 152 0 l 2 - 152 -14.2998046875 155.400390625 -27.7998046875 161 -40 c 1 - 67 -4.7001953125 0 85.7001953125 0 192 c 0 - 0 329 111 440 248 440 c 0 -214.200195312 229.700195312 m 2 - 221.900390625 234.400390625 221.900390625 245.599609375 214.200195312 250.299804688 c 2 - 134.200195312 298.299804688 l 2 - 122.599609375 305.200195312 110.200195312 290.599609375 118.799804688 280.299804688 c 2 - 152.400390625 240 l 1 - 118.799804688 199.700195312 l 2 - 110.200195312 189.299804688 122.700195312 174.900390625 134.200195312 181.700195312 c 2 - 214.200195312 229.700195312 l 2 -377.200195312 199.700195312 m 2 - 343.599609375 240 l 1 - 377.200195312 280.299804688 l 2 - 385.700195312 290.599609375 373.5 305.200195312 361.799804688 298.299804688 c 2 - 281.799804688 250.299804688 l 2 - 274 245.599609375 274 234.400390625 281.799804688 229.700195312 c 2 - 361.799804688 181.700195312 l 2 - 373.299804688 174.900390625 385.900390625 189.299804688 377.200195312 199.700195312 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" g r i n hyphen t o n g u e hyphen s q u i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" G r i n hyphen T o n g u e hyphen S q u i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" G r i n hyphen t o n g u e hyphen s q u i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" G R I N hyphen T O N G U E hyphen S Q U I N T -EndChar - -StartChar: grin-tongue-wink -Encoding: 62859 62859 752 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -344 264 m 0 - 357.299804688 264 368 253.299804688 368 240 c 0 - 368 226.700195312 357.299804688 216 344 216 c 0 - 330.700195312 216 320 226.700195312 320 240 c 0 - 320 253.299804688 330.700195312 264 344 264 c 0 -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 85.7001953125 429 -4.7001953125 335 -40 c 1 - 340.599609375 -27.7998046875 344 -14.2998046875 344 0 c 2 - 344 45.5 l 1 - 368.700195312 61.7001953125 387.5 83.599609375 391.799804688 109.299804688 c 0 - 393.700195312 121.099609375 382.599609375 130.900390625 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 - 113.5 130.799804688 102.200195312 121.099609375 104.200195312 109.299804688 c 0 - 108.5 83.599609375 127.299804688 61.7001953125 152 45.5 c 1 - 152 0 l 2 - 152 -14.2998046875 155.400390625 -27.7998046875 161 -40 c 1 - 67 -4.7001953125 0 85.7001953125 0 192 c 0 - 0 329 111 440 248 440 c 0 -192 215 m 2 - 200.400390625 207.599609375 213.599609375 214.700195312 212 225.799804688 c 0 - 208 251 177.799804688 267.900390625 152.099609375 267.900390625 c 0 - 126.400390625 267.900390625 96.2001953125 251 92.2001953125 225.799804688 c 0 - 90.400390625 214.700195312 103.5 207.599609375 112 215 c 2 - 121.5 223.5 l 2 - 136.299804688 236.700195312 167.700195312 236.700195312 182.5 223.5 c 2 - 192 215 l 2 -344 176 m 0 - 379.299804688 176 408 204.700195312 408 240 c 0 - 408 275.299804688 379.299804688 304 344 304 c 0 - 308.700195312 304 280 275.299804688 280 240 c 0 - 280 204.700195312 308.700195312 176 344 176 c 0 -293.099609375 73.400390625 m 0 - 293.900390625 73 292.599609375 73.7001953125 312.099609375 64.099609375 c 1 - 312.099609375 0.099609375 l 2 - 312.099609375 -35.5 282.900390625 -64.400390625 247.200195312 -63.900390625 c 0 - 212.099609375 -63.5 184.099609375 -34.2001953125 184.099609375 1 c 2 - 184.099609375 64 l 1 - 203.299804688 73.599609375 202.099609375 73 203 73.400390625 c 0 - 217.400390625 79.900390625 234.099609375 71.2001953125 237.599609375 55.7998046875 c 2 - 239.400390625 48 l 2 - 241.5 38.7998046875 254.599609375 38.7998046875 256.700195312 48 c 2 - 258.5 55.7998046875 l 2 - 262 71.2001953125 278.700195312 79.900390625 293.099609375 73.400390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" g r i n hyphen t o n g u e hyphen w i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" G r i n hyphen T o n g u e hyphen W i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" G r i n hyphen t o n g u e hyphen w i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" G R I N hyphen T O N G U E hyphen W I N K -EndChar - -StartChar: grin-wink -Encoding: 62860 62860 753 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 192 m 0 - 0 329 111 440 248 440 c 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 -200 240 m 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 - 185.700195312 208 200 222.299804688 200 240 c 0 -368 215 m 2 - 376.5 207.599609375 389.599609375 214.799804688 388 225.799804688 c 0 - 384 251 353.799804688 267.900390625 328.099609375 267.900390625 c 0 - 302.400390625 267.900390625 272.200195312 251 268.200195312 225.799804688 c 0 - 266.400390625 214.599609375 279.700195312 207.599609375 288 215 c 2 - 297.5 223.5 l 2 - 312.299804688 236.700195312 343.700195312 236.700195312 358.5 223.5 c 2 - 368 215 l 2 -124.900390625 127.200195312 m 0 - 113.5 130.900390625 102.200195312 121.200195312 104.200195312 109.299804688 c 0 - 113.5 54.2998046875 187.400390625 16 248 16 c 0 - 308.599609375 16 382.599609375 54.2998046875 391.799804688 109.299804688 c 0 - 393.700195312 121.200195312 382.400390625 130.900390625 371.099609375 127.200195312 c 0 - 340.900390625 117.5 296 112 248 112 c 0 - 200 112 155.099609375 117.5 124.900390625 127.200195312 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" g r i n hyphen w i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" G r i n hyphen W i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" G r i n hyphen w i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" G R I N hyphen W I N K -EndChar - -StartChar: grip-horizontal -Encoding: 62861 62861 754 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 160 m 2 - 113.669921875 160 128 145.669921875 128 128 c 2 - 128 64 l 2 - 128 46.330078125 113.669921875 32 96 32 c 2 - 32 32 l 2 - 14.330078125 32 0 46.330078125 0 64 c 2 - 0 128 l 2 - 0 145.669921875 14.330078125 160 32 160 c 2 - 96 160 l 2 -256 160 m 2 - 273.669921875 160 288 145.669921875 288 128 c 2 - 288 64 l 2 - 288 46.330078125 273.669921875 32 256 32 c 2 - 192 32 l 2 - 174.330078125 32 160 46.330078125 160 64 c 2 - 160 128 l 2 - 160 145.669921875 174.330078125 160 192 160 c 2 - 256 160 l 2 -416 160 m 2 - 433.669921875 160 448 145.669921875 448 128 c 2 - 448 64 l 2 - 448 46.330078125 433.669921875 32 416 32 c 2 - 352 32 l 2 - 334.330078125 32 320 46.330078125 320 64 c 2 - 320 128 l 2 - 320 145.669921875 334.330078125 160 352 160 c 2 - 416 160 l 2 -96 352 m 2 - 113.669921875 352 128 337.669921875 128 320 c 2 - 128 256 l 2 - 128 238.330078125 113.669921875 224 96 224 c 2 - 32 224 l 2 - 14.330078125 224 0 238.330078125 0 256 c 2 - 0 320 l 2 - 0 337.669921875 14.330078125 352 32 352 c 2 - 96 352 l 2 -256 352 m 2 - 273.669921875 352 288 337.669921875 288 320 c 2 - 288 256 l 2 - 288 238.330078125 273.669921875 224 256 224 c 2 - 192 224 l 2 - 174.330078125 224 160 238.330078125 160 256 c 2 - 160 320 l 2 - 160 337.669921875 174.330078125 352 192 352 c 2 - 256 352 l 2 -416 352 m 2 - 433.669921875 352 448 337.669921875 448 320 c 2 - 448 256 l 2 - 448 238.330078125 433.669921875 224 416 224 c 2 - 352 224 l 2 - 334.330078125 224 320 238.330078125 320 256 c 2 - 320 320 l 2 - 320 337.669921875 334.330078125 352 352 352 c 2 - 416 352 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" g r i p hyphen h o r i z o n t a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" G r i p hyphen H o r i z o n t a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" G r i p hyphen h o r i z o n t a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" G R I P hyphen H O R I Z O N T A L -EndChar - -StartChar: grip-vertical -Encoding: 62862 62862 755 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 416 m 2 - 113.669921875 416 128 401.669921875 128 384 c 2 - 128 320 l 2 - 128 302.330078125 113.669921875 288 96 288 c 2 - 32 288 l 2 - 14.330078125 288 0 302.330078125 0 320 c 2 - 0 384 l 2 - 0 401.669921875 14.330078125 416 32 416 c 2 - 96 416 l 2 -96 256 m 2 - 113.669921875 256 128 241.669921875 128 224 c 2 - 128 160 l 2 - 128 142.330078125 113.669921875 128 96 128 c 2 - 32 128 l 2 - 14.330078125 128 0 142.330078125 0 160 c 2 - 0 224 l 2 - 0 241.669921875 14.330078125 256 32 256 c 2 - 96 256 l 2 -96 96 m 2 - 113.669921875 96 128 81.669921875 128 64 c 2 - 128 0 l 2 - 128 -17.669921875 113.669921875 -32 96 -32 c 2 - 32 -32 l 2 - 14.330078125 -32 0 -17.669921875 0 0 c 2 - 0 64 l 2 - 0 81.669921875 14.330078125 96 32 96 c 2 - 96 96 l 2 -288 416 m 2 - 305.669921875 416 320 401.669921875 320 384 c 2 - 320 320 l 2 - 320 302.330078125 305.669921875 288 288 288 c 2 - 224 288 l 2 - 206.330078125 288 192 302.330078125 192 320 c 2 - 192 384 l 2 - 192 401.669921875 206.330078125 416 224 416 c 2 - 288 416 l 2 -288 256 m 2 - 305.669921875 256 320 241.669921875 320 224 c 2 - 320 160 l 2 - 320 142.330078125 305.669921875 128 288 128 c 2 - 224 128 l 2 - 206.330078125 128 192 142.330078125 192 160 c 2 - 192 224 l 2 - 192 241.669921875 206.330078125 256 224 256 c 2 - 288 256 l 2 -288 96 m 2 - 305.669921875 96 320 81.669921875 320 64 c 2 - 320 0 l 2 - 320 -17.669921875 305.669921875 -32 288 -32 c 2 - 224 -32 l 2 - 206.330078125 -32 192 -17.669921875 192 0 c 2 - 192 64 l 2 - 192 81.669921875 206.330078125 96 224 96 c 2 - 288 96 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" g r i p hyphen v e r t i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" G r i p hyphen V e r t i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" G r i p hyphen v e r t i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" G R I P hyphen V E R T I C A L -EndChar - -StartChar: headphones-alt -Encoding: 62863 62863 756 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -160 160 m 2 - 177.669921875 160 192 145.650390625 192 127.940429688 c 2 - 192 0.0595703125 l 2 - 192 -17.6396484375 177.669921875 -32 160 -32 c 2 - 144 -32 l 2 - 108.650390625 -32 80 -3.2900390625 80 32.1201171875 c 2 - 80 95.8798828125 l 2 - 80 131.299804688 108.650390625 160 144 160 c 2 - 160 160 l 2 -368 160 m 2 - 403.349609375 160 432 131.290039062 432 95.8798828125 c 2 - 432 32.1201171875 l 2 - 432 -3.2900390625 403.349609375 -32 368 -32 c 2 - 352 -32 l 2 - 334.330078125 -32 320 -17.6396484375 320 0.0595703125 c 2 - 320 127.940429688 l 2 - 320 145.650390625 334.330078125 160 352 160 c 2 - 368 160 l 2 -256 416 m 0 - 399.08984375 416 507.4296875 296.870117188 512 160 c 1 - 512 48 l 2 - 512 39.16015625 504.83984375 32 496 32 c 2 - 480 32 l 2 - 471.16015625 32 464 39.16015625 464 48 c 2 - 464 160 l 2 - 464 274.669921875 370.669921875 367.799804688 256 367.8203125 c 0 - 141.330078125 367.799804688 48 274.669921875 48 160 c 2 - 48 48 l 2 - 48 39.16015625 40.83984375 32 32 32 c 2 - 16 32 l 2 - 7.16015625 32 0 39.16015625 0 48 c 2 - 0 160 l 1 - 4.5703125 296.870117188 112.91015625 416 256 416 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" h e a d p h o n e s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" H e a d p h o n e s hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" H e a d p h o n e s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" H E A D P H O N E S hyphen A L T -EndChar - -StartChar: headset -Encoding: 62864 62864 757 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 240 m 2 - 192 128 l 2 - 192 110.330078125 177.669921875 96 160 96 c 2 - 144 96 l 2 - 108.650390625 96 80 124.650390625 80 160 c 2 - 80 208 l 2 - 80 243.349609375 108.650390625 272 144 272 c 2 - 160 272 l 2 - 177.669921875 272 192 257.669921875 192 240 c 2 -368 96 m 2 - 352 96 l 2 - 334.330078125 96 320 110.330078125 320 128 c 2 - 320 240 l 2 - 320 257.669921875 334.330078125 272 352 272 c 2 - 368 272 l 2 - 403.349609375 272 432 243.349609375 432 208 c 2 - 432 160 l 2 - 432 124.650390625 403.349609375 96 368 96 c 2 -256 448 m 0 - 398.8203125 448 507.419921875 329.169921875 512 192 c 1 - 512 26.2802734375 l 2 - 512 -23.580078125 471.580078125 -64 421.719726562 -64 c 2 - 240 -64 l 2 - 213.490234375 -64 192 -42.509765625 192 -16 c 0 - 192 10.509765625 213.490234375 32 240 32 c 2 - 272 32 l 2 - 298.509765625 32 320 10.509765625 320 -16 c 1 - 421.719726562 -16 l 2 - 445.0703125 -16 464 2.9296875 464 26.2802734375 c 2 - 464 26.2802734375 463.959960938 189.5703125 463.879882812 192 c 2 - 464 192 l 1 - 464 306.690429688 370.690429688 400 256 400 c 0 - 141.309570312 400 48 306.690429688 48 192 c 2 - 48 176 l 2 - 48 167.16015625 40.83984375 160 32 160 c 2 - 16 160 l 2 - 7.16015625 160 0 167.16015625 0 176 c 2 - 0 192 l 1 - 4.580078125 329.169921875 113.1796875 448 256 448 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" h e a d s e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" H e a d s e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" H E A D S E T -EndChar - -StartChar: highlighter -Encoding: 62865 62865 758 -Width: 544 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 -31.98046875 m 1 - 68.330078125 38.490234375 l 1 - 135.370117188 -28.5498046875 l 1 - 99.919921875 -64 l 1 - 0 -31.98046875 l 1 -124.610351562 208.030273438 m 2 - 166.129882812 243.469726562 l 1 - 339.469726562 70.1298828125 l 1 - 303.919921875 28.490234375 l 2 - 294.419921875 17.7197265625 279.5 13.509765625 265.76953125 17.7099609375 c 2 - 223.030273438 30.7900390625 l 1 - 172.169921875 -20.0703125 l 1 - 75.9404296875 76.16015625 l 1 - 126.870117188 127.099609375 l 1 - 113.8203125 169.9296875 l 2 - 112.943359375 172.80859375 112.231445312 177.5859375 112.231445312 180.594726562 c 0 - 112.231445312 189.708007812 117.77734375 201.999023438 124.610351562 208.030273438 c 2 -527.919921875 368.73046875 m 2 - 548.419921875 348.23046875 549.450195312 315.33984375 530.26953125 293.599609375 c 2 - 360.3203125 94.5400390625 l 1 - 190.549804688 264.3203125 l 1 - 389.599609375 434.280273438 l 2 - 411.33984375 453.450195312 444.23046875 452.419921875 464.719726562 431.9296875 c 2 - 527.919921875 368.73046875 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" h i g h l i g h t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" H i g h l i g h t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" H I G H L I G H T E R -EndChar - -StartChar: hot-tub -Encoding: 62867 62867 759 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -414.209960938 270.349609375 m 0 - 411.059570312 295.740234375 399.599609375 318.3203125 382.240234375 332.490234375 c 0 - 354.509765625 355.120117188 336.450195312 390.540039062 332.110351562 429.650390625 c 0 - 331.01953125 439.4296875 338.599609375 448 348.110351562 448 c 2 - 364.23046875 448 l 2 - 372.219726562 448 378.959960938 441.860351562 379.969726562 433.66015625 c 0 - 383.129882812 408.259765625 394.580078125 385.6796875 411.950195312 371.509765625 c 0 - 439.6796875 348.879882812 457.740234375 313.459960938 462.080078125 274.349609375 c 0 - 463.16015625 264.5703125 455.58984375 256 446.080078125 256 c 2 - 429.959960938 256 l 2 - 421.959960938 256 415.23046875 262.139648438 414.209960938 270.349609375 c 0 -306.209960938 270.349609375 m 0 - 303.059570312 295.740234375 291.599609375 318.3203125 274.240234375 332.490234375 c 0 - 246.509765625 355.120117188 228.450195312 390.540039062 224.110351562 429.650390625 c 0 - 223.01953125 439.4296875 230.599609375 448 240.110351562 448 c 2 - 256.23046875 448 l 2 - 264.219726562 448 270.959960938 441.860351562 271.969726562 433.66015625 c 0 - 275.129882812 408.259765625 286.580078125 385.6796875 303.950195312 371.509765625 c 0 - 331.6796875 348.879882812 349.740234375 313.459960938 354.080078125 274.349609375 c 0 - 355.16015625 264.5703125 347.58984375 256 338.080078125 256 c 2 - 321.959960938 256 l 2 - 313.959960938 256 307.23046875 262.139648438 306.209960938 270.349609375 c 0 -480 192 m 2 - 497.669921875 192 512 177.669921875 512 160 c 2 - 512 0 l 2 - 512 -35.349609375 483.349609375 -64 448 -64 c 2 - 64 -64 l 2 - 28.650390625 -64 0 -35.349609375 0 0 c 2 - 0 224 l 2 - 0 259.349609375 28.650390625 288 64 288 c 2 - 106.669921875 288 l 1 - 106.672851562 288 l 2 - 118.448242188 288 135.650390625 282.265625 145.0703125 275.200195312 c 2 - 256 192 l 1 - 480 192 l 2 -128 8 m 2 - 128 120 l 2 - 128 124.419921875 124.419921875 128 120 128 c 2 - 104 128 l 2 - 99.580078125 128 96 124.419921875 96 120 c 2 - 96 8 l 2 - 96 3.580078125 99.580078125 0 104 0 c 2 - 120 0 l 2 - 124.419921875 0 128 3.580078125 128 8 c 2 -224 8 m 2 - 224 120 l 2 - 224 124.419921875 220.419921875 128 216 128 c 2 - 200 128 l 2 - 195.580078125 128 192 124.419921875 192 120 c 2 - 192 8 l 2 - 192 3.580078125 195.580078125 0 200 0 c 2 - 216 0 l 2 - 220.419921875 0 224 3.580078125 224 8 c 2 -320 8 m 2 - 320 120 l 2 - 320 124.419921875 316.419921875 128 312 128 c 2 - 296 128 l 2 - 291.580078125 128 288 124.419921875 288 120 c 2 - 288 8 l 2 - 288 3.580078125 291.580078125 0 296 0 c 2 - 312 0 l 2 - 316.419921875 0 320 3.580078125 320 8 c 2 -416 8 m 2 - 416 120 l 2 - 416 124.419921875 412.419921875 128 408 128 c 2 - 392 128 l 2 - 387.580078125 128 384 124.419921875 384 120 c 2 - 384 8 l 2 - 384 3.580078125 387.580078125 0 392 0 c 2 - 408 0 l 2 - 412.419921875 0 416 3.580078125 416 8 c 2 -64 320 m 0 - 28.650390625 320 0 348.650390625 0 384 c 0 - 0 419.349609375 28.650390625 448 64 448 c 0 - 99.349609375 448 128 419.349609375 128 384 c 0 - 128 348.650390625 99.349609375 320 64 320 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" h o t hyphen t u b -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" H o t hyphen T u b -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" H o t hyphen t u b -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" H O T hyphen T U B -EndChar - -StartChar: hotel -Encoding: 62868 62868 760 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -560 384 m 2 - 544 384 l 1 - 544 0 l 1 - 560 0 l 2 - 568.83984375 0 576 -7.16015625 576 -16 c 2 - 576 -48 l 2 - 576 -56.83984375 568.83984375 -64 560 -64 c 2 - 320 -64 l 1 - 320 16 l 2 - 320 24.7998046875 312.799804688 32 304 32 c 2 - 272 32 l 2 - 263.200195312 32 256 24.7998046875 256 16 c 2 - 256 -64 l 1 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 31.98046875 0 l 1 - 31.98046875 384 l 1 - 16 384 l 2 - 7.16015625 384 0 391.16015625 0 400 c 2 - 0 432 l 2 - 0 440.83984375 7.16015625 448 16 448 c 2 - 560 448 l 2 - 568.83984375 448 576 440.83984375 576 432 c 2 - 576 400 l 2 - 576 391.16015625 568.83984375 384 560 384 c 2 -256 339.200195312 m 2 - 256 300.799804688 l 2 - 256 294.400390625 262.400390625 288 268.799804688 288 c 2 - 307.200195312 288 l 2 - 313.599609375 288 320 294.400390625 320 300.799804688 c 2 - 320 339.200195312 l 2 - 320 345.599609375 313.599609375 352 307.200195312 352 c 2 - 268.799804688 352 l 2 - 262.400390625 352 256 345.599609375 256 339.200195312 c 2 -256 243.200195312 m 2 - 256 204.799804688 l 2 - 256 198.400390625 262.400390625 192 268.799804688 192 c 2 - 307.200195312 192 l 2 - 313.599609375 192 320 198.400390625 320 204.799804688 c 2 - 320 243.200195312 l 2 - 320 249.599609375 313.599609375 256 307.200195312 256 c 2 - 268.799804688 256 l 2 - 262.400390625 256 256 249.599609375 256 243.200195312 c 2 -128 339.200195312 m 2 - 128 300.799804688 l 2 - 128 294.400390625 134.400390625 288 140.799804688 288 c 2 - 179.200195312 288 l 2 - 185.599609375 288 192 294.400390625 192 300.799804688 c 2 - 192 339.200195312 l 2 - 192 345.599609375 185.599609375 352 179.200195312 352 c 2 - 140.799804688 352 l 2 - 134.400390625 352 128 345.599609375 128 339.200195312 c 2 -179.200195312 192 m 2 - 185.599609375 192 192 198.400390625 192 204.799804688 c 2 - 192 243.200195312 l 2 - 192 249.599609375 185.599609375 256 179.200195312 256 c 2 - 140.799804688 256 l 2 - 134.400390625 256 128 249.599609375 128 243.200195312 c 2 - 128 204.799804688 l 2 - 128 198.400390625 134.400390625 192 140.799804688 192 c 2 - 179.200195312 192 l 2 -192 64 m 1 - 384 64 l 1 - 384 117.01953125 341.01953125 160 288 160 c 0 - 234.98046875 160 192 117.01953125 192 64 c 1 -448 204.799804688 m 2 - 448 243.200195312 l 2 - 448 249.599609375 441.599609375 256 435.200195312 256 c 2 - 396.799804688 256 l 2 - 390.400390625 256 384 249.599609375 384 243.200195312 c 2 - 384 204.799804688 l 2 - 384 198.400390625 390.400390625 192 396.799804688 192 c 2 - 435.200195312 192 l 2 - 441.599609375 192 448 198.400390625 448 204.799804688 c 2 -448 300.799804688 m 2 - 448 339.200195312 l 2 - 448 345.599609375 441.599609375 352 435.200195312 352 c 2 - 396.799804688 352 l 2 - 390.400390625 352 384 345.599609375 384 339.200195312 c 2 - 384 300.799804688 l 2 - 384 294.400390625 390.400390625 288 396.799804688 288 c 2 - 435.200195312 288 l 2 - 441.599609375 288 448 294.400390625 448 300.799804688 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" h o t e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" H o t e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" H O T E L -EndChar - -StartChar: joint -Encoding: 62869 62869 761 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -444.33984375 266.900390625 m 0 - 408.559570312 291.969726562 384 329.91015625 384 373.599609375 c 2 - 384 440 l 2 - 384 444.419921875 387.580078125 448 392 448 c 2 - 440 448 l 2 - 444.419921875 448 448 444.419921875 448 440 c 2 - 448 377.690429688 l 2 - 448 348.66015625 463.849609375 322.98046875 487.66015625 306.370117188 c 0 - 522.990234375 281.719726562 544 241.549804688 544 198.309570312 c 2 - 544 168 l 2 - 544 163.580078125 540.419921875 160 536 160 c 2 - 488 160 l 2 - 483.580078125 160 480 163.580078125 480 168 c 2 - 480 198.309570312 l 2 - 480 225.740234375 466.719726562 251.219726562 444.33984375 266.900390625 c 0 -194.969726562 89.01953125 m 0 - 217.33984375 92.6201171875 240.049804688 84.7099609375 254.790039062 67.509765625 c 2 - 367.509765625 -64 l 1 - 278.940429688 -64 l 2 - 180.299804688 -64 83.650390625 -36.2802734375 0 16 c 1 - 59.6904296875 53.3095703125 126.030273438 77.9296875 194.969726562 89.01953125 c 0 -553.280273438 360.91015625 m 0 - 607.58984375 324.5 640 263.75 640 198.309570312 c 2 - 640 168 l 2 - 640 163.580078125 636.419921875 160 632 160 c 2 - 584 160 l 2 - 579.580078125 160 576 163.580078125 576 168 c 2 - 576 198.309570312 l 2 - 576 248.459960938 550.790039062 294.959960938 508.639648438 322.299804688 c 0 - 490.169921875 334.280273438 480 355.669921875 480 377.690429688 c 2 - 480 440 l 2 - 480 444.419921875 483.580078125 448 488 448 c 2 - 536 448 l 2 - 540.419921875 448 544 444.419921875 544 440 c 2 - 544 377.690429688 l 2 - 544 370.870117188 547.610351562 364.709960938 553.280273438 360.91015625 c 0 -360.889648438 95.9501953125 m 2 - 360.998046875 95.9501953125 l 2 - 377.2421875 95.9501953125 399.002929688 85.9375 409.5703125 73.599609375 c 2 - 527.51953125 -64 l 1 - 439.0703125 -64 l 1 - 439.067382812 -64 l 2 - 422.819335938 -64 401.052734375 -53.9873046875 390.48046875 -41.650390625 c 2 - 272.6796875 95.7802734375 l 2 - 274.080078125 95.7998046875 326.490234375 95.8896484375 360.889648438 95.9501953125 c 2 -616 96 m 2 - 629.25 96 640 85.259765625 640 72 c 2 - 640 -40 l 2 - 640 -53.25 629.25 -64 616 -64 c 2 - 598.580078125 -64 l 1 - 598.577148438 -64 l 2 - 582.329101562 -64 560.5625 -53.9873046875 549.990234375 -41.650390625 c 2 - 432 96 l 1 - 616 96 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" j o i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" J O I N T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" J o i n t -EndChar - -StartChar: kiss -Encoding: 62870 62870 762 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -168 208 m 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 -304 52 m 0 - 304 65 290.599609375 79.2998046875 268.799804688 88.400390625 c 1 - 290.599609375 97.099609375 304 111.400390625 304 124.400390625 c 0 - 304 143.599609375 275.299804688 165.900390625 232.5 168.400390625 c 0 - 224.099609375 169.5 220.299804688 156.599609375 228.900390625 153 c 2 - 245.900390625 145.799804688 l 2 - 258.900390625 140.299804688 266.700195312 132.299804688 266.700195312 124.299804688 c 0 - 266.700195312 116.299804688 258.900390625 108.299804688 245.900390625 102.799804688 c 2 - 228.900390625 95.599609375 l 2 - 222.799804688 93 222.900390625 83.2998046875 228.900390625 80.7998046875 c 2 - 245.900390625 73.599609375 l 2 - 258.900390625 68.099609375 266.700195312 60.099609375 266.700195312 52.099609375 c 0 - 266.700195312 44.099609375 258.900390625 36.099609375 245.900390625 30.599609375 c 2 - 228.900390625 23.400390625 l 2 - 220.400390625 19.7998046875 224 7.2001953125 232.5 8 c 0 - 275.299804688 10.5 304 32.7998046875 304 52 c 0 -328 208 m 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" k i s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" K I S S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" K i s s -EndChar - -StartChar: kiss-beam -Encoding: 62871 62871 763 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -209 220.099609375 m 2 - 213.200195312 212.599609375 224.599609375 216.099609375 224.099609375 224.599609375 c 0 - 220.799804688 266.700195312 191.900390625 296 168.099609375 296 c 0 - 144.299804688 296 115.400390625 266.700195312 112.099609375 224.599609375 c 0 - 111.400390625 216.099609375 122.799804688 212.700195312 127 220.099609375 c 2 - 136.5 237.099609375 l 2 - 144.200195312 250.799804688 155.700195312 258.700195312 168 258.700195312 c 0 - 180.299804688 258.700195312 191.799804688 250.799804688 199.5 237.099609375 c 2 - 209 220.099609375 l 2 -304 52 m 0 - 304 65 290.599609375 79.2998046875 268.799804688 88.400390625 c 1 - 290.599609375 97.099609375 304 111.400390625 304 124.400390625 c 0 - 304 143.599609375 275.299804688 165.900390625 232.5 168.400390625 c 0 - 224.099609375 169.5 220.299804688 156.599609375 228.900390625 153 c 2 - 245.900390625 145.799804688 l 2 - 258.900390625 140.299804688 266.700195312 132.299804688 266.700195312 124.299804688 c 0 - 266.700195312 116.299804688 258.900390625 108.299804688 245.900390625 102.799804688 c 2 - 228.900390625 95.599609375 l 2 - 222.799804688 93 222.900390625 83.2998046875 228.900390625 80.7998046875 c 2 - 245.900390625 73.599609375 l 2 - 258.900390625 68.099609375 266.700195312 60.099609375 266.700195312 52.099609375 c 0 - 266.700195312 44.099609375 258.900390625 36.099609375 245.900390625 30.599609375 c 2 - 228.900390625 23.400390625 l 2 - 220.400390625 19.7998046875 224 7.2001953125 232.5 8 c 0 - 275.299804688 10.5 304 32.7998046875 304 52 c 0 -369 220.099609375 m 2 - 373.200195312 212.599609375 384.599609375 216.099609375 384.099609375 224.599609375 c 0 - 380.799804688 266.700195312 351.900390625 296 328.099609375 296 c 0 - 304.299804688 296 275.400390625 266.700195312 272.099609375 224.599609375 c 0 - 271.400390625 216.099609375 282.900390625 212.799804688 287 220.099609375 c 2 - 296.5 237.099609375 l 2 - 304.200195312 250.799804688 315.700195312 258.700195312 328 258.700195312 c 0 - 340.299804688 258.700195312 351.799804688 250.799804688 359.5 237.099609375 c 2 - 369 220.099609375 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" k i s s hyphen b e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" K i s s hyphen B e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" K i s s hyphen b e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" K I S S hyphen B E A M -EndChar - -StartChar: kiss-wink-heart -Encoding: 62872 62872 764 -Width: 504 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -501.099609375 45.5 m 0 - 510.299804688 21.599609375 496.700195312 -3.900390625 472.599609375 -10.2001953125 c 2 - 389.599609375 -31.7001953125 l 2 - 384.200195312 -33.099609375 378.700195312 -29.900390625 377.200195312 -24.599609375 c 2 - 354.299804688 58 l 2 - 347.700195312 82 363.099609375 106.599609375 388.299804688 110.599609375 c 0 - 410.299804688 114.099609375 431.400390625 99 437.299804688 77.599609375 c 2 - 439.599609375 69.2001953125 l 1 - 448 71.400390625 l 2 - 469.599609375 77 493.099609375 66.2998046875 501.099609375 45.5 c 0 -323.5 49.5 m 2 - 323.5 49.5 347.099609375 -34.400390625 347.400390625 -35.099609375 c 0 - 316.900390625 -48.5 283.400390625 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 - 385 440 496 329 496 192 c 0 - 496 160.200195312 489.799804688 129.900390625 478.900390625 102 c 1 - 472.900390625 103.5 466.700195312 104.799804688 460.299804688 104.900390625 c 1 - 431.200195312 154.700195312 362.200195312 155.5 332.5 109.200195312 c 0 - 321.200195312 91.5 317.900390625 69.7998046875 323.5 49.5 c 2 -168 208 m 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 -288 52 m 0 - 288 65 274.599609375 79.2998046875 252.799804688 88.400390625 c 1 - 274.599609375 97.099609375 288 111.400390625 288 124.400390625 c 0 - 288 143.599609375 259.299804688 165.900390625 216.5 168.400390625 c 0 - 208.299804688 169.599609375 204.099609375 156.700195312 212.900390625 153 c 2 - 229.900390625 145.799804688 l 2 - 242.900390625 140.299804688 250.700195312 132.299804688 250.700195312 124.299804688 c 0 - 250.700195312 116.299804688 242.900390625 108.299804688 229.900390625 102.799804688 c 2 - 212.900390625 95.599609375 l 2 - 207.200195312 93.099609375 206.900390625 83.2998046875 212.900390625 80.7998046875 c 2 - 229.900390625 73.599609375 l 2 - 242.900390625 68.099609375 250.700195312 60.099609375 250.700195312 52.099609375 c 0 - 250.700195312 44.099609375 242.900390625 36.099609375 229.900390625 30.599609375 c 2 - 212.900390625 23.400390625 l 2 - 204.400390625 19.7998046875 208 7.2001953125 216.5 8 c 0 - 259.299804688 10.5 288 32.7998046875 288 52 c 0 -304 231 m 2 - 313.700195312 239.5 l 2 - 328.5 252.700195312 359.900390625 252.700195312 374.700195312 239.5 c 2 - 384.200195312 231 l 2 - 392.700195312 223.5 405.700195312 230.700195312 404 241.799804688 c 0 - 400 267 369.799804688 283.900390625 344.099609375 283.900390625 c 0 - 318.400390625 283.900390625 288.200195312 267 284.200195312 241.799804688 c 0 - 282.400390625 230.599609375 295.700195312 223.599609375 304 231 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" k i s s hyphen w i n k hyphen h e a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" K i s s hyphen W i n k hyphen H e a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" K i s s hyphen w i n k hyphen h e a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" K I S S hyphen W I N K hyphen H E A R T -EndChar - -StartChar: laugh -Encoding: 62873 62873 765 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -328 288 m 0 - 310.299804688 288 296 273.700195312 296 256 c 0 - 296 238.299804688 310.299804688 224 328 224 c 0 - 345.700195312 224 360 238.299804688 360 256 c 0 - 360 273.700195312 345.700195312 288 328 288 c 0 -168 288 m 0 - 150.299804688 288 136 273.700195312 136 256 c 0 - 136 238.299804688 150.299804688 224 168 224 c 0 - 185.700195312 224 200 238.299804688 200 256 c 0 - 200 273.700195312 185.700195312 288 168 288 c 0 -256 16 m 2 - 329.400390625 16 390 71 398.900390625 142 c 0 - 400.099609375 151.599609375 392.599609375 160 383 160 c 2 - 113 160 l 2 - 103.400390625 160 95.900390625 151.5 97.099609375 142 c 0 - 106 71 166.599609375 16 240 16 c 2 - 256 16 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" l a u g h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" L A U G H -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" L a u g h -EndChar - -StartChar: laugh-beam -Encoding: 62874 62874 766 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -272 240.599609375 m 0 - 271.299804688 232 282.900390625 228.700195312 287.099609375 236.099609375 c 2 - 296.599609375 253.099609375 l 2 - 304.299804688 266.799804688 315.799804688 274.700195312 328.099609375 274.700195312 c 0 - 340.400390625 274.700195312 351.900390625 266.799804688 359.599609375 253.099609375 c 2 - 369.099609375 236.099609375 l 2 - 373.200195312 228.700195312 384.700195312 232 384 240.599609375 c 0 - 380.700195312 282.700195312 351.799804688 312 328 312 c 0 - 304.200195312 312 275.299804688 282.700195312 272 240.599609375 c 0 -112 240.599609375 m 0 - 111.299804688 232.099609375 122.799804688 228.700195312 127.099609375 236.099609375 c 2 - 136.599609375 253.099609375 l 2 - 144.299804688 266.799804688 155.799804688 274.700195312 168.099609375 274.700195312 c 0 - 180.400390625 274.700195312 191.900390625 266.799804688 199.599609375 253.099609375 c 2 - 209.099609375 236.099609375 l 2 - 213.200195312 228.700195312 224.700195312 232 224 240.599609375 c 0 - 220.700195312 282.700195312 191.799804688 312 168 312 c 0 - 144.200195312 312 115.299804688 282.700195312 112 240.599609375 c 0 -398.900390625 142 m 0 - 400.099609375 151.599609375 392.599609375 160 383 160 c 2 - 113 160 l 2 - 103.400390625 160 95.900390625 151.5 97.099609375 142 c 0 - 106 71 166.599609375 16 240 16 c 2 - 256 16 l 2 - 329.400390625 16 390 71 398.900390625 142 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" l a u g h hyphen b e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" L a u g h hyphen B e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" L a u g h hyphen b e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" L A U G H hyphen B E A M -EndChar - -StartChar: laugh-squint -Encoding: 62875 62875 767 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -281.799804688 278.299804688 m 2 - 274.099609375 273.599609375 274.099609375 262.400390625 281.799804688 257.700195312 c 2 - 361.799804688 209.700195312 l 2 - 373.299804688 202.900390625 385.900390625 217.299804688 377.200195312 227.700195312 c 2 - 343.599609375 268 l 1 - 377.200195312 308.299804688 l 2 - 385.799804688 318.599609375 373.400390625 333.200195312 361.799804688 326.299804688 c 2 - 281.799804688 278.299804688 l 2 -118.799804688 308.299804688 m 2 - 152.400390625 268 l 1 - 118.799804688 227.700195312 l 2 - 110.200195312 217.299804688 122.700195312 202.900390625 134.200195312 209.700195312 c 2 - 214.200195312 257.700195312 l 2 - 222 262.400390625 222 273.599609375 214.200195312 278.299804688 c 2 - 134.200195312 326.299804688 l 2 - 122.599609375 333.200195312 110.200195312 318.599609375 118.799804688 308.299804688 c 2 -398.900390625 142 m 0 - 400.099609375 151.599609375 392.599609375 160 383 160 c 2 - 113 160 l 2 - 103.400390625 160 95.900390625 151.5 97.099609375 142 c 0 - 106 71 166.599609375 16 240 16 c 2 - 256 16 l 2 - 329.400390625 16 390 71 398.900390625 142 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" l a u g h hyphen s q u i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" L a u g h hyphen S q u i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" L a u g h hyphen s q u i n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" L A U G H hyphen S Q U I N T -EndChar - -StartChar: laugh-wink -Encoding: 62876 62876 768 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -268.099609375 241.900390625 m 0 - 266.400390625 230.700195312 279.599609375 223.599609375 288 231 c 2 - 297.599609375 239.599609375 l 2 - 312.400390625 252.799804688 343.799804688 252.799804688 358.599609375 239.599609375 c 2 - 368.099609375 231.099609375 l 2 - 376.5 223.599609375 389.599609375 230.799804688 387.900390625 241.900390625 c 0 - 383.900390625 267.099609375 353.700195312 284 328 284 c 0 - 302.299804688 284 272.099609375 267.099609375 268.099609375 241.900390625 c 0 -168 288 m 0 - 150.299804688 288 136 273.700195312 136 256 c 0 - 136 238.299804688 150.299804688 224 168 224 c 0 - 185.700195312 224 200 238.299804688 200 256 c 0 - 200 273.700195312 185.700195312 288 168 288 c 0 -398.900390625 142 m 0 - 400.099609375 151.599609375 392.599609375 160 383 160 c 2 - 113 160 l 2 - 103.400390625 160 95.900390625 151.5 97.099609375 142 c 0 - 106 71 166.599609375 16 240 16 c 2 - 256 16 l 2 - 329.400390625 16 390 71 398.900390625 142 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" l a u g h hyphen w i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" L a u g h hyphen W i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" L a u g h hyphen w i n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" L A U G H hyphen W I N K -EndChar - -StartChar: luggage-cart -Encoding: 62877 62877 769 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 128 m 2 - 206.330078125 128 192 142.330078125 192 160 c 2 - 192 320 l 2 - 192 337.669921875 206.330078125 352 224 352 c 2 - 256 352 l 1 - 256 128 l 1 - 224 128 l 2 -576 160 m 2 - 576 142.330078125 561.669921875 128 544 128 c 2 - 512 128 l 1 - 512 352 l 1 - 544 352 l 2 - 561.669921875 352 576 337.669921875 576 320 c 2 - 576 160 l 2 -624 64 m 2 - 632.83984375 64 640 56.83984375 640 48 c 2 - 640 16 l 2 - 640 7.16015625 632.83984375 0 624 0 c 2 - 541.059570312 0 l 1 - 542.849609375 -5.0302734375 544 -10.3603515625 544 -16 c 0 - 544 -42.509765625 522.509765625 -64 496 -64 c 0 - 469.490234375 -64 448 -42.509765625 448 -16 c 0 - 448 -10.3603515625 449.150390625 -5.0302734375 450.940429688 0 c 1 - 253.059570312 0 l 1 - 254.849609375 -5.0302734375 256 -10.3603515625 256 -16 c 0 - 256 -42.509765625 234.509765625 -64 208 -64 c 0 - 181.490234375 -64 160 -42.509765625 160 -16 c 0 - 160 -10.3603515625 161.150390625 -5.0302734375 162.940429688 0 c 1 - 80 0 l 2 - 71.16015625 0 64 7.16015625 64 16 c 2 - 64 384 l 1 - 16 384 l 2 - 7.16015625 384 0 391.16015625 0 400 c 2 - 0 432 l 2 - 0 440.83984375 7.16015625 448 16 448 c 2 - 112 448 l 2 - 120.83984375 448 128 440.83984375 128 432 c 2 - 128 64 l 1 - 624 64 l 2 -480 352 m 1 - 480 128 l 1 - 288 128 l 1 - 288 400 l 2 - 288 426.509765625 309.490234375 448 336 448 c 2 - 432 448 l 2 - 458.509765625 448 480 426.509765625 480 400 c 2 - 480 352 l 1 -432 352 m 1 - 432 400 l 1 - 336 400 l 1 - 336 352 l 1 - 432 352 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" l u g g a g e hyphen c a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" L u g g a g e hyphen C a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" L u g g a g e hyphen c a r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" L U G G A G E hyphen C A R T -EndChar - -StartChar: map-marked -Encoding: 62879 62879 770 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 448 m 0 - 357.58984375 448 414 391.58984375 414 322 c 0 - 414 265.740234375 331.650390625 163.200195312 300.099609375 125.98046875 c 0 - 293.719726562 118.440429688 282.290039062 118.440429688 275.900390625 125.98046875 c 0 - 244.349609375 163.200195312 162 265.740234375 162 322 c 0 - 162 391.58984375 218.41015625 448 288 448 c 0 -20.1201171875 232.049804688 m 2 - 138.75 279.5 l 1 - 143.9296875 264.620117188 151.16015625 249.059570312 160 233.080078125 c 1 - 160 0 l 1 - 21.9404296875 -62.83984375 l 2 - 11.4296875 -67.0400390625 0 -59.2998046875 0 -47.98046875 c 2 - 0 202.33984375 l 2 - 0.0029296875 214.298828125 9.0166015625 227.608398438 20.1201171875 232.049804688 c 2 -288 88.330078125 m 0 - 302.0703125 88.330078125 315.379882812 94.509765625 324.509765625 105.280273438 c 0 - 344.1796875 128.48046875 365.080078125 154.91015625 384 182 c 1 - 384 -63.990234375 l 1 - 192 0.009765625 l 1 - 192 182.009765625 l 1 - 210.919921875 154.91015625 231.830078125 128.490234375 251.490234375 105.290039062 c 0 - 260.620117188 94.509765625 273.9296875 88.330078125 288 88.330078125 c 0 -554.059570312 286.83984375 m 2 - 564.5703125 291.040039062 576 283.299804688 576 271.98046875 c 2 - 576 21.66015625 l 2 - 576 9.69921875 566.986328125 -3.6103515625 555.879882812 -8.0498046875 c 2 - 416 -64 l 1 - 416 224 l 1 - 554.059570312 286.83984375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" m a p hyphen m a r k e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" M a p hyphen m a r k e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" M A P hyphen M A R K E D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" M a p hyphen M a r k e d -EndChar - -StartChar: map-marked-alt -Encoding: 62880 62880 771 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 448 m 0 - 357.58984375 448 414 391.58984375 414 322 c 0 - 414 265.740234375 331.650390625 163.200195312 300.099609375 125.98046875 c 0 - 293.719726562 118.440429688 282.290039062 118.440429688 275.900390625 125.98046875 c 0 - 244.349609375 163.200195312 162 265.740234375 162 322 c 0 - 162 391.58984375 218.41015625 448 288 448 c 0 -288 280 m 0 - 311.200195312 280 330 298.799804688 330 322 c 0 - 330 345.200195312 311.200195312 364 288 364 c 0 - 264.799804688 364 246 345.200195312 246 322 c 0 - 246 298.799804688 264.799804688 280 288 280 c 0 -20.1201171875 232.049804688 m 2 - 138.75 279.5 l 1 - 143.9296875 264.620117188 151.16015625 249.059570312 160 233.080078125 c 1 - 160 0 l 1 - 21.9404296875 -62.83984375 l 2 - 11.4296875 -67.0400390625 0 -59.2998046875 0 -47.98046875 c 2 - 0 202.33984375 l 2 - 0.0029296875 214.298828125 9.0166015625 227.608398438 20.1201171875 232.049804688 c 2 -288 88.330078125 m 0 - 302.0703125 88.330078125 315.379882812 94.509765625 324.509765625 105.280273438 c 0 - 344.1796875 128.48046875 365.080078125 154.91015625 384 182 c 1 - 384 -63.990234375 l 1 - 192 0.009765625 l 1 - 192 182.009765625 l 1 - 210.919921875 154.91015625 231.830078125 128.490234375 251.490234375 105.290039062 c 0 - 260.620117188 94.509765625 273.9296875 88.330078125 288 88.330078125 c 0 -554.059570312 286.83984375 m 2 - 564.5703125 291.040039062 576 283.299804688 576 271.98046875 c 2 - 576 21.66015625 l 2 - 576 9.69921875 566.986328125 -3.6103515625 555.879882812 -8.0498046875 c 2 - 416 -64 l 1 - 416 224 l 1 - 554.059570312 286.83984375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" m a p hyphen m a r k e d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" M a p hyphen M a r k e d hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" M a p hyphen m a r k e d hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" M A P hyphen M A R K E D hyphen A L T -EndChar - -StartChar: marker -Encoding: 62881 62881 772 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -93.9501953125 157.969726562 m 2 - 169.349609375 233.370117188 l 1 - 297.370117188 105.349609375 l 1 - 221.969726562 29.9501953125 l 2 - 177.147460938 -14.8701171875 89.634765625 -56.892578125 26.6298828125 -63.849609375 c 0 - 11.349609375 -65.5400390625 -1.5595703125 -52.6201171875 0.1396484375 -37.33984375 c 2 - 0.169921875 -37.1103515625 l 2 - 7.171875 25.80859375 49.185546875 113.205078125 93.9501953125 157.969726562 c 2 -485.490234375 421.490234375 m 0 - 520.83984375 386.129882812 520.83984375 328.8203125 485.490234375 293.469726562 c 2 - 320 127.98046875 l 1 - 191.98046875 256 l 1 - 290.459960938 354.469726562 l 1 - 270.870117188 374.059570312 l 1 - 183.719726562 286.91015625 l 2 - 177.469726562 280.66015625 167.33984375 280.66015625 161.08984375 286.91015625 c 2 - 138.469726562 309.530273438 l 2 - 132.219726562 315.780273438 132.219726562 325.91015625 138.469726562 332.16015625 c 2 - 242.58984375 436.280273438 l 2 - 258.200195312 451.900390625 283.530273438 451.900390625 299.150390625 436.280273438 c 2 - 335.709960938 399.73046875 l 1 - 357.469726562 421.490234375 l 2 - 392.8203125 456.83984375 450.139648438 456.83984375 485.490234375 421.490234375 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" m a r k e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" M a r k e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" M A R K E R -EndChar - -StartChar: medal -Encoding: 62882 62882 773 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -223.75 317.25 m 1 - 181.709960938 310.690429688 143.91015625 291.629882812 114.190429688 263.860351562 c 1 - 2.919921875 422.8203125 l 2 - -4.5 433.4296875 3.080078125 448 16.0302734375 448 c 2 - 127.1796875 448 l 2 - 137.182617188 448 149.475585938 441.038085938 154.620117188 432.459960938 c 2 - 223.75 317.25 l 1 -495.969726562 448 m 2 - 508.919921875 448 516.5 433.4296875 509.080078125 422.8203125 c 2 - 397.809570312 263.870117188 l 1 - 368.08984375 291.629882812 330.290039062 310.690429688 288.25 317.25 c 1 - 357.379882812 432.459960938 l 2 - 363.16015625 442.099609375 373.580078125 448 384.8203125 448 c 2 - 495.969726562 448 l 2 -256 288 m 0 - 353.200195312 288 432 209.200195312 432 112 c 0 - 432 14.7998046875 353.200195312 -64 256 -64 c 0 - 158.799804688 -64 80 14.7998046875 80 112 c 0 - 80 209.200195312 158.799804688 288 256 288 c 0 -348.51953125 130.740234375 m 2 - 355.33984375 137.379882812 351.5703125 148.969726562 342.169921875 150.330078125 c 2 - 289.740234375 157.969726562 l 1 - 266.309570312 205.490234375 l 2 - 264.200195312 209.740234375 260.08984375 211.879882812 255.98046875 211.879882812 c 0 - 251.889648438 211.879882812 247.809570312 209.76953125 245.700195312 205.490234375 c 2 - 222.26953125 157.969726562 l 1 - 169.83984375 150.330078125 l 2 - 160.440429688 148.969726562 156.669921875 137.379882812 163.490234375 130.740234375 c 2 - 201.419921875 93.7802734375 l 1 - 192.450195312 41.5595703125 l 2 - 190.849609375 32.2099609375 200.700195312 25.01953125 209.099609375 29.4697265625 c 2 - 256 54.1201171875 l 1 - 302.91015625 29.4697265625 l 2 - 311.299804688 25.0498046875 321.16015625 32.2001953125 319.559570312 41.5595703125 c 2 - 310.58984375 93.7802734375 l 1 - 348.51953125 130.740234375 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" m e d a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" M E D A L -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" M e d a l -EndChar - -StartChar: meh-blank -Encoding: 62884 62884 774 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -168 208 m 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 -328 208 m 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" m e h hyphen b l a n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" M E H hyphen B L A N K -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" M e h hyphen B l a n k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" M e h hyphen b l a n k -EndChar - -StartChar: meh-rolling-eyes -Encoding: 62885 62885 775 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -88 224 m 0 - 88 188.700195312 116.700195312 160 152 160 c 0 - 187.299804688 160 216 188.700195312 216 224 c 0 - 216 248.299804688 202.299804688 269.200195312 182.400390625 280 c 1 - 183.099609375 277.400390625 184 274.799804688 184 272 c 0 - 184 254.299804688 169.700195312 240 152 240 c 0 - 134.299804688 240 120 254.299804688 120 272 c 0 - 120 274.799804688 120.900390625 277.400390625 121.599609375 280 c 1 - 101.700195312 269.200195312 88 248.299804688 88 224 c 0 -312 48 m 2 - 333.200195312 48 333.200195312 80 312 80 c 2 - 184 80 l 2 - 162.799804688 80 162.799804688 48 184 48 c 2 - 312 48 l 2 -344 160 m 0 - 379.299804688 160 408 188.700195312 408 224 c 0 - 408 248.299804688 394.299804688 269.200195312 374.400390625 280 c 1 - 375.099609375 277.400390625 376 274.799804688 376 272 c 0 - 376 254.299804688 361.700195312 240 344 240 c 0 - 326.299804688 240 312 254.299804688 312 272 c 0 - 312 274.799804688 312.900390625 277.400390625 313.599609375 280 c 1 - 293.700195312 269.200195312 280 248.299804688 280 224 c 0 - 280 188.700195312 308.700195312 160 344 160 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" m e h hyphen r o l l i n g hyphen e y e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" M e h hyphen R o l l i n g hyphen E y e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" M e h hyphen r o l l i n g hyphen e y e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" M E H hyphen R O L L I N G hyphen E Y E S -EndChar - -StartChar: monument -Encoding: 62886 62886 776 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -368 0 m 2 - 376.83984375 0 384 -7.16015625 384 -16 c 2 - 384 -48 l 2 - 384 -56.83984375 376.83984375 -64 368 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 368 0 l 2 -289.139648438 347.259765625 m 2 - 320 32 l 1 - 64 32 l 1 - 94.8701171875 347.259765625 l 2 - 95.4951171875 353.533203125 99.62109375 362.243164062 104.080078125 366.700195312 c 2 - 180.6796875 443.309570312 l 2 - 186.9296875 449.559570312 197.059570312 449.559570312 203.309570312 443.309570312 c 2 - 279.9296875 366.700195312 l 2 - 284.388671875 362.243164062 288.514648438 353.533203125 289.139648438 347.259765625 c 2 -240 140.799804688 m 2 - 240 179.200195312 l 2 - 240 185.599609375 233.599609375 192 227.200195312 192 c 2 - 156.799804688 192 l 2 - 150.400390625 192 144 185.599609375 144 179.200195312 c 2 - 144 140.799804688 l 2 - 144 134.400390625 150.400390625 128 156.799804688 128 c 2 - 227.200195312 128 l 2 - 233.599609375 128 240 134.400390625 240 140.799804688 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" m o n u m e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" M O N U M E N T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" M o n u m e n t -EndChar - -StartChar: mortar-pestle -Encoding: 62887 62887 777 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -501.540039062 387.08984375 m 2 - 402.459960938 288 l 1 - 251.08984375 288 l 1 - 454.900390625 440.860351562 l 2 - 460.153320312 444.798828125 469.74609375 447.995117188 476.3125 447.995117188 c 0 - 480.961914062 447.995117188 488.111328125 446.30859375 492.26953125 444.23046875 c 0 - 514.049804688 433.33984375 518.759765625 404.309570312 501.540039062 387.08984375 c 2 -496 256 m 2 - 504.83984375 256 512 248.83984375 512 240 c 2 - 512 208 l 2 - 512 199.16015625 504.83984375 192 496 192 c 2 - 480 192 l 1 - 480 111.01953125 429.799804688 41.8896484375 358.870117188 13.6796875 c 1 - 371.639648438 -3.1904296875 380.599609375 -23.1201171875 383.8203125 -45.009765625 c 0 - 385.280273438 -54.9296875 377.780273438 -63.990234375 367.75 -63.990234375 c 2 - 144.25 -63.990234375 l 2 - 134.219726562 -63.990234375 126.719726562 -54.9296875 128.1796875 -45.009765625 c 0 - 131.41015625 -23.1201171875 140.370117188 -3.1904296875 153.129882812 13.6796875 c 1 - 82.2001953125 41.8896484375 32 111.01953125 32 192 c 1 - 16 192 l 2 - 7.16015625 192 0 199.16015625 0 208 c 2 - 0 240 l 2 - 0 248.83984375 7.16015625 256 16 256 c 2 - 496 256 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" m o r t a r hyphen p e s t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" M o r t a r hyphen P e s t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" M o r t a r hyphen p e s t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" M O R T A R hyphen P E S T L E -EndChar - -StartChar: paint-roller -Encoding: 62890 62890 778 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 320 m 2 - 416 302.330078125 401.669921875 288 384 288 c 2 - 32 288 l 2 - 14.330078125 288 0 302.330078125 0 320 c 2 - 0 416 l 2 - 0 433.669921875 14.330078125 448 32 448 c 2 - 384 448 l 2 - 401.669921875 448 416 433.669921875 416 416 c 2 - 416 320 l 2 -448 384 m 1 - 483.349609375 384 512 355.349609375 512 320 c 2 - 512 256 l 2 - 512 202.98046875 469.01953125 160 416 160 c 2 - 256 160 l 1 - 256 128 l 1 - 273.669921875 128 288 113.669921875 288 96 c 2 - 288 -32 l 2 - 288 -49.669921875 273.669921875 -64 256 -64 c 2 - 192 -64 l 2 - 174.330078125 -64 160 -49.669921875 160 -32 c 2 - 160 96 l 2 - 160 113.669921875 174.330078125 128 192 128 c 1 - 192 160 l 2 - 192 195.349609375 220.650390625 224 256 224 c 2 - 416 224 l 2 - 433.669921875 224 448 238.330078125 448 256 c 2 - 448 384 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" p a i n t hyphen r o l l e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" P a i n t hyphen r o l l e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" P A I N T hyphen R O L L E R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" P a i n t hyphen R o l l e r -EndChar - -StartChar: passport -Encoding: 62891 62891 779 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -129.620117188 272 m 1 - 134.900390625 303.219726562 155.209960938 329.169921875 182.919921875 342.41015625 c 1 - 175.25 323.349609375 170.200195312 299.030273438 168.709960938 272 c 1 - 129.620117188 272 l 1 -129.620117188 240 m 1 - 168.709960938 240 l 1 - 170.200195312 212.969726562 175.240234375 188.650390625 182.919921875 169.58984375 c 1 - 155.209960938 182.830078125 134.91015625 208.780273438 129.620117188 240 c 1 -224 161.309570312 m 1 - 216.309570312 168.759765625 203.23046875 195.740234375 200.559570312 240 c 1 - 247.4296875 240 l 1 - 244.76953125 195.73046875 231.690429688 168.759765625 224 161.309570312 c 1 -200.5703125 272 m 1 - 203.23046875 316.259765625 216.309570312 343.240234375 224.009765625 350.690429688 c 1 - 231.700195312 343.240234375 244.780273438 316.259765625 247.440429688 272 c 1 - 200.5703125 272 l 1 -265.080078125 169.58984375 m 1 - 272.759765625 188.650390625 277.799804688 212.969726562 279.290039062 240 c 1 - 318.379882812 240 l 1 - 313.099609375 208.780273438 292.790039062 182.830078125 265.080078125 169.58984375 c 1 -416 448 m 2 - 433.669921875 448 448 433.669921875 448 416 c 2 - 448 -32 l 2 - 448 -49.669921875 433.669921875 -64 416 -64 c 2 - 64 -64 l 2 - 28.650390625 -64 0 -35.349609375 0 0 c 2 - 0 384 l 2 - 0 419.349609375 28.650390625 448 64 448 c 2 - 416 448 l 2 -336 32 m 2 - 344.799804688 32 352 39.2001953125 352 48 c 0 - 352 56.7998046875 344.799804688 64 336 64 c 2 - 112 64 l 2 - 103.200195312 64 96 56.7998046875 96 48 c 0 - 96 39.2001953125 103.200195312 32 112 32 c 2 - 336 32 l 2 -224 128 m 0 - 294.690429688 128 352 185.309570312 352 256 c 0 - 352 326.690429688 294.690429688 384 224 384 c 0 - 153.309570312 384 96 326.690429688 96 256 c 0 - 96 185.309570312 153.309570312 128 224 128 c 0 -265.080078125 342.41015625 m 1 - 292.790039062 329.169921875 313.099609375 303.219726562 318.379882812 272 c 1 - 279.290039062 272 l 1 - 277.799804688 299.030273438 272.759765625 323.349609375 265.080078125 342.41015625 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" p a s s p o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" P a s s p o r t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" P A S S P O R T -EndChar - -StartChar: pen-fancy -Encoding: 62892 62892 780 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -79.1796875 165.059570312 m 2 - 163.25 198.129882812 l 1 - 262.129882812 99.25 l 1 - 229.059570312 15.1796875 l 2 - 226.268554688 6.798828125 217.201171875 -2.2685546875 208.8203125 -5.0595703125 c 2 - 32 -64 l 1 - 27.3203125 -59.3203125 l 1 - 120.209960938 33.5703125 l 2 - 122.76953125 32.91015625 125.240234375 32 128.009765625 32 c 0 - 145.6796875 32 160.009765625 46.330078125 160.009765625 64 c 0 - 160.009765625 81.669921875 145.6796875 96 128.009765625 96 c 0 - 110.33984375 96 96.009765625 81.669921875 96.009765625 64 c 0 - 96.009765625 61.23046875 96.919921875 58.759765625 97.580078125 56.2001953125 c 2 - 4.6904296875 -36.6904296875 l 1 - 0 -32 l 1 - 58.9404296875 144.8203125 l 2 - 61.7333984375 153.19921875 70.80078125 162.266601562 79.1796875 165.059570312 c 2 -369.25 419.6796875 m 2 - 443.73046875 503.940429688 568.400390625 380.51953125 483.48046875 305.450195312 c 2 - 283.990234375 122.33984375 l 1 - 186.139648438 220.190429688 l 1 - 369.25 419.6796875 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" p e n hyphen f a n c y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" P e n hyphen F a n c y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" P e n hyphen f a n c y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" P E N hyphen F A N C Y -EndChar - -StartChar: pen-nib -Encoding: 62893 62893 781 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -136.599609375 309.209960938 m 2 - 288 352 l 1 - 416 224 l 1 - 373.209960938 72.599609375 l 2 - 368.124023438 54.6064453125 349.599609375 35.203125 331.860351562 29.2900390625 c 2 - 52 -64 l 1 - 37.3095703125 -49.3095703125 l 1 - 187.419921875 100.799804688 l 1 - 193.6796875 97.8095703125 200.599609375 96 208 96 c 0 - 234.509765625 96 256 117.490234375 256 144 c 0 - 256 170.509765625 234.509765625 192 208 192 c 0 - 181.490234375 192 160 170.509765625 160 144 c 0 - 160 136.599609375 161.809570312 129.6796875 164.799804688 123.419921875 c 1 - 14.6904296875 -26.6904296875 l 1 - 0 -12 l 1 - 93.2900390625 267.860351562 l 2 - 99.203125 285.599609375 118.606445312 304.124023438 136.599609375 309.209960938 c 2 -497.940429688 373.830078125 m 2 - 516.690429688 355.0703125 516.690429688 324.669921875 497.940429688 305.919921875 c 2 - 441.389648438 249.370117188 l 1 - 313.370117188 377.389648438 l 1 - 369.919921875 433.940429688 l 2 - 388.669921875 452.690429688 419.080078125 452.690429688 437.830078125 433.940429688 c 2 - 497.940429688 373.830078125 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" p e n hyphen n i b -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" P e n hyphen N i b -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" P e n hyphen n i b -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" P E N hyphen N I B -EndChar - -StartChar: pencil-ruler -Encoding: 62894 62894 782 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -109.459960938 203.959960938 m 1 - 9.2900390625 304.139648438 l 2 - -3.099609375 316.530273438 -3.08984375 336.610351562 9.2900390625 349 c 2 - 99 438.709960938 l 2 - 111.389648438 451.099609375 131.469726562 451.099609375 143.860351562 438.709960938 c 2 - 177.5 405.059570312 l 1 - 115.8203125 343.379882812 l 2 - 112.719726562 340.290039062 112.719726562 335.26953125 115.8203125 332.169921875 c 2 - 127.030273438 320.959960938 l 2 - 128.310546875 319.676757812 130.822265625 318.634765625 132.634765625 318.634765625 c 0 - 134.448242188 318.634765625 136.958984375 319.676757812 138.240234375 320.959960938 c 2 - 199.919921875 382.639648438 l 1 - 244.040039062 338.51953125 l 1 - 109.459960938 203.959960938 l 1 -497.9296875 320.759765625 m 2 - 451.91015625 274.73046875 l 1 - 338.709960938 387.9296875 l 1 - 384.73046875 433.940429688 l 2 - 403.5 452.700195312 433.919921875 452.700195312 452.6796875 433.940429688 c 2 - 497.9296875 388.690429688 l 2 - 516.6796875 369.9296875 516.690429688 339.51953125 497.9296875 320.759765625 c 2 -316.080078125 365.290039062 m 1 - 429.280273438 252.099609375 l 1 - 132.360351562 -44.830078125 l 1 - 24.91015625 -63.669921875 l 2 - 10.41015625 -66.2197265625 -2.2099609375 -53.599609375 0.3203125 -39.1103515625 c 2 - 19.080078125 68.330078125 l 1 - 316.080078125 365.290039062 l 1 -502.709960938 79.8603515625 m 2 - 515.099609375 67.4697265625 515.099609375 47.3896484375 502.709960938 35 c 2 - 413 -54.7001953125 l 2 - 400.610351562 -67.08984375 380.530273438 -67.08984375 368.139648438 -54.7001953125 c 2 - 267.9296875 45.5 l 1 - 402.509765625 180.059570312 l 1 - 446.650390625 135.919921875 l 1 - 384.969726562 74.240234375 l 2 - 381.879882812 71.150390625 381.879882812 66.1298828125 384.969726562 63.0302734375 c 2 - 396.1796875 51.8203125 l 2 - 399.26953125 48.7197265625 404.290039062 48.7197265625 407.389648438 51.8203125 c 2 - 469.0703125 113.5 l 1 - 502.709960938 79.8603515625 l 2 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" p e n c i l hyphen r u l e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P e n c i l hyphen R u l e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P e n c i l hyphen r u l e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P E N C I L hyphen R U L E R -EndChar - -StartChar: plane-arrival -Encoding: 62895 62895 783 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 0 m 2 - 632.83984375 0 640 -7.16015625 640 -16 c 2 - 640 -48 l 2 - 640 -56.83984375 632.83984375 -64 624 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 624 0 l 2 -44.8095703125 242.33984375 m 2 - 38.259765625 248.25 32.419921875 256.6796875 32.23046875 265.58984375 c 2 - 32 367.370117188 l 2 - 32.1904296875 378.25 42.3798828125 386.0703125 52.7197265625 383.25 c 2 - 92.4501953125 372.419921875 l 2 - 97.4599609375 371.059570312 101.540039062 367.379882812 103.469726562 362.490234375 c 2 - 131.059570312 294.610351562 l 1 - 233.259765625 266.76953125 l 1 - 185.33984375 430.98046875 l 2 - 185.150390625 442.099609375 195.490234375 450.299804688 206.049804688 447.419921875 c 2 - 271.139648438 429.690429688 l 2 - 276.849609375 428.129882812 281.290039062 423.58984375 282.799804688 417.780273438 c 2 - 383.16015625 225.9296875 l 1 - 480.669921875 199.370117188 l 2 - 507.150390625 192.16015625 532.219726562 179.190429688 551.5 159.370117188 c 0 - 573.139648438 137.120117188 578.700195312 118.91015625 574.870117188 104.41015625 c 0 - 571.059570312 89.91015625 557.290039062 76.9697265625 527.620117188 68.7001953125 c 0 - 501.1796875 61.33984375 473.099609375 62.849609375 446.620117188 70.0595703125 c 2 - 159.01953125 148.41015625 l 2 - 151.07421875 150.579101562 139.663085938 156.8203125 133.549804688 162.33984375 c 2 - 44.8095703125 242.33984375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" p l a n e hyphen a r r i v a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" P l a n e hyphen A r r i v a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" P l a n e hyphen a r r i v a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" P L A N E hyphen A R R I V A L -EndChar - -StartChar: plane-departure -Encoding: 62896 62896 784 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 0 m 2 - 632.83984375 0 640 -7.16015625 640 -16 c 2 - 640 -48 l 2 - 640 -56.83984375 632.83984375 -64 624 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 624 0 l 2 -80.5498046875 106.73046875 m 2 - 4.33984375 189.700195312 l 2 - -3.2802734375 198.66015625 -0.5302734375 212.48046875 9.91015625 217.780273438 c 2 - 50.0400390625 238.150390625 l 2 - 52.1357421875 239.212890625 55.744140625 240.076171875 58.0947265625 240.076171875 c 0 - 60.431640625 240.076171875 64.0224609375 239.22265625 66.1103515625 238.169921875 c 2 - 138.459960938 201.700195312 l 1 - 241.669921875 254.080078125 l 1 - 85.4501953125 352.1796875 l 2 - 77.3701171875 361.059570312 79.9501953125 375.299804688 90.6201171875 380.709960938 c 2 - 156.370117188 414.080078125 l 2 - 158.465820312 415.143554688 162.075195312 416.006835938 164.42578125 416.006835938 c 0 - 167.42578125 416.006835938 171.880859375 414.646484375 174.370117188 412.969726562 c 2 - 393.0703125 330.91015625 l 1 - 491.580078125 380.900390625 l 2 - 518.3203125 394.459960938 548.009765625 402.3203125 577.860351562 400.379882812 c 0 - 611.370117188 398.200195312 628.900390625 387.5 636.110351562 372.9296875 c 0 - 643.33984375 358.370117188 641.349609375 337.759765625 623.040039062 309.280273438 c 0 - 606.73046875 283.91015625 582.759765625 264.540039062 556.01953125 250.969726562 c 2 - 265.059570312 103.3203125 l 2 - 257.348632812 99.4013671875 244.0703125 96.2119140625 235.419921875 96.2001953125 c 2 - 104.879882812 96.01953125 l 2 - 95.650390625 96.009765625 86.830078125 99.8896484375 80.5498046875 106.73046875 c 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" p l a n e hyphen d e p a r t u r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" P l a n e hyphen D e p a r t u r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" P l a n e hyphen d e p a r t u r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" P L A N E hyphen D E P A R T U R E -EndChar - -StartChar: prescription -Encoding: 62897 62897 785 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -301.259765625 96 m 1 - 379.3203125 17.9501953125 l 2 - 385.5703125 11.7001953125 385.5703125 1.5703125 379.3203125 -4.6796875 c 2 - 356.690429688 -27.3095703125 l 2 - 350.440429688 -33.5595703125 340.309570312 -33.5595703125 334.059570312 -27.3095703125 c 2 - 256 50.75 l 1 - 177.950195312 -27.3203125 l 2 - 171.700195312 -33.5703125 161.5703125 -33.5703125 155.3203125 -27.3203125 c 2 - 132.690429688 -4.6904296875 l 2 - 126.440429688 1.5595703125 126.440429688 11.6904296875 132.690429688 17.9404296875 c 2 - 210.75 96 l 1 - 82.75 224 l 1 - 64 224 l 1 - 64 144 l 2 - 64 135.16015625 56.83984375 128 48 128 c 2 - 16 128 l 2 - 7.16015625 128 0 135.16015625 0 144 c 2 - 0 400 l 2 - 0 408.83984375 7.16015625 416 16 416 c 2 - 160 416 l 2 - 213.01953125 416 256 373.01953125 256 320 c 0 - 256 271.110351562 219.309570312 231.200195312 172.040039062 225.219726562 c 1 - 256 141.259765625 l 1 - 334.059570312 219.3203125 l 2 - 340.309570312 225.5703125 350.440429688 225.5703125 356.690429688 219.3203125 c 2 - 379.3203125 196.690429688 l 2 - 385.5703125 190.440429688 385.5703125 180.309570312 379.3203125 174.059570312 c 2 - 301.259765625 96 l 1 -64 352 m 1 - 64 288 l 1 - 160 288 l 2 - 177.639648438 288 192 302.360351562 192 320 c 0 - 192 337.639648438 177.639648438 352 160 352 c 2 - 64 352 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" p r e s c r i p t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P r e s c r i p t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" P R E S C R I P T I O N -EndChar - -StartChar: sad-cry -Encoding: 62899 62899 786 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 102 447.799804688 23.2998046875 376 -20.099609375 c 1 - 376 160 l 2 - 376 168.799804688 368.799804688 176 360 176 c 0 - 351.200195312 176 344 168.799804688 344 160 c 2 - 344 -36.7001953125 l 1 - 314.5 -49.099609375 282 -56 248 -56 c 0 - 214 -56 181.5 -49.099609375 152 -36.7001953125 c 1 - 152 160 l 2 - 152 168.799804688 144.799804688 176 136 176 c 0 - 127.200195312 176 120 168.799804688 120 160 c 2 - 120 -20.099609375 l 1 - 48.2001953125 23.2998046875 0 101.900390625 0 192 c 0 - 0 329 111 440 248 440 c 0 -182.5 223.5 m 2 - 192.200195312 215 l 2 - 194.700195312 212.700195312 200.099609375 210.299804688 205.900390625 213.400390625 c 0 - 210.299804688 215.799804688 212.799804688 220.799804688 212 225.799804688 c 0 - 208 251 177.799804688 267.900390625 152.099609375 267.900390625 c 0 - 126.400390625 267.900390625 96.2001953125 251 92.2001953125 225.799804688 c 0 - 91.400390625 220.799804688 93.900390625 215.799804688 98.2998046875 213.400390625 c 0 - 102.700195312 211 108.200195312 211.700195312 112 215 c 2 - 121.5 223.5 l 2 - 136.299804688 236.700195312 167.700195312 236.700195312 182.5 223.5 c 2 -248 32 m 0 - 274.5 32 296 60.7001953125 296 96 c 0 - 296 131.299804688 274.5 160 248 160 c 0 - 221.5 160 200 131.299804688 200 96 c 0 - 200 60.7001953125 221.5 32 248 32 c 0 -397.799804688 213.5 m 0 - 402.200195312 215.900390625 404.599609375 220.900390625 404 225.799804688 c 0 - 400 251 369.799804688 267.900390625 344.099609375 267.900390625 c 0 - 318.400390625 267.900390625 288.200195312 251 284.200195312 225.799804688 c 0 - 283.400390625 220.799804688 285.900390625 215.799804688 290.299804688 213.400390625 c 0 - 294.700195312 211 300.200195312 211.700195312 304 215 c 2 - 313.599609375 223.599609375 l 2 - 328.400390625 236.799804688 359.799804688 236.799804688 374.599609375 223.599609375 c 2 - 384.099609375 215.099609375 l 2 - 386.599609375 212.799804688 392 210.400390625 397.799804688 213.5 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" s a d hyphen c r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" S A D hyphen C R Y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" S a d hyphen C r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" S a d hyphen c r y -EndChar - -StartChar: sad-tear -Encoding: 62900 62900 787 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -328 272 m 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 -152 32 m 0 - 178.5 32 200 53 200 79 c 0 - 200 99 171.5 139.400390625 158.400390625 156.799804688 c 0 - 155.200195312 161.099609375 148.799804688 161.099609375 145.599609375 156.799804688 c 0 - 132.5 139.400390625 104 99 104 79 c 0 - 104 53 125.5 32 152 32 c 0 -168 208 m 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 - 136 222.299804688 150.299804688 208 168 208 c 0 -338.200195312 53.7998046875 m 0 - 351.5 37.7001953125 376.5 57.7998046875 362.700195312 74.2001953125 c 0 - 334.299804688 108.400390625 292.400390625 128 248 128 c 0 - 226.799804688 128 226.799804688 96 248 96 c 0 - 282.900390625 96 315.799804688 80.599609375 338.200195312 53.7998046875 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" s a d hyphen t e a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" S A D hyphen T E A R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" S a d hyphen T e a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" S a d hyphen t e a r -EndChar - -StartChar: shuttle-van -Encoding: 62902 62902 788 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -628.879882812 237.349609375 m 2 - 636.059570312 228.719726562 640 217.849609375 640 206.620117188 c 2 - 640 96 l 2 - 640 78.330078125 625.669921875 64 608 64 c 2 - 576 64 l 1 - 576 10.98046875 533.01953125 -32 480 -32 c 0 - 426.98046875 -32 384 10.98046875 384 64 c 1 - 256 64 l 1 - 256 10.98046875 213.01953125 -32 160 -32 c 0 - 106.98046875 -32 64 10.98046875 64 64 c 1 - 32 64 l 2 - 14.330078125 64 0 78.330078125 0 96 c 2 - 0 384 l 2 - 0 401.669921875 14.330078125 416 32 416 c 2 - 457.51953125 416 l 2 - 469.927734375 415.998046875 486.4453125 408.260742188 494.389648438 398.73046875 c 2 - 628.879882812 237.349609375 l 2 -64 256 m 1 - 160 256 l 1 - 160 352 l 1 - 64 352 l 1 - 64 256 l 1 -160 16 m 0 - 186.509765625 16 208 37.490234375 208 64 c 0 - 208 90.509765625 186.509765625 112 160 112 c 0 - 133.490234375 112 112 90.509765625 112 64 c 0 - 112 37.490234375 133.490234375 16 160 16 c 0 -320 256 m 1 - 320 352 l 1 - 224 352 l 1 - 224 256 l 1 - 320 256 l 1 -480 16 m 0 - 506.509765625 16 528 37.490234375 528 64 c 0 - 528 90.509765625 506.509765625 112 480 112 c 0 - 453.490234375 112 432 90.509765625 432 64 c 0 - 432 37.490234375 453.490234375 16 480 16 c 0 -384 256 m 1 - 530.01953125 256 l 1 - 450.01953125 352 l 1 - 384 352 l 1 - 384 256 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" s h u t t l e hyphen v a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S H U T T L E hyphen V A N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S h u t t l e hyphen V a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S h u t t l e hyphen v a n -EndChar - -StartChar: signature -Encoding: 62903 62903 789 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -623.200195312 256 m 0 - 632.299804688 256.599609375 640 248.900390625 639.799804688 239.799804688 c 2 - 639.799804688 207.700195312 l 2 - 639.799804688 199.200195312 633.099609375 192.599609375 624.599609375 191.900390625 c 0 - 585.200195312 188.700195312 519.200195312 140.900390625 486.200195312 126.099609375 c 0 - 451.900390625 110.700195312 419.5 96.099609375 383.900390625 96.099609375 c 0 - 355.700195312 96.099609375 333.700195312 104.599609375 318.400390625 121.400390625 c 0 - 295.700195312 146.299804688 295.599609375 176.700195312 297.799804688 205.200195312 c 1 - 241.299804688 160.099609375 128.799804688 51.599609375 86.599609375 9.400390625 c 0 - 80.5 3.2001953125 72.2998046875 0 64 0 c 0 - 37 0 27.5 27 34.2998046875 43.900390625 c 2 - 132.5 289.5 l 2 - 140.5 309.400390625 118.200195312 328.299804688 99.7998046875 316.599609375 c 2 - 41.7998046875 277.700195312 l 2 - 34.2998046875 272.900390625 24.400390625 275.099609375 19.7001953125 282.599609375 c 2 - 2.5 309.599609375 l 2 - -2.2001953125 317.099609375 0 327 7.400390625 331.700195312 c 2 - 62.2998046875 368.599609375 l 2 - 138.799804688 417.299804688 222.400390625 341.700195312 192 265.799804688 c 2 - 150.5 162.099609375 l 1 - 255.700195312 263.299804688 294.900390625 286.599609375 320 288.099609375 c 0 - 374.400390625 291.200195312 363.799804688 220 362.700195312 212 c 0 - 358 176.299804688 361.400390625 160.099609375 384 160.099609375 c 0 - 405.900390625 160.099609375 431 171.400390625 460.099609375 184.5 c 0 - 497.5 201.299804688 571.400390625 252.5 623.200195312 256 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" s i g n a t u r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S i g n a t u r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S I G N A T U R E -EndChar - -StartChar: smile-beam -Encoding: 62904 62904 790 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -112 224.599609375 m 0 - 111.299804688 216.099609375 122.799804688 212.700195312 127.099609375 220.099609375 c 2 - 136.599609375 237.099609375 l 2 - 144.299804688 250.799804688 155.799804688 258.700195312 168.099609375 258.700195312 c 0 - 180.400390625 258.700195312 191.900390625 250.799804688 199.599609375 237.099609375 c 2 - 209.099609375 220.099609375 l 2 - 213.200195312 212.700195312 224.700195312 216 224 224.599609375 c 0 - 220.700195312 266.700195312 191.799804688 296 168 296 c 0 - 144.200195312 296 115.299804688 266.700195312 112 224.599609375 c 0 -362.799804688 101.799804688 m 0 - 376.299804688 118 351.799804688 138.5 338.200195312 122.299804688 c 0 - 315.799804688 95.5 283 80.099609375 248 80.099609375 c 0 - 213 80.099609375 180.200195312 95.400390625 157.799804688 122.299804688 c 0 - 144.200195312 138.5 119.700195312 118.099609375 133.200195312 101.799804688 c 0 - 161.700195312 67.599609375 203.5 48 248 48 c 0 - 292.5 48 334.299804688 67.599609375 362.799804688 101.799804688 c 0 -369 220.099609375 m 2 - 373.099609375 212.700195312 384.700195312 216 384.099609375 224.599609375 c 0 - 380.799804688 266.700195312 351.900390625 296 328.099609375 296 c 0 - 304.299804688 296 275.400390625 266.700195312 272.099609375 224.599609375 c 0 - 271.400390625 216.099609375 282.900390625 212.799804688 287 220.099609375 c 2 - 296.5 237.099609375 l 2 - 304.200195312 250.799804688 315.700195312 258.700195312 328 258.700195312 c 0 - 340.299804688 258.700195312 351.799804688 250.799804688 359.5 237.099609375 c 2 - 369 220.099609375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" s m i l e hyphen b e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" S m i l e hyphen B e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" S m i l e hyphen b e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" S M I L E hyphen B E A M -EndChar - -StartChar: solar-panel -Encoding: 62906 62906 791 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -431.98046875 -0.009765625 m 2 - 440.830078125 0 448.009765625 -7.1796875 448 -16.0302734375 c 2 - 447.959960938 -47.759765625 l 2 - 447.950195312 -56.580078125 440.799804688 -63.73046875 431.98046875 -63.740234375 c 2 - 208.01953125 -64 l 2 - 199.169921875 -64.009765625 191.990234375 -56.830078125 192 -47.98046875 c 2 - 192.049804688 -16.25 l 2 - 192.059570312 -7.419921875 199.209960938 -0.26953125 208.030273438 -0.259765625 c 2 - 256.009765625 -0.2099609375 l 1 - 256.009765625 32 l 1 - 384.009765625 32 l 1 - 384.009765625 -0.0595703125 l 1 - 431.98046875 -0.009765625 l 2 -585.200195312 421.259765625 m 0 - 643.309570312 78.83984375 639.98046875 99.8701171875 639.959960938 95.7900390625 c 0 - 639.879882812 78.5595703125 625.599609375 64 607.370117188 64 c 2 - 32.6298828125 64 l 2 - 14.3203125 64 0 78.6796875 0.0302734375 96 c 0 - 0.0400390625 99.919921875 -3.3203125 78.83984375 54.7900390625 421.259765625 c 0 - 57.41015625 436.690429688 71 448 86.9296875 448 c 2 - 553.059570312 448 l 2 - 568.990234375 448 582.580078125 436.690429688 585.200195312 421.259765625 c 0 -259.830078125 384 m 1 - 250.059570312 288 l 1 - 389.9296875 288 l 1 - 380.16015625 384 l 1 - 259.830078125 384 l 1 -184.66015625 128 m 1 - 196.0703125 240 l 1 - 90.099609375 240 l 1 - 71.08984375 128 l 1 - 184.66015625 128 l 1 -200.950195312 288 m 1 - 210.719726562 384 l 1 - 114.530273438 384 l 1 - 98.240234375 288 l 1 - 200.950195312 288 l 1 -233.76953125 128 m 1 - 406.219726562 128 l 1 - 394.8203125 240 l 1 - 245.169921875 240 l 1 - 233.76953125 128 l 1 -429.26953125 384 m 1 - 439.040039062 288 l 1 - 541.75 288 l 1 - 525.459960938 384 l 1 - 429.26953125 384 l 1 -455.330078125 128 m 1 - 568.91015625 128 l 1 - 549.900390625 240 l 1 - 443.9296875 240 l 1 - 455.330078125 128 l 1 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" s o l a r hyphen p a n e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S o l a r hyphen P a n e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S o l a r hyphen p a n e l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" S O L A R hyphen P A N E L -EndChar - -StartChar: spa -Encoding: 62907 62907 792 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -568.25 256 m 0 - 572.66015625 256.01953125 576.040039062 252.599609375 576 248.1796875 c 0 - 575.76953125 220.259765625 568.870117188 122.049804688 487.23046875 48.8798828125 c 1 - 403.190429688 -32.9501953125 320 -32 288 -32 c 0 - 256 -32 172.790039062 -32.9404296875 88.76953125 48.8798828125 c 1 - 7.1396484375 122.040039062 0.23046875 220.259765625 0 248.1796875 c 0 - -0.0400390625 252.599609375 3.33984375 256.01953125 7.75 256 c 0 - 36.7900390625 255.870117188 142.759765625 249.83984375 221.58984375 173 c 0 - 254.709960938 143.370117188 274.950195312 109.700195312 288 78.1396484375 c 1 - 301.049804688 109.700195312 321.290039062 143.370117188 354.41015625 173 c 0 - 433.240234375 249.83984375 539.209960938 255.870117188 568.25 256 c 0 -287.98046875 145.400390625 m 1 - 277.279296875 161.1171875 257.1015625 184.170898438 242.940429688 196.860351562 c 0 - 224.219726562 215.110351562 204.08984375 229.549804688 183.719726562 241.25 c 1 - 200.190429688 311.690429688 235.469726562 374.1796875 280.459960938 413.3203125 c 0 - 284.580078125 416.900390625 291.490234375 416.900390625 295.599609375 413.3203125 c 0 - 340.610351562 374.150390625 375.889648438 311.599609375 392.330078125 241.099609375 c 1 - 371.650390625 229.219726562 351.16015625 214.530273438 332.0703125 195.919921875 c 0 - 315.580078125 181.1796875 300.799804688 164.25 287.98046875 145.400390625 c 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" s p a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" S p a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" S P A -EndChar - -StartChar: splotch -Encoding: 62908 62908 793 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -472.290039062 252.110351562 m 2 - 520.830078125 235.490234375 526.120117188 178.280273438 481.240234375 155.3203125 c 2 - 419.240234375 123.580078125 l 2 - 401.41015625 114.450195312 389.959960938 98.3798828125 388.610351562 80.58984375 c 2 - 383.91015625 18.73046875 l 2 - 380.5 -26.0595703125 318.780273438 -48.0498046875 279.459960938 -18.490234375 c 2 - 225.139648438 22.33984375 l 2 - 209.51953125 34.0703125 188.1796875 38.4599609375 168.0703125 34.0703125 c 2 - 98.1103515625 18.7900390625 l 2 - 47.4599609375 7.73046875 4.0302734375 51.349609375 24.6201171875 92.599609375 c 2 - 53.0498046875 149.580078125 l 2 - 61.23046875 165.959960938 59.490234375 184.75 48.41015625 199.8203125 c 2 - 9.8701171875 252.240234375 l 2 - -18.0302734375 290.190429688 16.849609375 339.139648438 68.900390625 335.0703125 c 2 - 140.780273438 329.450195312 l 2 - 161.440429688 327.830078125 181.719726562 335.049804688 194.98046875 348.759765625 c 2 - 241.120117188 396.4296875 l 2 - 274.530273438 430.940429688 339.51953125 417.580078125 351.099609375 373.809570312 c 2 - 367.08984375 313.360351562 l 2 - 371.690429688 295.98046875 385.950195312 281.66015625 405.23046875 275.059570312 c 2 - 472.290039062 252.110351562 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" s p l o t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" S p l o t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" S P L O T C H -EndChar - -StartChar: spray-can -Encoding: 62909 62909 794 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 416 m 2 - 224 320 l 1 - 96 320 l 1 - 96 416 l 2 - 96 433.669921875 110.330078125 448 128 448 c 2 - 192 448 l 2 - 209.669921875 448 224 433.669921875 224 416 c 2 -480 320 m 0 - 497.669921875 320 512 305.669921875 512 288 c 0 - 512 270.330078125 497.669921875 256 480 256 c 0 - 462.330078125 256 448 270.330078125 448 288 c 0 - 448 305.669921875 462.330078125 320 480 320 c 0 -224 288 m 2 - 277.01953125 288 320 245.01953125 320 192 c 2 - 320 -32 l 2 - 320 -49.669921875 305.669921875 -64 288 -64 c 2 - 32 -64 l 2 - 14.330078125 -64 0 -49.669921875 0 -32 c 2 - 0 192 l 2 - 0 245.01953125 42.98046875 288 96 288 c 2 - 224 288 l 2 -160 32 m 0 - 204.1796875 32 240 67.8203125 240 112 c 0 - 240 156.1796875 204.1796875 192 160 192 c 0 - 115.8203125 192 80 156.1796875 80 112 c 0 - 80 67.8203125 115.8203125 32 160 32 c 0 -480 352 m 0 - 462.330078125 352 448 366.330078125 448 384 c 0 - 448 401.669921875 462.330078125 416 480 416 c 0 - 497.669921875 416 512 401.669921875 512 384 c 0 - 512 366.330078125 497.669921875 352 480 352 c 0 -384 320 m 0 - 401.669921875 320 416 305.669921875 416 288 c 0 - 416 270.330078125 401.669921875 256 384 256 c 0 - 366.330078125 256 352 270.330078125 352 288 c 0 - 352 305.669921875 366.330078125 320 384 320 c 0 -288 416 m 0 - 305.669921875 416 320 401.669921875 320 384 c 0 - 320 366.330078125 305.669921875 352 288 352 c 0 - 270.330078125 352 256 366.330078125 256 384 c 0 - 256 401.669921875 270.330078125 416 288 416 c 0 -384 416 m 0 - 401.669921875 416 416 401.669921875 416 384 c 0 - 416 366.330078125 401.669921875 352 384 352 c 0 - 366.330078125 352 352 366.330078125 352 384 c 0 - 352 401.669921875 366.330078125 416 384 416 c 0 -480 224 m 0 - 497.669921875 224 512 209.669921875 512 192 c 0 - 512 174.330078125 497.669921875 160 480 160 c 0 - 462.330078125 160 448 174.330078125 448 192 c 0 - 448 209.669921875 462.330078125 224 480 224 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" s p r a y hyphen c a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S p r a y hyphen C a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S p r a y hyphen c a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S P R A Y hyphen C A N -EndChar - -StartChar: stamp -Encoding: 62911 62911 795 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 -64 m 1 - 32 0 l 1 - 480 0 l 1 - 480 -64 l 1 - 32 -64 l 1 -416 192 m 2 - 469.01953125 192 512 149.01953125 512 96 c 2 - 512 64 l 2 - 512 46.330078125 497.669921875 32 480 32 c 2 - 32 32 l 2 - 14.330078125 32 0 46.330078125 0 64 c 2 - 0 96 l 2 - 0 149.01953125 42.98046875 192 96 192 c 2 - 162.559570312 192 l 2 - 178.8203125 192 192 205.1796875 192 221.440429688 c 2 - 192 221.509765625 l 2 - 192 253.299804688 182.01953125 283.5703125 168.690429688 312.419921875 c 0 - 163.120117188 324.459960938 160 337.83984375 160 352 c 0 - 160 410.669921875 212.620117188 457.040039062 273.25 446.490234375 c 0 - 312.040039062 439.740234375 343.740234375 407.8203125 350.509765625 369.040039062 c 0 - 354.360351562 347.009765625 350.5703125 326.23046875 341.459960938 308.620117188 c 0 - 328.879882812 284.309570312 320 258.26953125 320 230.900390625 c 2 - 320 221.440429688 l 2 - 320 205.1796875 333.1796875 192 349.440429688 192 c 2 - 416 192 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" s t a m p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" S t a m p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" S T A M P -EndChar - -StartChar: star-half-alt -Encoding: 62912 62912 796 -Width: 536 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -508.549804688 276.490234375 m 2 - 534.799804688 272.690429688 545.3203125 240.389648438 526.280273438 221.889648438 c 2 - 420.370117188 118.91015625 l 1 - 445.400390625 -26.580078125 l 2 - 448.959960938 -47.3701171875 432.33984375 -63.98046875 413.740234375 -63.98046875 c 0 - 408.830078125 -63.98046875 403.76953125 -62.8203125 398.91015625 -60.26953125 c 2 - 267.969726562 8.4296875 l 1 - 137.01953125 -60.25 l 2 - 132.150390625 -62.830078125 127.080078125 -64 122.150390625 -64 c 0 - 103.5703125 -64 86.98046875 -47.330078125 90.5400390625 -26.5498046875 c 2 - 115.599609375 118.9296875 l 1 - 9.7099609375 221.9296875 l 2 - -9.3203125 240.4296875 1.2001953125 272.719726562 27.4501953125 276.51953125 c 2 - 173.830078125 297.809570312 l 1 - 239.259765625 430.190429688 l 2 - 245.16015625 442.099609375 256.549804688 448 267.950195312 448 c 0 - 279.419921875 448 290.889648438 442.01953125 296.76953125 430.190429688 c 2 - 362.1796875 297.799804688 l 1 - 508.549804688 276.490234375 l 2 -386.809570312 153.290039062 m 1 - 469.459960938 233.669921875 l 1 - 355.23046875 250.299804688 l 1 - 330.219726562 253.940429688 l 1 - 319.040039062 276.5703125 l 1 - 268.009765625 379.860351562 l 1 - 267.98046875 62.669921875 l 1 - 290.360351562 50.9296875 l 1 - 392.490234375 -2.66015625 l 1 - 372.969726562 110.790039062 l 1 - 368.690429688 135.669921875 l 1 - 386.809570312 153.290039062 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" s t a r hyphen h a l f hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" S t a r hyphen H a l f hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" S t a r hyphen h a l f hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" S T A R hyphen H A L F hyphen A L T -EndChar - -StartChar: suitcase-rolling -Encoding: 62913 62913 797 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 288 m 2 - 362.509765625 288 384 266.509765625 384 240 c 2 - 384 16 l 2 - 384 -10.509765625 362.509765625 -32 336 -32 c 2 - 320 -32 l 1 - 320 -48 l 2 - 320 -56.83984375 312.83984375 -64 304 -64 c 2 - 272 -64 l 2 - 263.16015625 -64 256 -56.83984375 256 -48 c 2 - 256 -32 l 1 - 128 -32 l 1 - 128 -48 l 2 - 128 -56.83984375 120.83984375 -64 112 -64 c 2 - 80 -64 l 2 - 71.16015625 -64 64 -56.83984375 64 -48 c 2 - 64 -32 l 1 - 48 -32 l 2 - 21.490234375 -32 0 -10.509765625 0 16 c 2 - 0 240 l 2 - 0 266.509765625 21.490234375 288 48 288 c 2 - 336 288 l 2 -320 72 m 2 - 320 88 l 2 - 320 92.419921875 316.419921875 96 312 96 c 2 - 72 96 l 2 - 67.580078125 96 64 92.419921875 64 88 c 2 - 64 72 l 2 - 64 67.580078125 67.580078125 64 72 64 c 2 - 312 64 l 2 - 316.419921875 64 320 67.580078125 320 72 c 2 -320 168 m 2 - 320 184 l 2 - 320 188.419921875 316.419921875 192 312 192 c 2 - 72 192 l 2 - 67.580078125 192 64 188.419921875 64 184 c 2 - 64 168 l 2 - 64 163.580078125 67.580078125 160 72 160 c 2 - 312 160 l 2 - 316.419921875 160 320 163.580078125 320 168 c 2 -144 400 m 1 - 144 320 l 1 - 96 320 l 1 - 96 400 l 2 - 96 426.509765625 117.490234375 448 144 448 c 2 - 240 448 l 2 - 266.509765625 448 288 426.509765625 288 400 c 2 - 288 320 l 1 - 240 320 l 1 - 240 400 l 1 - 144 400 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" s u i t c a s e hyphen r o l l i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" S u i t c a s e hyphen R o l l i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" S u i t c a s e hyphen r o l l i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 20" S U I T C A S E hyphen R O L L I N G -EndChar - -StartChar: surprise -Encoding: 62914 62914 798 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -136 240 m 0 - 136 222.299804688 150.299804688 208 168 208 c 0 - 185.700195312 208 200 222.299804688 200 240 c 0 - 200 257.700195312 185.700195312 272 168 272 c 0 - 150.299804688 272 136 257.700195312 136 240 c 0 -248 32 m 0 - 283.299804688 32 312 60.7001953125 312 96 c 0 - 312 131.299804688 283.299804688 160 248 160 c 0 - 212.700195312 160 184 131.299804688 184 96 c 0 - 184 60.7001953125 212.700195312 32 248 32 c 0 -328 208 m 0 - 345.700195312 208 360 222.299804688 360 240 c 0 - 360 257.700195312 345.700195312 272 328 272 c 0 - 310.299804688 272 296 257.700195312 296 240 c 0 - 296 222.299804688 310.299804688 208 328 208 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" s u r p r i s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" S u r p r i s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" S U R P R I S E -EndChar - -StartChar: swatchbook -Encoding: 62915 62915 799 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -434.66015625 280.290039062 m 1 - 439.815429688 275.119140625 444 264.997070312 444 257.6953125 c 0 - 444 250.393554688 439.815429688 240.270507812 434.66015625 235.099609375 c 2 - 224 24 l 1 - 224 295.120117188 l 1 - 299.4296875 370.639648438 l 1 - 299.5 370.709960938 l 1 - 299.5 370.709960938 l 1 - 304.642578125 375.833007812 314.706054688 379.990234375 321.96484375 379.990234375 c 0 - 329.255859375 379.990234375 339.3515625 375.801757812 344.5 370.639648438 c 2 - 434.66015625 280.290039062 l 1 - 434.66015625 280.290039062 l 1 -480 128 m 2 - 497.6640625 128 512 113.6640625 512 96 c 2 - 512 -32 l 2 - 512 -49.6640625 497.6640625 -64 480 -64 c 2 - 180 -64 l 2 - 182.1796875 -62.08984375 184.620117188 -60.580078125 186.6796875 -58.509765625 c 2 - 373.08984375 128 l 1 - 480 128 l 2 -192 416 m 2 - 192 32 l 2 - 192 -20.9921875 148.9921875 -64 96 -64 c 0 - 43.0078125 -64 0 -20.9921875 0 32 c 2 - 0 416 l 2 - 0 433.6640625 14.3359375 448 32 448 c 2 - 160 448 l 2 - 177.6640625 448 192 433.6640625 192 416 c 2 -96 8 m 0 - 109.248046875 8 120 18.751953125 120 32 c 0 - 120 45.248046875 109.248046875 56 96 56 c 0 - 82.751953125 56 72 45.248046875 72 32 c 0 - 72 18.751953125 82.751953125 8 96 8 c 0 -128 192 m 1 - 128 256 l 1 - 64 256 l 1 - 64 192 l 1 - 128 192 l 1 -128 320 m 1 - 128 384 l 1 - 64 384 l 1 - 64 320 l 1 - 128 320 l 1 -EndSplineSet -Validated: 524293 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" s w a t c h b o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" S w a t c h b o o k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" S W A T C H B O O K -EndChar - -StartChar: swimmer -Encoding: 62916 62916 800 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -189.610351562 137.419921875 m 0 - 184.5703125 142.0703125 179.219726562 145.76953125 173.75 149 c 1 - 242.379882812 247.040039062 l 2 - 249.740234375 257.540039062 258.719726562 266.58984375 269.099609375 273.98046875 c 2 - 349.120117188 331.150390625 l 2 - 374.66015625 349.41015625 406.950195312 356.110351562 437.6796875 349.530273438 c 2 - 538.030273438 328 l 2 - 563.959960938 322.440429688 580.459960938 296.919921875 574.91015625 271 c 0 - 569.349609375 245.08984375 543.8203125 228.58984375 517.91015625 234.120117188 c 2 - 417.559570312 255.650390625 l 2 - 413.219726562 256.559570312 408.580078125 255.620117188 404.940429688 253.040039062 c 2 - 386.940429688 240.1796875 l 1 - 499.780273438 159.580078125 l 1 - 482.26953125 158.540039062 465.25 151.129882812 450.389648438 137.419921875 c 0 - 446.860351562 134.16015625 435.120117188 128 416 128 c 0 - 396.879882812 128 385.150390625 134.16015625 381.610351562 137.419921875 c 0 - 365.599609375 152.190429688 347.110351562 160 328.150390625 160 c 2 - 311.849609375 160 l 2 - 292.889648438 160 274.41015625 152.190429688 258.389648438 137.419921875 c 0 - 254.860351562 134.16015625 243.120117188 128 224 128 c 0 - 204.879882812 128 193.150390625 134.16015625 189.610351562 137.419921875 c 0 -624 96 m 2 - 632.83984375 96 640 88.83984375 640 80 c 2 - 640 48 l 2 - 640 39.16015625 632.83984375 32 624 32 c 2 - 608 32 l 2 - 569.379882812 32 535.280273438 44.1796875 512 63.83984375 c 1 - 488.719726562 44.1904296875 454.620117188 32 416 32 c 0 - 377.379882812 32 343.280273438 44.1796875 320 63.83984375 c 1 - 296.719726562 44.1904296875 262.620117188 32 224 32 c 0 - 185.379882812 32 151.280273438 44.1796875 128 63.83984375 c 1 - 104.719726562 44.1904296875 70.6201171875 32 32 32 c 2 - 16 32 l 2 - 7.16015625 32 0 39.16015625 0 48 c 2 - 0 80 l 2 - 0 88.83984375 7.16015625 96 16 96 c 2 - 32 96 l 2 - 58.0400390625 96 77.7998046875 104.419921875 88.0703125 113.900390625 c 0 - 96.9697265625 122.110351562 107.73046875 128 119.83984375 128 c 2 - 136.139648438 128 l 2 - 148.25 128 159.009765625 122.110351562 167.91015625 113.900390625 c 0 - 178.200195312 104.419921875 197.959960938 96 224 96 c 0 - 250.040039062 96 269.799804688 104.419921875 280.0703125 113.900390625 c 0 - 288.969726562 122.110351562 299.73046875 128 311.83984375 128 c 2 - 328.139648438 128 l 2 - 340.25 128 351.009765625 122.110351562 359.91015625 113.900390625 c 0 - 370.200195312 104.419921875 389.959960938 96 416 96 c 0 - 442.040039062 96 461.799804688 104.419921875 472.0703125 113.900390625 c 0 - 480.969726562 122.110351562 491.73046875 128 503.83984375 128 c 2 - 520.139648438 128 l 2 - 532.25 128 543.009765625 122.110351562 551.91015625 113.900390625 c 0 - 562.200195312 104.419921875 581.959960938 96 608 96 c 2 - 624 96 l 2 -112 192 m 0 - 67.8203125 192 32 227.8203125 32 272 c 0 - 32 316.1796875 67.8203125 352 112 352 c 0 - 156.1796875 352 192 316.1796875 192 272 c 0 - 192 227.8203125 156.1796875 192 112 192 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" s w i m m e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" S w i m m e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" S W I M M E R -EndChar - -StartChar: swimming-pool -Encoding: 62917 62917 801 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 32 m 2 - 632.83984375 32 640 24.83984375 640 16 c 2 - 640 -16 l 2 - 640 -24.83984375 632.83984375 -32 624 -32 c 2 - 608 -32 l 2 - 569.379882812 -32 535.280273438 -19.8203125 512 -0.16015625 c 1 - 488.719726562 -19.8095703125 454.620117188 -32 416 -32 c 0 - 377.379882812 -32 343.280273438 -19.8203125 320 -0.16015625 c 1 - 296.719726562 -19.8095703125 262.620117188 -32 224 -32 c 0 - 185.379882812 -32 151.280273438 -19.8203125 128 -0.16015625 c 1 - 104.719726562 -19.8095703125 70.6201171875 -32 32 -32 c 2 - 16 -32 l 2 - 7.16015625 -32 0 -24.83984375 0 -16 c 2 - 0 16 l 2 - 0 24.83984375 7.16015625 32 16 32 c 2 - 32 32 l 2 - 58.0400390625 32 77.7998046875 40.419921875 88.0703125 49.900390625 c 0 - 96.9697265625 58.1103515625 107.73046875 64 119.83984375 64 c 2 - 136.139648438 64 l 2 - 148.25 64 159.009765625 58.1103515625 167.91015625 49.900390625 c 0 - 178.200195312 40.419921875 197.959960938 32 224 32 c 0 - 250.040039062 32 269.799804688 40.419921875 280.0703125 49.900390625 c 0 - 288.969726562 58.1103515625 299.73046875 64 311.83984375 64 c 2 - 328.139648438 64 l 2 - 340.25 64 351.009765625 58.1103515625 359.91015625 49.900390625 c 0 - 370.200195312 40.419921875 389.959960938 32 416 32 c 0 - 442.040039062 32 461.799804688 40.419921875 472.0703125 49.900390625 c 0 - 480.969726562 58.1103515625 491.73046875 64 503.83984375 64 c 2 - 520.139648438 64 l 2 - 532.25 64 543.009765625 58.1103515625 551.91015625 49.900390625 c 0 - 562.200195312 40.419921875 581.959960938 32 608 32 c 2 - 624 32 l 2 -224 64 m 1 - 204.879882812 64 193.139648438 70.16015625 189.610351562 73.4296875 c 0 - 180.440429688 81.8798828125 170.41015625 87.76953125 160 91.5 c 1 - 160 320 l 2 - 160 372.940429688 203.059570312 416 256 416 c 0 - 308.940429688 416 352 372.940429688 352 320 c 2 - 352 304 l 2 - 352 295.16015625 344.83984375 288 336 288 c 2 - 304 288 l 2 - 295.16015625 288 288 295.16015625 288 304 c 2 - 288 320 l 2 - 288 337.639648438 273.639648438 352 256 352 c 0 - 238.360351562 352 224 337.639648438 224 320 c 2 - 224 224 l 1 - 416 224 l 1 - 416 320 l 2 - 416 372.940429688 459.059570312 416 512 416 c 0 - 564.940429688 416 608 372.940429688 608 320 c 2 - 608 304 l 2 - 608 295.16015625 600.83984375 288 592 288 c 2 - 560 288 l 2 - 551.16015625 288 544 295.16015625 544 304 c 2 - 544 320 l 2 - 544 337.639648438 529.639648438 352 512 352 c 0 - 494.360351562 352 480 337.639648438 480 320 c 2 - 480 91.490234375 l 1 - 469.58984375 87.759765625 459.559570312 81.8798828125 450.389648438 73.419921875 c 0 - 446.860351562 70.16015625 435.120117188 64 416 64 c 1 - 416 160 l 1 - 224 160 l 1 - 224 64 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" s w i m m i n g hyphen p o o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" S w i m m i n g hyphen P o o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" S w i m m i n g hyphen p o o l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" S W I M M I N G hyphen P O O L -EndChar - -StartChar: tint-slash -Encoding: 62919 62919 802 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -633.8203125 -10.099609375 m 2 - 640.799804688 -15.5302734375 642.049804688 -25.580078125 636.639648438 -32.5498046875 c 2 - 617 -57.8203125 l 2 - 611.5703125 -64.7998046875 601.51953125 -66.0595703125 594.540039062 -60.6298828125 c 2 - 6.1796875 394.099609375 l 2 - -0.7998046875 399.530273438 -2.0498046875 409.580078125 3.3701171875 416.549804688 c 2 - 23.009765625 441.8203125 l 2 - 28.4296875 448.799804688 38.490234375 450.049804688 45.4697265625 444.629882812 c 2 - 232.290039062 300.23046875 l 1 - 253.91015625 333.950195312 275.259765625 373.5703125 290.780273438 425.91015625 c 0 - 299.780273438 456.030273438 341.280273438 454.690429688 349.219726562 425.91015625 c 0 - 396.209960938 267.4296875 496 225.849609375 496 114.08984375 c 0 - 496 108.379882812 495.490234375 102.790039062 494.969726562 97.2197265625 c 1 - 633.8203125 -10.099609375 l 2 -144 114.08984375 m 0 - 144 143.870117188 151.309570312 168.719726562 162.719726562 192.219726562 c 1 - 436.400390625 -19.2998046875 l 1 - 405.370117188 -47.0400390625 364.709960938 -64 320 -64 c 0 - 222.719726562 -64 144 15.650390625 144 114.08984375 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" t i n t hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" T i n t hyphen S l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" T i n t hyphen s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" T I N T hyphen S L A S H -EndChar - -StartChar: tired -Encoding: 62920 62920 803 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -281.799804688 250.299804688 m 2 - 274.099609375 245.599609375 274.099609375 234.400390625 281.799804688 229.700195312 c 2 - 361.799804688 181.700195312 l 2 - 373.299804688 174.900390625 385.900390625 189.299804688 377.200195312 199.700195312 c 2 - 343.599609375 240 l 1 - 377.200195312 280.299804688 l 2 - 385.799804688 290.599609375 373.400390625 305.200195312 361.799804688 298.299804688 c 2 - 281.799804688 250.299804688 l 2 -118.799804688 280.299804688 m 2 - 152.400390625 240 l 1 - 118.799804688 199.700195312 l 2 - 110.200195312 189.299804688 122.700195312 174.900390625 134.200195312 181.700195312 c 2 - 214.200195312 229.700195312 l 2 - 222 234.400390625 222 245.599609375 214.200195312 250.299804688 c 2 - 134.200195312 298.299804688 l 2 - 122.599609375 305.200195312 110.200195312 290.599609375 118.799804688 280.299804688 c 2 -248 160 m 0 - 196.099609375 160 132.700195312 116.200195312 124.799804688 53.2998046875 c 0 - 123.099609375 39.900390625 132.700195312 28.7001953125 142.5 32.900390625 c 0 - 168.400390625 44 206.900390625 50.2998046875 248 50.2998046875 c 0 - 289.099609375 50.2998046875 327.599609375 44 353.5 32.900390625 c 0 - 363.200195312 28.7001953125 372.900390625 39.7001953125 371.200195312 53.2998046875 c 0 - 363.299804688 116.200195312 299.900390625 160 248 160 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" t i r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T i r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T I R E D -EndChar - -StartChar: tooth -Encoding: 62921 62921 804 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -443.98046875 351.75 m 0 - 454.110351562 310.120117188 444.400390625 270.9296875 422.450195312 241.3203125 c 0 - 399.08984375 209.75 389.76953125 172.669921875 386.16015625 133.969726562 c 0 - 381.75 86.8095703125 375.830078125 39.7998046875 365.219726562 -6.349609375 c 2 - 357.419921875 -40.2998046875 l 2 - 354.23046875 -54.169921875 341.9296875 -64 327.75 -64 c 0 - 313.780273438 -64 301.599609375 -54.4501953125 298.209960938 -40.83984375 c 2 - 263.740234375 97.580078125 l 2 - 259.1796875 115.889648438 242.780273438 128.740234375 223.98046875 128.740234375 c 0 - 205.1796875 128.740234375 188.780273438 115.900390625 184.219726562 97.580078125 c 2 - 149.75 -40.83984375 l 2 - 146.360351562 -54.4501953125 134.1796875 -64 120.209960938 -64 c 0 - 106.030273438 -64 93.73046875 -54.169921875 90.5400390625 -40.2998046875 c 2 - 82.740234375 -6.349609375 l 2 - 72.1298828125 39.8095703125 66.2001953125 86.8095703125 61.7998046875 133.969726562 c 0 - 58.1904296875 172.66015625 48.8701171875 209.75 25.509765625 241.3203125 c 0 - 3.58984375 270.940429688 -6.1201171875 310.129882812 4.009765625 351.75 c 0 - 15.01953125 396.969726562 51.1201171875 433.799804688 96.01953125 445.469726562 c 0 - 119.450195312 451.559570312 142.129882812 446.009765625 162.830078125 435.16015625 c 2 - 263.33984375 370.540039062 l 2 - 271.1796875 365.48046875 280.990234375 368.389648438 285.450195312 375.33984375 c 0 - 290.23046875 382.780273438 288.0703125 392.6796875 280.650390625 397.450195312 c 2 - 252.330078125 415.66015625 l 2 - 255.870117188 417.41015625 259.580078125 418.75 262.830078125 421.139648438 c 0 - 288.969726562 440.370117188 319.780273438 453.830078125 351.969726562 445.469726562 c 0 - 396.870117188 433.809570312 432.969726562 396.969726562 443.98046875 351.75 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" t o o t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" T o o t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" T O O T H -EndChar - -StartChar: umbrella-beach -Encoding: 62922 62922 805 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -115.379882812 311.099609375 m 2 - 105.299804688 314.76953125 101.26953125 327.419921875 107.959960938 335.8203125 c 0 - 167.709960938 410.66015625 260.610351562 452.509765625 356.490234375 447.620117188 c 1 - 303.700195312 418.209960938 252.6796875 355.459960938 217.490234375 273.919921875 c 1 - 115.379882812 311.099609375 l 2 -247.629882812 262.940429688 m 1 - 292.120117188 364.919921875 362.370117188 434.080078125 420.389648438 434.08984375 c 0 - 428.349609375 434.08984375 436.080078125 432.790039062 443.48046875 430.08984375 c 0 - 504.809570312 407.76953125 521.870117188 297.490234375 486.110351562 176.110351562 c 1 - 247.629882812 262.940429688 l 1 -521.48046875 387.5 m 1 - 598.009765625 329.580078125 642.240234375 237.830078125 639.919921875 142.139648438 c 0 - 639.66015625 131.400390625 628.440429688 124.299804688 618.349609375 127.969726562 c 2 - 515.73046875 165.330078125 l 1 - 533.259765625 224.080078125 540.419921875 282.419921875 534.6796875 332.309570312 c 0 - 532.309570312 352.900390625 527.700195312 371.200195312 521.48046875 387.5 c 1 -560 0.01953125 m 2 - 568.83984375 0.01953125 576 -7.1396484375 576 -15.98046875 c 2 - 576 -47.990234375 l 2 - 576 -56.830078125 568.83984375 -64 560 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.830078125 0 -47.990234375 c 2 - 0 -15.98046875 l 2 - 0 -7.1298828125 7.16015625 0.0302734375 16 0.0302734375 c 2 - 252.959960938 0.0302734375 l 1 - 325.860351562 200.400390625 l 1 - 386 178.5 l 1 - 321.059570312 0.01953125 l 1 - 560 0.01953125 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" u m b r e l l a hyphen b e a c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" U m b r e l l a hyphen B e a c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" U m b r e l l a hyphen b e a c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" U M B R E L L A hyphen B E A C H -EndChar - -StartChar: vector-square -Encoding: 62923 62923 806 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 320 m 2 - 512 302.330078125 497.669921875 288 480 288 c 1 - 480 96 l 1 - 497.669921875 96 512 81.669921875 512 64 c 2 - 512 -32 l 2 - 512 -49.669921875 497.669921875 -64 480 -64 c 2 - 384 -64 l 2 - 366.330078125 -64 352 -49.669921875 352 -32 c 1 - 160 -32 l 1 - 160 -49.669921875 145.669921875 -64 128 -64 c 2 - 32 -64 l 2 - 14.330078125 -64 0 -49.669921875 0 -32 c 2 - 0 64 l 2 - 0 81.669921875 14.330078125 96 32 96 c 1 - 32 288 l 1 - 14.330078125 288 0 302.330078125 0 320 c 2 - 0 416 l 2 - 0 433.669921875 14.330078125 448 32 448 c 2 - 128 448 l 2 - 145.669921875 448 160 433.669921875 160 416 c 1 - 352 416 l 1 - 352 433.669921875 366.330078125 448 384 448 c 2 - 480 448 l 2 - 497.669921875 448 512 433.669921875 512 416 c 2 - 512 320 l 2 -416 384 m 1 - 416 352 l 1 - 448 352 l 1 - 448 384 l 1 - 416 384 l 1 -64 384 m 1 - 64 352 l 1 - 96 352 l 1 - 96 384 l 1 - 64 384 l 1 -96 0 m 1 - 96 32 l 1 - 64 32 l 1 - 64 0 l 1 - 96 0 l 1 -448 0 m 1 - 448 32 l 1 - 416 32 l 1 - 416 0 l 1 - 448 0 l 1 -416 96 m 1 - 416 288 l 1 - 384 288 l 2 - 366.330078125 288 352 302.330078125 352 320 c 2 - 352 352 l 1 - 160 352 l 1 - 160 320 l 2 - 160 302.330078125 145.669921875 288 128 288 c 2 - 96 288 l 1 - 96 96 l 1 - 128 96 l 2 - 145.669921875 96 160 81.669921875 160 64 c 2 - 160 32 l 1 - 352 32 l 1 - 352 64 l 2 - 352 81.669921875 366.330078125 96 384 96 c 2 - 416 96 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" v e c t o r hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" V e c t o r hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" V e c t o r hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" V E C T O R hyphen S Q U A R E -EndChar - -StartChar: weight-hanging -Encoding: 62925 62925 807 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -510.280273438 2.1396484375 m 2 - 518.610351562 -31.169921875 495.620117188 -64 463.98046875 -64 c 2 - 48.0302734375 -64 l 2 - 16.3798828125 -64 -6.6103515625 -31.169921875 1.7197265625 2.1396484375 c 2 - 74.76953125 294.26953125 l 2 - 78.5595703125 309.450195312 91.2099609375 319.990234375 105.639648438 319.990234375 c 2 - 165.889648438 319.990234375 l 1 - 162.309570312 330.040039062 160.009765625 340.709960938 160.009765625 351.990234375 c 0 - 160.009765625 405.009765625 202.990234375 447.990234375 256.009765625 447.990234375 c 0 - 309.030273438 447.990234375 352.009765625 405.009765625 352.009765625 351.990234375 c 0 - 352.009765625 340.709960938 349.700195312 330.040039062 346.129882812 319.990234375 c 1 - 406.379882812 319.990234375 l 2 - 420.809570312 319.990234375 433.450195312 309.459960938 437.25 294.26953125 c 2 - 510.280273438 2.1396484375 l 2 -256 320 m 0 - 273.639648438 320 288 334.360351562 288 352 c 0 - 288 369.639648438 273.639648438 384 256 384 c 0 - 238.360351562 384 224 369.639648438 224 352 c 0 - 224 334.360351562 238.360351562 320 256 320 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" w e i g h t hyphen h a n g i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" W e i g h t hyphen H a n g i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" W e i g h t hyphen h a n g i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" W E I G H T hyphen H A N G I N G -EndChar - -StartChar: wine-glass-alt -Encoding: 62926 62926 808 -Width: 288 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -216 -16 m 2 - 238.08984375 -16 256 -33.91015625 256 -56 c 0 - 256 -60.419921875 252.419921875 -64 248 -64 c 2 - 40 -64 l 2 - 35.580078125 -64 32 -60.419921875 32 -56 c 0 - 32 -33.91015625 49.91015625 -16 72 -16 c 2 - 112 -16 l 1 - 112 101.1796875 l 1 - 43.5302734375 117.0703125 -6.0498046875 181.08984375 0.599609375 255.33984375 c 2 - 16.5595703125 433.450195312 l 2 - 17.2900390625 441.690429688 24.1103515625 448 32.259765625 448 c 2 - 255.740234375 448 l 2 - 263.900390625 448 270.709960938 441.690429688 271.450195312 433.450195312 c 2 - 287.400390625 255.349609375 l 2 - 294.049804688 181.099609375 244.469726562 117.080078125 176 101.190429688 c 1 - 176 -16 l 1 - 216 -16 l 2 -61.75 400 m 1 - 54.580078125 320 l 1 - 233.419921875 320 l 1 - 226.25 400 l 1 - 61.75 400 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" w i n e hyphen g l a s s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" W i n e hyphen G l a s s hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" W i n e hyphen g l a s s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" W I N E hyphen G L A S S hyphen A L T -EndChar - -StartChar: air-freshener -Encoding: 62928 62928 809 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -378.940429688 126.58984375 m 2 - 390.690429688 114.440429688 380.66015625 96 362.299804688 96 c 2 - 224 96 l 1 - 224 64 l 1 - 336 64 l 2 - 344.83984375 64 352 56.83984375 352 48 c 2 - 352 -48 l 2 - 352 -56.83984375 344.83984375 -64 336 -64 c 2 - 48 -64 l 2 - 39.16015625 -64 32 -56.83984375 32 -48 c 2 - 32 48 l 2 - 32 56.83984375 39.16015625 64 48 64 c 2 - 160 64 l 1 - 160 96 l 1 - 21.7001953125 96 l 2 - 3.33984375 96 -6.6904296875 114.440429688 5.0595703125 126.58984375 c 2 - 99.2998046875 224 l 1 - 50.080078125 224 l 2 - 34.7802734375 224 26.419921875 240.599609375 36.2197265625 251.530273438 c 2 - 149.549804688 378.040039062 l 1 - 146.120117188 384.650390625 144 392.040039062 144 400 c 0 - 144 426.509765625 165.490234375 448 192 448 c 0 - 218.509765625 448 240 426.509765625 240 400 c 0 - 240 392.040039062 237.879882812 384.650390625 234.450195312 378.040039062 c 1 - 347.780273438 251.530273438 l 2 - 357.580078125 240.599609375 349.219726562 224 333.919921875 224 c 2 - 284.700195312 224 l 1 - 378.940429688 126.58984375 l 2 -192 416.01953125 m 0 - 183.150390625 416.01953125 175.98046875 408.849609375 175.98046875 400 c 0 - 175.98046875 391.16015625 183.150390625 383.98046875 192 383.98046875 c 0 - 200.849609375 383.98046875 208.01953125 391.16015625 208.01953125 400 c 0 - 208.01953125 408.849609375 200.849609375 416.01953125 192 416.01953125 c 0 -304 16 m 1 - 80 16 l 1 - 80 -16 l 1 - 304 -16 l 1 - 304 16 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" a i r hyphen f r e s h e n e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" A i r hyphen F r e s h e n e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" A i r hyphen f r e s h e n e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" A I R hyphen F R E S H E N E R -EndChar - -StartChar: apple-alt -Encoding: 62929 62929 810 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -350.849609375 319 m 0 - 376.8203125 314.330078125 398.120117188 300.330078125 414.76953125 277 c 0 - 429.419921875 256.330078125 439.41015625 230.330078125 444.73046875 199 c 0 - 449.400390625 170.330078125 449.049804688 141.669921875 443.73046875 113 c 0 - 435.740234375 65.669921875 419.759765625 26 395.790039062 -6 c 0 - 367.150390625 -44.669921875 331.200195312 -64 287.919921875 -64 c 0 - 277.259765625 -64 265.620117188 -60.669921875 252.959960938 -54 c 0 - 244.299804688 -48.669921875 234.650390625 -46 223.990234375 -46 c 0 - 213.330078125 -46 203.690429688 -48.669921875 195.01953125 -54 c 0 - 182.360351562 -60.669921875 170.719726562 -64 160.059570312 -64 c 0 - 116.780273438 -64 80.830078125 -44.669921875 52.1904296875 -6 c 0 - 28.2197265625 26 12.240234375 65.669921875 4.25 113 c 0 - -1.0703125 141.669921875 -1.419921875 170.330078125 3.25 199 c 0 - 8.5703125 230.330078125 18.5595703125 256.330078125 33.2099609375 277 c 0 - 49.8603515625 300.330078125 71.16015625 314.330078125 97.1298828125 319 c 0 - 113.110351562 321.669921875 135.080078125 319.330078125 163.049804688 312 c 0 - 187.01953125 305.330078125 207.330078125 297.330078125 223.98046875 288 c 1 - 240.629882812 297.330078125 260.940429688 305.330078125 284.91015625 312 c 0 - 312.889648438 319.330078125 334.870117188 321.669921875 350.849609375 319 c 0 -295.91015625 360 m 0 - 286.58984375 351.330078125 274.259765625 345 258.950195312 341 c 0 - 248.290039062 337.669921875 236.650390625 336 223.990234375 336 c 2 - 209.009765625 337 l 1 - 207.6796875 346.330078125 207.6796875 357 209.009765625 369 c 0 - 211.6796875 393 219.330078125 411.330078125 231.98046875 424 c 0 - 241.299804688 432.669921875 253.629882812 439 268.940429688 443 c 0 - 279.599609375 446.330078125 291.240234375 448 303.900390625 448 c 2 - 318.879882812 447 l 1 - 319.879882812 432 l 2 - 319.879882812 419.330078125 318.209960938 407.669921875 314.889648438 397 c 0 - 310.900390625 381.669921875 304.580078125 369.330078125 295.91015625 360 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" a p p l e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" A p p l e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" A P P L E hyphen A L T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" A p p l e hyphen A l t -EndChar - -StartChar: atom -Encoding: 62930 62930 811 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -413.030273438 192 m 1 - 453.169921875 137.08984375 454.549804688 93.400390625 438.169921875 64 c 0 - 408.950195312 11.66015625 336.48046875 20.419921875 321.83984375 22.1201171875 c 1 - 300.370117188 -29.099609375 267.639648438 -64 224 -64 c 0 - 180.360351562 -64 147.629882812 -29.099609375 126.16015625 22.1201171875 c 1 - 111.509765625 20.419921875 39.0400390625 11.66015625 9.830078125 64 c 0 - -6.5400390625 93.3798828125 -5.16015625 137.110351562 34.9697265625 192 c 1 - -5.169921875 246.91015625 -6.5498046875 290.599609375 9.830078125 320 c 0 - 20.73046875 339.51953125 50.4296875 370.66015625 126.16015625 361.879882812 c 1 - 147.639648438 413.110351562 180.360351562 448 224 448 c 0 - 267.639648438 448 300.360351562 413.110351562 321.83984375 361.879882812 c 1 - 397.629882812 370.73046875 427.259765625 339.51953125 438.169921875 320 c 0 - 454.540039062 290.620117188 453.16015625 246.889648438 413.030273438 192 c 1 -63.3798828125 96 m 0 - 67.0703125 89.400390625 82.400390625 84.1396484375 106.959960938 85.0302734375 c 1 - 104.200195312 98.0302734375 101.91015625 111.400390625 100.200195312 125.110351562 c 1 - 92.5302734375 131.400390625 85.2900390625 137.759765625 78.330078125 144.290039062 c 1 - 63.1904296875 120.799804688 59.349609375 103.209960938 63.3798828125 96 c 0 -100.200195312 258.879882812 m 1 - 101.59375 270.061523438 104.635742188 288.080078125 106.990234375 299.099609375 c 1 - 105.169921875 299.169921875 103.009765625 299.469726562 101.299804688 299.469726562 c 0 - 79.76953125 299.469726562 66.7900390625 294.139648438 63.3798828125 288 c 0 - 59.3603515625 280.790039062 63.2001953125 263.200195312 78.330078125 239.700195312 c 1 - 85.2998046875 246.23046875 92.5400390625 252.58984375 100.200195312 258.879882812 c 1 -224 384 m 0 - 214.530273438 384 201.799804688 370.48046875 190.139648438 346.740234375 c 1 - 201.330078125 343.040039062 212.580078125 338.740234375 224 333.879882812 c 1 - 235.419921875 338.740234375 246.669921875 343.040039062 257.860351562 346.740234375 c 1 - 246.200195312 370.48046875 233.469726562 384 224 384 c 0 -224 0 m 0 - 233.469726562 0 246.200195312 13.51953125 257.860351562 37.259765625 c 1 - 246.669921875 40.9599609375 235.419921875 45.259765625 224 50.1201171875 c 1 - 212.580078125 45.259765625 201.330078125 40.9599609375 190.139648438 37.259765625 c 1 - 201.799804688 13.51953125 214.530273438 0 224 0 c 0 -286.5 157.330078125 m 1 - 288.490234375 185.129882812 288.48046875 198.879882812 286.5 226.66015625 c 1 - 259.860351562 245.700195312 240.389648438 255.969726562 224 264.139648438 c 1 - 207.629882812 255.98046875 188.169921875 245.709960938 161.5 226.66015625 c 1 - 159.509765625 198.870117188 159.509765625 185.120117188 161.5 157.330078125 c 1 - 188.200195312 138.259765625 207.650390625 127.990234375 224 119.849609375 c 1 - 240.360351562 128 259.799804688 138.25 286.5 157.330078125 c 1 -384.620117188 96 m 0 - 388.639648438 103.209960938 384.799804688 120.799804688 369.669921875 144.290039062 c 1 - 362.700195312 137.759765625 355.459960938 131.400390625 347.799804688 125.110351562 c 1 - 346.08984375 111.419921875 343.799804688 98.0498046875 341.040039062 85.0498046875 c 1 - 365.620117188 84.1796875 380.950195312 89.3798828125 384.620117188 96 c 0 -369.669921875 239.709960938 m 1 - 384.799804688 263.200195312 388.639648438 280.790039062 384.620117188 288.009765625 c 0 - 381.209960938 294.139648438 368.219726562 299.48046875 346.700195312 299.48046875 c 0 - 344.98046875 299.48046875 342.830078125 299.1796875 341.009765625 299.110351562 c 1 - 343.362304688 288.08984375 346.404296875 270.071289062 347.799804688 258.889648438 c 1 - 355.469726562 252.599609375 362.709960938 246.240234375 369.669921875 239.709960938 c 1 -224 224 m 0 - 241.669921875 224 256 209.669921875 256 192 c 0 - 256 174.330078125 241.669921875 160 224 160 c 0 - 206.330078125 160 192 174.330078125 192 192 c 0 - 192 209.669921875 206.330078125 224 224 224 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" a t o m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" A t o m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" A T O M -EndChar - -StartChar: bone -Encoding: 62935 62935 812 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -598.879882812 203.440429688 m 0 - 589.450195312 198.73046875 589.450195312 185.26953125 598.870117188 180.559570312 c 0 - 624.0703125 167.959960938 639.990234375 142.209960938 639.990234375 114.030273438 c 2 - 639.990234375 106.389648438 l 2 - 639.990234375 65.2998046875 606.690429688 32 565.610351562 32 c 0 - 533.599609375 32 505.169921875 52.490234375 495.040039062 82.8603515625 c 0 - 488.509765625 102.459960938 484.309570312 128 456.9296875 128 c 2 - 183.059570312 128 l 2 - 156.549804688 128 152.629882812 105.889648438 144.950195312 82.8603515625 c 0 - 134.8203125 52.490234375 106.400390625 32 74.3798828125 32 c 0 - 33.2998046875 32 0 65.2998046875 0 106.389648438 c 2 - 0 114.030273438 l 2 - 0 142.200195312 15.919921875 167.959960938 41.1201171875 180.559570312 c 0 - 50.5498046875 185.26953125 50.5498046875 198.73046875 41.1201171875 203.440429688 c 0 - 15.919921875 216.040039062 0 241.799804688 0 269.969726562 c 2 - 0 277.610351562 l 2 - 0 318.700195312 33.2998046875 352 74.3896484375 352 c 0 - 106.400390625 352 134.830078125 331.509765625 144.950195312 301.139648438 c 0 - 151.48046875 281.540039062 155.6796875 256 183.059570312 256 c 2 - 456.9296875 256 l 2 - 483.440429688 256 487.360351562 278.110351562 495.040039062 301.139648438 c 0 - 505.169921875 331.509765625 533.58984375 352 565.610351562 352 c 0 - 606.700195312 352 640 318.700195312 640 277.610351562 c 2 - 640 269.969726562 l 2 - 640 241.799804688 624.080078125 216.040039062 598.879882812 203.440429688 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" b o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" B O N E -EndChar - -StartChar: book-reader -Encoding: 62938 62938 813 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -352 352 m 0 - 352 298.98046875 309.01953125 256 256 256 c 0 - 202.98046875 256 160 298.98046875 160 352 c 0 - 160 405.01953125 202.98046875 448 256 448 c 0 - 309.01953125 448 352 405.01953125 352 352 c 0 -233.58984375 206.900390625 m 0 - 237.690429688 204.389648438 240 200.110351562 240.009765625 195.440429688 c 2 - 240.009765625 -50.5498046875 l 2 - 240.009765625 -60.7099609375 228.900390625 -67.1396484375 219.530273438 -62.419921875 c 0 - 158.48046875 -31.669921875 70.150390625 -23.2802734375 26.490234375 -20.990234375 c 0 - 11.58984375 -20.2197265625 0 -8.26953125 0 6.0595703125 c 2 - 0 228.860351562 l 2 - 0 244.490234375 13.5498046875 256.870117188 29.7998046875 255.950195312 c 0 - 78.16015625 253.200195312 174.259765625 243.219726562 233.58984375 206.900390625 c 0 -482.200195312 255.950195312 m 0 - 498.450195312 256.870117188 512 244.490234375 512.009765625 228.860351562 c 2 - 512.009765625 6.0400390625 l 2 - 512.009765625 -8.2900390625 500.419921875 -20.240234375 485.51953125 -21.01953125 c 0 - 441.870117188 -23.3095703125 353.58984375 -31.7001953125 292.549804688 -62.419921875 c 0 - 283.150390625 -67.150390625 272.009765625 -60.7099609375 272.009765625 -50.51953125 c 2 - 272.009765625 195.26953125 l 2 - 272.009765625 199.940429688 274.3203125 204.389648438 278.419921875 206.900390625 c 0 - 337.740234375 243.219726562 433.849609375 253.209960938 482.200195312 255.950195312 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" b o o k hyphen r e a d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" B o o k hyphen R e a d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" B o o k hyphen r e a d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" B O O K hyphen R E A D E R -EndChar - -StartChar: brain -Encoding: 62940 62940 814 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -208 448 m 0 - 243.299804688 448 272 419.299804688 272 384 c 2 - 272 8 l 2 - 272 -31.7998046875 239.799804688 -64 200 -64 c 0 - 168.200195312 -64 141.599609375 -43.2998046875 132 -14.7998046875 c 0 - 128.099609375 -15.5 124.099609375 -16 120 -16 c 0 - 80.2001953125 -16 48 16.2001953125 48 56 c 0 - 48 60.7998046875 48.5 65.5 49.400390625 70.099609375 c 1 - 20.400390625 82.099609375 0 110.700195312 0 144 c 0 - 0 173.700195312 16.2998046875 199.299804688 40.2998046875 213.099609375 c 1 - 35.2001953125 223.700195312 32 235.400390625 32 248 c 0 - 32 281.400390625 52.5 310 81.7001953125 322 c 1 - 80.599609375 326.5 80 331.200195312 80 336 c 0 - 80 371.299804688 108.700195312 400 144 400 c 0 - 144.799804688 400 145.400390625 399.799804688 146.200195312 399.799804688 c 0 - 153.299804688 427.5 178.099609375 448 208 448 c 0 -576 144 m 0 - 576 110.700195312 555.599609375 82.099609375 526.599609375 70.099609375 c 1 - 527.5 65.5 528 60.7998046875 528 56 c 0 - 528 16.2001953125 495.799804688 -16 456 -16 c 0 - 451.900390625 -16 447.900390625 -15.5 444 -14.7998046875 c 0 - 434.400390625 -43.2998046875 407.799804688 -64 376 -64 c 0 - 336.200195312 -64 304 -31.7998046875 304 8 c 2 - 304 384 l 2 - 304 419.400390625 332.700195312 448 368 448 c 0 - 397.900390625 448 422.700195312 427.5 429.799804688 399.799804688 c 0 - 430.5 399.799804688 431.200195312 400 432 400 c 0 - 467.299804688 400 496 371.299804688 496 336 c 0 - 496 331.200195312 495.299804688 326.5 494.299804688 322 c 1 - 523.5 310 544 281.400390625 544 248 c 0 - 544 235.400390625 540.900390625 223.700195312 535.700195312 213.099609375 c 1 - 559.700195312 199.299804688 576 173.700195312 576 144 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" b r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" B r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" B R A I N -EndChar - -StartChar: car-alt -Encoding: 62942 62942 815 -Width: 480 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -438.66015625 235.669921875 m 1 - 462.780273438 226.5 480 203.33984375 480 176 c 2 - 480 128 l 2 - 480 111.870117188 473.83984375 97.3203125 464 86.0703125 c 1 - 464 32 l 2 - 464 14.330078125 449.669921875 0 432 0 c 2 - 400 0 l 2 - 382.330078125 0 368 14.330078125 368 32 c 2 - 368 64 l 1 - 112 64 l 1 - 112 32 l 2 - 112 14.330078125 97.669921875 0 80 0 c 2 - 48 0 l 2 - 30.330078125 0 16 14.330078125 16 32 c 2 - 16 86.0703125 l 1 - 6.16015625 97.330078125 0 111.879882812 0 128 c 2 - 0 176 l 2 - 0 203.33984375 17.2197265625 226.5 41.33984375 235.669921875 c 1 - 52.580078125 263.76953125 l 1 - 72.509765625 313.599609375 l 2 - 89.6201171875 356.370117188 130.440429688 384 176.5 384 c 2 - 303.5 384 l 2 - 349.5703125 384 390.379882812 356.370117188 407.490234375 313.599609375 c 2 - 427.419921875 263.76953125 l 1 - 438.66015625 235.669921875 l 1 -131.9296875 289.830078125 m 2 - 112 240 l 1 - 368 240 l 1 - 348.0703125 289.830078125 l 2 - 340.780273438 308.049804688 323.129882812 320 303.5 320 c 2 - 176.5 320 l 2 - 156.870117188 320 139.219726562 308.049804688 131.9296875 289.830078125 c 2 -80 128.200195312 m 0 - 99.2001953125 128.200195312 128 125.009765625 128 144.150390625 c 0 - 128 163.290039062 99.2001953125 192 80 192 c 0 - 60.7998046875 192 48 179.240234375 48 160.099609375 c 0 - 48 140.959960938 60.7998046875 128.200195312 80 128.200195312 c 0 -400 128.200195312 m 0 - 419.200195312 128.200195312 432 140.959960938 432 160.099609375 c 0 - 432 179.240234375 419.200195312 192 400 192 c 0 - 380.799804688 192 352 163.290039062 352 144.150390625 c 0 - 352 125.009765625 380.799804688 128.200195312 400 128.200195312 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" c a r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" C a r hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" C A R hyphen A L T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" C a r hyphen A l t -EndChar - -StartChar: car-battery -Encoding: 62943 62943 816 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480 320 m 2 - 497.669921875 320 512 305.669921875 512 288 c 2 - 512 32 l 2 - 512 14.330078125 497.669921875 0 480 0 c 2 - 32 0 l 2 - 14.330078125 0 0 14.330078125 0 32 c 2 - 0 288 l 2 - 0 305.669921875 14.330078125 320 32 320 c 2 - 64 320 l 1 - 64 368 l 2 - 64 376.83984375 71.16015625 384 80 384 c 2 - 176 384 l 2 - 184.83984375 384 192 376.83984375 192 368 c 2 - 192 320 l 1 - 320 320 l 1 - 320 368 l 2 - 320 376.83984375 327.16015625 384 336 384 c 2 - 432 384 l 2 - 440.83984375 384 448 376.83984375 448 368 c 2 - 448 320 l 1 - 480 320 l 2 -192 184 m 2 - 192 200 l 2 - 192 204.419921875 188.419921875 208 184 208 c 2 - 72 208 l 2 - 67.580078125 208 64 204.419921875 64 200 c 2 - 64 184 l 2 - 64 179.580078125 67.580078125 176 72 176 c 2 - 184 176 l 2 - 188.419921875 176 192 179.580078125 192 184 c 2 -448 184 m 2 - 448 200 l 2 - 448 204.419921875 444.419921875 208 440 208 c 2 - 400 208 l 1 - 400 248 l 2 - 400 252.419921875 396.419921875 256 392 256 c 2 - 376 256 l 2 - 371.580078125 256 368 252.419921875 368 248 c 2 - 368 208 l 1 - 328 208 l 2 - 323.580078125 208 320 204.419921875 320 200 c 2 - 320 184 l 2 - 320 179.580078125 323.580078125 176 328 176 c 2 - 368 176 l 1 - 368 136 l 2 - 368 131.580078125 371.580078125 128 376 128 c 2 - 392 128 l 2 - 396.419921875 128 400 131.580078125 400 136 c 2 - 400 176 l 1 - 440 176 l 2 - 444.419921875 176 448 179.580078125 448 184 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" c a r hyphen b a t t e r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" C a r hyphen B a t t e r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" C a r hyphen b a t t e r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" C A R hyphen B A T T E R Y -EndChar - -StartChar: car-crash -Encoding: 62945 62945 817 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -143.25 227.190429688 m 2 - 130.830078125 180.8203125 l 2 - 127.8203125 169.5703125 127.200195312 157.9296875 128.419921875 146.4296875 c 1 - 93.2197265625 117.450195312 l 2 - 86.650390625 112.040039062 76.91015625 117.879882812 78.599609375 126.219726562 c 2 - 94.0400390625 202.900390625 l 2 - 95.099609375 208.16015625 91.3798828125 213.1796875 86.0400390625 213.690429688 c 2 - 8.1796875 221.240234375 l 2 - -0.2900390625 222.059570312 -3.0498046875 233.0703125 4.0400390625 237.780273438 c 2 - 69.1904296875 281.080078125 l 2 - 73.650390625 284.049804688 74.5703125 290.23046875 71.169921875 294.370117188 c 2 - 21.4599609375 354.780273438 l 2 - 16.0498046875 361.349609375 21.8896484375 371.080078125 30.240234375 369.400390625 c 2 - 106.919921875 353.959960938 l 2 - 112.1796875 352.900390625 117.200195312 356.620117188 117.719726562 361.959960938 c 2 - 125.26953125 439.8203125 l 2 - 126.08984375 448.299804688 137.099609375 451.049804688 141.8203125 443.959960938 c 2 - 185.120117188 378.8203125 l 2 - 188.08984375 374.360351562 194.26953125 373.440429688 198.41015625 376.83984375 c 2 - 258.809570312 426.549804688 l 2 - 265.379882812 431.959960938 275.110351562 426.120117188 273.4296875 417.780273438 c 2 - 262.099609375 361.620117188 l 2 - 259.389648438 358.5703125 256.669921875 355.530273438 254.190429688 352.219726562 c 2 - 222.040039062 309.25 l 1 - 211.330078125 294.9296875 l 1 - 178.599609375 286.169921875 152.150390625 260.400390625 143.25 227.190429688 c 2 -637.8203125 94.6796875 m 2 - 625.400390625 48.3203125 l 2 - 622.26953125 36.6396484375 616.01953125 26.7099609375 607.849609375 18.9599609375 c 0 - 605.594726562 16.82421875 601.669921875 13.6884765625 599.08984375 11.9599609375 c 2 - 585.099609375 -40.26953125 l 2 - 583.959960938 -44.5400390625 582 -48.3701171875 579.450195312 -51.650390625 c 0 - 571.780273438 -61.490234375 558.709960938 -66.330078125 545.91015625 -62.900390625 c 2 - 515 -54.6201171875 l 2 - 497.9296875 -50.0498046875 487.799804688 -32.5 492.370117188 -15.4296875 c 2 - 500.650390625 15.48046875 l 1 - 253.370117188 81.740234375 l 1 - 245.08984375 50.830078125 l 2 - 240.51953125 33.759765625 222.969726562 23.6298828125 205.900390625 28.2001953125 c 2 - 174.990234375 36.48046875 l 2 - 162.190429688 39.91015625 153.290039062 50.6396484375 151.5703125 62.990234375 c 0 - 151 67.1103515625 151.219726562 71.41015625 152.360351562 75.669921875 c 2 - 166.349609375 127.900390625 l 2 - 164.977539062 130.688476562 163.145507812 135.370117188 162.259765625 138.349609375 c 0 - 159.059570312 149.139648438 158.610351562 160.870117188 161.740234375 172.549804688 c 2 - 174.16015625 218.919921875 l 2 - 179.469726562 238.719726562 193.51953125 253.75 211.049804688 261.129882812 c 0 - 215.958007812 263.198242188 224.241210938 265.3125 229.540039062 265.849609375 c 2 - 247.669921875 290.080078125 l 1 - 279.8203125 333.049804688 l 2 - 283.26953125 337.66015625 287.009765625 341.950195312 291.01953125 345.889648438 c 0 - 299.01953125 353.780273438 308.049804688 360.330078125 317.759765625 365.400390625 c 0 - 322.620117188 367.940429688 327.650390625 370.110351562 332.809570312 371.889648438 c 0 - 343.139648438 375.469726562 354 377.51953125 365.049804688 377.9296875 c 0 - 376.099609375 378.33984375 387.360351562 377.110351562 398.48046875 374.129882812 c 2 - 521.16015625 341.259765625 l 2 - 532.280273438 338.280273438 542.639648438 333.719726562 552.009765625 327.830078125 c 0 - 563.733398438 320.46875 579.274414062 305.012695312 586.700195312 293.330078125 c 0 - 595.51953125 279.450195312 601.33984375 263.490234375 603.379882812 246.33984375 c 2 - 609.740234375 193.049804688 l 1 - 613.330078125 163 l 1 - 622.123046875 156.651367188 632.310546875 143.243164062 636.0703125 133.0703125 c 0 - 640.459960938 121.190429688 641.360351562 107.879882812 637.8203125 94.6796875 c 2 -255.580078125 213.66015625 m 0 - 237.030273438 218.629882812 221.370117188 209.620117188 216.41015625 191.129882812 c 0 - 211.450195312 172.639648438 220.51953125 157.009765625 239.059570312 152.040039062 c 0 - 257.610351562 147.0703125 284.599609375 136.530273438 289.549804688 155.01953125 c 0 - 294.509765625 173.509765625 274.120117188 208.690429688 255.580078125 213.66015625 c 0 -546.190429688 185.490234375 m 1 - 539.830078125 238.780273438 l 2 - 539.25 243.650390625 537.940429688 248.309570312 536.009765625 252.639648438 c 0 - 530.209960938 265.629882812 518.809570312 275.650390625 504.58984375 279.459960938 c 2 - 381.91015625 312.330078125 l 2 - 378.541015625 313.232421875 372.975585938 313.96484375 369.487304688 313.96484375 c 0 - 356.219726562 313.96484375 338.999023438 305.342773438 331.049804688 294.719726562 c 2 - 298.900390625 251.75 l 1 - 470.900390625 205.669921875 l 1 - 546.190429688 185.490234375 l 1 -564.6796875 130.83984375 m 0 - 546.129882812 135.809570312 510.879882812 115.530273438 505.9296875 97.0498046875 c 0 - 500.98046875 78.5595703125 529.620117188 74.1904296875 548.169921875 69.2197265625 c 0 - 566.719726562 64.25 582.379882812 73.259765625 587.33984375 91.75 c 0 - 592.290039062 110.23046875 583.23046875 125.870117188 564.6796875 130.83984375 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" c a r hyphen c r a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" C A R hyphen C R A S H -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" C a r hyphen C r a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" C a r hyphen c r a s h -EndChar - -StartChar: car-side -Encoding: 62948 62948 818 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 256 m 2 - 597.01953125 256 640 213.01953125 640 160 c 2 - 640 80 l 2 - 640 71.16015625 632.83984375 64 624 64 c 2 - 576 64 l 1 - 576 10.98046875 533.01953125 -32 480 -32 c 0 - 426.98046875 -32 384 10.98046875 384 64 c 1 - 256 64 l 1 - 256 10.98046875 213.01953125 -32 160 -32 c 0 - 106.98046875 -32 64 10.98046875 64 64 c 1 - 16 64 l 2 - 7.16015625 64 0 71.16015625 0 80 c 2 - 0 192 l 2 - 0 221.790039062 20.4404296875 246.599609375 48 253.740234375 c 1 - 95.91015625 375.76953125 l 2 - 105.629882812 400.0703125 129.16015625 416 155.330078125 416 c 2 - 369.240234375 416 l 2 - 386.219726562 415.998046875 408.610351562 405.237304688 419.219726562 391.98046875 c 2 - 528 256 l 1 - 544 256 l 2 -160 16 m 0 - 186.469726562 16 208 37.5302734375 208 64 c 0 - 208 90.4697265625 186.469726562 112 160 112 c 0 - 133.530273438 112 112 90.4697265625 112 64 c 0 - 112 37.5302734375 133.530273438 16 160 16 c 0 -232 256 m 1 - 232 352 l 1 - 155.330078125 352 l 1 - 116.9296875 256 l 1 - 232 256 l 1 -280 256 m 1 - 446.040039062 256 l 1 - 369.240234375 352 l 1 - 280 352 l 1 - 280 256 l 1 -480 16 m 0 - 506.469726562 16 528 37.5302734375 528 64 c 0 - 528 90.4697265625 506.469726562 112 480 112 c 0 - 453.530273438 112 432 90.4697265625 432 64 c 0 - 432 37.5302734375 453.530273438 16 480 16 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" c a r hyphen s i d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" C a r hyphen S i d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" C a r hyphen s i d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" C A R hyphen S I D E -EndChar - -StartChar: charging-station -Encoding: 62951 62951 819 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 0 m 2 - 344.83984375 0 352 -7.16015625 352 -16 c 2 - 352 -48 l 2 - 352 -56.83984375 344.83984375 -64 336 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 336 0 l 2 -544 320 m 1 - 560 320 l 2 - 568.83984375 320 576 312.83984375 576 304 c 2 - 576 272 l 2 - 576 236.240234375 552.379882812 206.309570312 520 196.0703125 c 1 - 520 76 l 2 - 520 31.58984375 481.709960938 -4.0498046875 436.41015625 0.3798828125 c 0 - 396.919921875 4.23046875 368 39.7197265625 368 79.3896484375 c 2 - 368 104 l 2 - 368 126.08984375 350.08984375 144 328 144 c 2 - 320 144 l 1 - 320 32 l 1 - 32 32 l 1 - 32 384 l 2 - 32 419.349609375 60.650390625 448 96 448 c 2 - 256 448 l 2 - 291.349609375 448 320 419.349609375 320 384 c 2 - 320 192 l 1 - 328 192 l 2 - 376.599609375 192 416 152.599609375 416 104 c 2 - 416 76 l 2 - 416 59.009765625 431.219726562 45.5 448.740234375 48.3896484375 c 0 - 462.5 50.66015625 472 63.6298828125 472 77.580078125 c 2 - 472 196.0703125 l 1 - 439.620117188 206.309570312 416 236.240234375 416 272 c 2 - 416 304 l 2 - 416 312.83984375 423.16015625 320 432 320 c 2 - 448 320 l 1 - 448 368 l 2 - 448 376.83984375 455.16015625 384 464 384 c 0 - 472.83984375 384 480 376.83984375 480 368 c 2 - 480 320 l 1 - 512 320 l 1 - 512 368 l 2 - 512 376.83984375 519.16015625 384 528 384 c 0 - 536.83984375 384 544 376.83984375 544 368 c 2 - 544 320 l 1 -260.08984375 272.240234375 m 2 - 264.709960938 279.219726562 258.940429688 288 249.700195312 288 c 2 - 192 288 l 1 - 203.599609375 338.790039062 l 2 - 205.620117188 345.459960938 199.879882812 352 192 352 c 2 - 124 352 l 2 - 117.98046875 352 112.900390625 348.099609375 112.110351562 342.889648438 c 2 - 96.1103515625 235.889648438 l 2 - 95.150390625 229.58984375 100.75 224 108 224 c 2 - 167.349609375 224 l 1 - 144.330078125 140.919921875 l 2 - 142.530273438 134.280273438 148.330078125 128 156 128 c 0 - 160.1796875 128 164.190429688 129.91015625 166.389648438 133.240234375 c 2 - 260.08984375 272.240234375 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" c h a r g i n g hyphen s t a t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" C h a r g i n g hyphen S t a t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" C h a r g i n g hyphen s t a t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" C H A R G I N G hyphen S T A T I O N -EndChar - -StartChar: directions -Encoding: 62955 62955 820 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -502.610351562 214.6796875 m 2 - 515.129882812 202.150390625 515.129882812 181.849609375 502.610351562 169.3203125 c 2 - 278.6796875 -54.6103515625 l 2 - 266.150390625 -67.1396484375 245.83984375 -67.1396484375 233.3203125 -54.6103515625 c 2 - 9.3896484375 169.3203125 l 2 - -3.1298828125 181.849609375 -3.1298828125 202.150390625 9.3896484375 214.6796875 c 2 - 233.3203125 438.610351562 l 2 - 245.849609375 451.129882812 266.16015625 451.129882812 278.6796875 438.610351562 c 2 - 502.610351562 214.6796875 l 2 -401.629882812 202.120117188 m 2 - 405.059570312 205.290039062 405.059570312 210.709960938 401.629882812 213.879882812 c 2 - 317.419921875 291.610351562 l 2 - 312.290039062 296.33984375 303.990234375 292.700195312 303.990234375 285.73046875 c 2 - 303.990234375 232 l 1 - 191.990234375 232 l 2 - 174.3203125 232 159.990234375 217.669921875 159.990234375 200 c 2 - 159.990234375 120 l 2 - 159.990234375 115.580078125 163.5703125 112 167.990234375 112 c 2 - 199.990234375 112 l 2 - 204.41015625 112 207.990234375 115.580078125 207.990234375 120 c 2 - 207.990234375 184 l 1 - 303.990234375 184 l 1 - 303.990234375 130.26953125 l 2 - 303.990234375 123.290039062 312.299804688 119.66015625 317.419921875 124.389648438 c 2 - 401.629882812 202.120117188 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" d i r e c t i o n s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" D I R E C T I O N S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" D i r e c t i o n s -EndChar - -StartChar: draw-polygon -Encoding: 62958 62958 821 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 96 m 0 - 419.349609375 96 448 67.349609375 447.990234375 32 c 0 - 447.990234375 -3.349609375 419.33984375 -32 383.990234375 -32 c 0 - 360.360351562 -32 339.959960938 -19.0498046875 328.870117188 0 c 1 - 119.120117188 0 l 1 - 108.040039062 -19.0498046875 87.6298828125 -32 64 -32 c 0 - 28.650390625 -32 0 -3.349609375 0 32 c 0 - 0 55.6298828125 12.9501953125 76.0400390625 32 87.1298828125 c 1 - 32 296.879882812 l 1 - 12.9501953125 307.959960938 0 328.370117188 0 352 c 0 - 0 387.349609375 28.650390625 416 64 416 c 0 - 87.6298828125 416 108.040039062 403.049804688 119.120117188 384 c 1 - 328.879882812 384 l 1 - 339.959960938 403.049804688 360.370117188 416 384 416 c 0 - 419.349609375 416 448 387.349609375 448 352 c 0 - 448 316.650390625 419.349609375 288 384 288 c 0 - 383.650390625 288 383.330078125 288.08984375 382.98046875 288.099609375 c 2 - 343.780273438 222.780273438 l 1 - 348.860351562 213.610351562 352 203.219726562 352 192 c 0 - 352 180.780273438 348.849609375 170.389648438 343.780273438 161.219726562 c 1 - 382.98046875 95.900390625 l 2 - 383.330078125 95.900390625 383.650390625 96 384 96 c 0 -96 87.1201171875 m 1 - 104.07421875 82.431640625 114.431640625 72.07421875 119.120117188 64 c 1 - 327.48046875 64 l 1 - 289.01953125 128.099609375 l 2 - 288.669921875 128.099609375 288.349609375 128 288 128 c 0 - 252.650390625 128 224 156.650390625 224 192 c 0 - 224 227.349609375 252.650390625 256 288 256 c 0 - 288.349609375 256 288.669921875 255.91015625 289.01953125 255.900390625 c 2 - 327.48046875 320 l 1 - 119.120117188 320 l 1 - 114.4296875 311.927734375 104.072265625 301.5703125 96 296.879882812 c 1 - 96 87.1201171875 l 1 -272 192 m 0 - 272 183.1796875 279.1796875 176 288 176 c 0 - 296.8203125 176 304 183.1796875 304 192 c 0 - 304 200.8203125 296.8203125 208 288 208 c 0 - 279.1796875 208 272 200.8203125 272 192 c 0 -400 352 m 0 - 400 360.8203125 392.8203125 368 384 368 c 0 - 375.1796875 368 368 360.8203125 368 352 c 0 - 368 343.1796875 375.1796875 336 384 336 c 0 - 392.8203125 336 400 343.1796875 400 352 c 0 -64 368 m 0 - 55.1796875 368 48 360.8203125 48 352 c 0 - 48 343.1796875 55.1796875 336 64 336 c 0 - 72.8203125 336 80 343.1796875 80 352 c 0 - 80 360.8203125 72.8203125 368 64 368 c 0 -48 32 m 0 - 48 23.1796875 55.1796875 16 64 16 c 0 - 72.8203125 16 80 23.1796875 80 32 c 0 - 80 40.8203125 72.8203125 48 64 48 c 0 - 55.1796875 48 48 40.8203125 48 32 c 0 -384 16 m 0 - 392.8203125 16 400 23.1796875 400 32 c 0 - 400 40.8203125 392.8203125 48 384 48 c 0 - 375.1796875 48 368 40.8203125 368 32 c 0 - 368 23.1796875 375.1796875 16 384 16 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" d r a w hyphen p o l y g o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" D r a w hyphen p o l y g o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" D R A W hyphen P O L Y G O N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" D r a w hyphen P o l y g o n -EndChar - -StartChar: laptop-code -Encoding: 62972 62972 822 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -255.030273438 186.349609375 m 2 - 196.6796875 244.690429688 l 2 - 190.4296875 250.940429688 190.4296875 261.0703125 196.6796875 267.3203125 c 2 - 255.01953125 325.66015625 l 2 - 261.26953125 331.91015625 271.400390625 331.91015625 277.650390625 325.66015625 c 2 - 288.959960938 314.349609375 l 2 - 295.209960938 308.099609375 295.209960938 297.969726562 288.959960938 291.719726562 c 2 - 253.25 256 l 1 - 288.969726562 220.290039062 l 2 - 295.219726562 214.040039062 295.219726562 203.91015625 288.969726562 197.66015625 c 2 - 277.66015625 186.349609375 l 2 - 271.41015625 180.099609375 261.280273438 180.099609375 255.030273438 186.349609375 c 2 -351.040039062 197.650390625 m 2 - 344.790039062 203.900390625 344.790039062 214.030273438 351.040039062 220.280273438 c 2 - 386.75 256 l 1 - 351.040039062 291.709960938 l 2 - 344.790039062 297.959960938 344.790039062 308.08984375 351.040039062 314.33984375 c 2 - 362.349609375 325.650390625 l 2 - 368.599609375 331.900390625 378.73046875 331.900390625 384.98046875 325.650390625 c 2 - 443.3203125 267.309570312 l 2 - 449.5703125 261.059570312 449.5703125 250.9296875 443.3203125 244.6796875 c 2 - 384.98046875 186.33984375 l 2 - 378.73046875 180.08984375 368.599609375 180.08984375 362.349609375 186.33984375 c 2 - 351.040039062 197.650390625 l 2 -624 32 m 2 - 632.799804688 32 640 24.7998046875 640 16 c 2 - 640 0 l 2 - 640 -35.2001953125 611.200195312 -64 576 -64 c 2 - 64 -64 l 2 - 28.7998046875 -64 0 -35.2001953125 0 0 c 2 - 0 16 l 2 - 0 24.7998046875 7.2001953125 32 16 32 c 2 - 255.23046875 32 l 1 - 254.98046875 17.4697265625 269.309570312 0 288 0 c 2 - 348.799804688 0 l 2 - 366.830078125 0 380.799804688 12.1904296875 381.540039062 32 c 1 - 624 32 l 2 -576 400 m 2 - 576 64 l 1 - 64 64 l 1 - 64 400 l 2 - 64 426.400390625 85.599609375 448 112 448 c 2 - 528 448 l 2 - 554.400390625 448 576 426.400390625 576 400 c 2 -512 128 m 1 - 512 384 l 1 - 128 384 l 1 - 128 128 l 1 - 512 128 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" l a p t o p hyphen c o d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" L a p t o p hyphen C o d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" L a p t o p hyphen c o d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" L A P T O P hyphen C O D E -EndChar - -StartChar: layer-group -Encoding: 62973 62973 823 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -12.41015625 299.98046875 m 2 - -4.1396484375 307.490234375 -4.1396484375 332.509765625 12.41015625 340.01953125 c 2 - 245.360351562 445.690429688 l 2 - 248.159179688 446.969726562 252.927734375 448.0078125 256.004882812 448.0078125 c 0 - 259.08203125 448.0078125 263.8515625 446.969726562 266.650390625 445.690429688 c 2 - 499.580078125 340.009765625 l 2 - 516.129882812 332.5 516.129882812 307.490234375 499.580078125 299.98046875 c 2 - 266.639648438 194.309570312 l 2 - 259.83984375 191.219726562 252.150390625 191.219726562 245.349609375 194.309570312 c 2 - 12.41015625 299.98046875 l 2 -499.58984375 211.700195312 m 2 - 516.139648438 204.200195312 516.139648438 179.200195312 499.58984375 171.700195312 c 2 - 266.639648438 66.1103515625 l 2 - 259.83984375 63.0302734375 252.150390625 63.0302734375 245.349609375 66.1103515625 c 2 - 12.41015625 171.700195312 l 2 - -4.1396484375 179.200195312 -4.1396484375 204.200195312 12.41015625 211.700195312 c 2 - 70.509765625 238.030273438 l 1 - 232.139648438 164.759765625 l 2 - 239.709960938 161.330078125 247.73046875 159.58984375 256 159.58984375 c 0 - 264.26953125 159.58984375 272.299804688 161.330078125 279.860351562 164.759765625 c 2 - 441.5 238.030273438 l 1 - 499.58984375 211.700195312 l 2 -499.58984375 83.900390625 m 2 - 516.139648438 76.400390625 516.139648438 51.400390625 499.58984375 43.900390625 c 2 - 266.639648438 -61.6904296875 l 2 - 259.83984375 -64.76953125 252.150390625 -64.76953125 245.349609375 -61.6904296875 c 2 - 12.41015625 43.900390625 l 2 - -4.1396484375 51.400390625 -4.1396484375 76.400390625 12.41015625 83.900390625 c 2 - 70.2900390625 110.129882812 l 1 - 232.139648438 36.759765625 l 2 - 239.709960938 33.330078125 247.73046875 31.58984375 256 31.58984375 c 0 - 264.26953125 31.58984375 272.299804688 33.330078125 279.860351562 36.759765625 c 2 - 441.719726562 110.129882812 l 1 - 499.58984375 83.900390625 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" l a y e r hyphen g r o u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" L a y e r hyphen G r o u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" L a y e r hyphen g r o u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" L A Y E R hyphen G R O U P -EndChar - -StartChar: microscope -Encoding: 62992 62992 824 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -160 128 m 2 - 142.330078125 128 128 142.330078125 128 160 c 2 - 128 384 l 2 - 128 401.669921875 142.330078125 416 160 416 c 1 - 160 432 l 2 - 160 440.83984375 167.16015625 448 176 448 c 2 - 240 448 l 2 - 248.83984375 448 256 440.83984375 256 432 c 2 - 256 416 l 1 - 273.669921875 416 288 401.669921875 288 384 c 2 - 288 160 l 2 - 288 142.330078125 273.669921875 128 256 128 c 2 - 244 128 l 1 - 244 112 l 2 - 244 103.16015625 236.83984375 96 228 96 c 2 - 188 96 l 2 - 179.16015625 96 172 103.16015625 172 112 c 2 - 172 128 l 1 - 160 128 l 2 -464 0 m 2 - 490.509765625 0 512 -21.490234375 512 -48 c 0 - 512 -56.83984375 504.83984375 -64 496 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 0 - 0 -21.490234375 21.490234375 0 48 0 c 2 - 320 0 l 2 - 390.580078125 0 448 57.419921875 448 128 c 0 - 448 198.580078125 390.580078125 256 320 256 c 1 - 320 320 l 1 - 425.879882812 320 512 233.879882812 512 128 c 0 - 512 78.7998046875 493.240234375 34.009765625 462.709960938 0 c 1 - 464 0 l 2 -104 32 m 2 - 99.580078125 32 96 35.580078125 96 40 c 2 - 96 56 l 2 - 96 60.419921875 99.580078125 64 104 64 c 2 - 312 64 l 2 - 316.419921875 64 320 60.419921875 320 56 c 2 - 320 40 l 2 - 320 35.580078125 316.419921875 32 312 32 c 2 - 104 32 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" m i c r o s c o p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" M i c r o s c o p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" M I C R O S C O P E -EndChar - -StartChar: oil-can -Encoding: 62995 62995 825 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -629.799804688 287.690429688 m 2 - 634.91015625 289.150390625 640 285.309570312 639.990234375 280 c 2 - 639.990234375 261.919921875 l 2 - 639.990234375 259.799804688 639.150390625 257.759765625 637.650390625 256.259765625 c 2 - 425.389648438 41.509765625 l 2 - 419.379882812 35.419921875 411.1796875 32 402.629882812 32 c 2 - 128 32 l 2 - 110.330078125 32 96 46.330078125 96 64 c 2 - 96 110.540039062 l 1 - 26.2802734375 123.23046875 l 2 - 11.0595703125 125.990234375 0 139.25 0 154.709960938 c 2 - 0 249.66015625 l 2 - 0 267.639648438 14.669921875 281.669921875 31.9296875 281.669921875 c 0 - 33.541015625 281.669921875 36.1357421875 281.432617188 37.7197265625 281.139648438 c 2 - 176 256 l 1 - 232 256 l 1 - 232 304 l 1 - 176 304 l 2 - 167.16015625 304 160 311.16015625 160 320 c 2 - 160 336 l 2 - 160 344.83984375 167.16015625 352 176 352 c 2 - 336 352 l 2 - 344.83984375 352 352 344.83984375 352 336 c 2 - 352 320 l 2 - 352 311.16015625 344.83984375 304 336 304 c 2 - 280 304 l 1 - 280 256 l 1 - 336.889648438 256 l 2 - 345.229492188 255.997070312 358.05078125 252.96875 365.509765625 249.240234375 c 2 - 416 224 l 1 - 629.799804688 287.690429688 l 2 -96 159.330078125 m 1 - 96 221.759765625 l 1 - 48 230.490234375 l 1 - 48 168.059570312 l 1 - 96 159.330078125 l 1 -549.330078125 74.669921875 m 0 - 549.330078125 98.23046875 592 160 592 160 c 1 - 592 160 634.669921875 98.240234375 634.669921875 74.669921875 c 0 - 634.669921875 51.099609375 615.5703125 32 592 32 c 0 - 568.4296875 32 549.330078125 51.1103515625 549.330078125 74.669921875 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" o i l hyphen c a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" O i l hyphen C a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" O i l hyphen c a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" O I L hyphen C A N -EndChar - -StartChar: poop -Encoding: 63001 63001 826 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -451.360351562 78.8603515625 m 1 - 485.690429688 73.3798828125 512 43.8798828125 512 8 c 0 - 512 -31.759765625 479.759765625 -64 440 -64 c 2 - 72 -64 l 2 - 32.240234375 -64 0 -31.759765625 0 8 c 0 - 0 43.8798828125 26.3095703125 73.3798828125 60.6396484375 78.8603515625 c 1 - 43.33984375 92.009765625 32 112.58984375 32 136 c 0 - 32 175.76953125 64.240234375 208 104 208 c 2 - 118.0703125 208 l 1 - 104.650390625 219.73046875 96 236.780273438 96 256 c 0 - 96 291.349609375 124.650390625 320 160 320 c 2 - 176 320 l 2 - 220.1796875 320 256 355.8203125 256 400 c 0 - 256 417.379882812 250.309570312 433.360351562 240.889648438 446.48046875 c 1 - 245.849609375 447.259765625 250.830078125 448 256 448 c 0 - 309.01953125 448 352 405.01953125 352 352 c 0 - 352 340.719726562 349.690429688 330.049804688 346.120117188 320 c 1 - 352 320 l 2 - 387.349609375 320 416 291.349609375 416 256 c 0 - 416 236.780273438 407.349609375 219.73046875 393.9296875 208 c 1 - 408 208 l 2 - 447.759765625 208 480 175.76953125 480 136 c 0 - 480 112.58984375 468.66015625 92.009765625 451.360351562 78.8603515625 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" p o o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" P o o p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" P O O P -EndChar - -StartChar: shapes -Encoding: 63007 63007 827 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -512 128 m 2 - 512 -32 l 2 - 512 -49.669921875 497.669921875 -64 480 -64 c 2 - 320 -64 l 2 - 302.330078125 -64 288 -49.669921875 288 -32 c 2 - 288 128 l 2 - 288 145.669921875 302.330078125 160 320 160 c 2 - 480 160 l 2 - 497.669921875 160 512 145.669921875 512 128 c 2 -128 192 m 0 - 198.690429688 192 256 134.690429688 256 64 c 0 - 256 -6.6904296875 198.690429688 -64 128 -64 c 0 - 57.3095703125 -64 0 -6.6904296875 0 64 c 0 - 0 134.690429688 57.3095703125 192 128 192 c 0 -479.030273438 224 m 2 - 288.969726562 224 l 2 - 263.629882812 224 247.790039062 250.669921875 260.459960938 272 c 2 - 355.490234375 432 l 2 - 368.16015625 453.330078125 399.83984375 453.330078125 412.509765625 432 c 2 - 507.540039062 272 l 2 - 520.209960938 250.669921875 504.370117188 224 479.030273438 224 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" s h a p e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S h a p e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S H A P E S -EndChar - -StartChar: star-of-life -Encoding: 63009 63009 828 -Width: 480 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -471.990234375 113.5703125 m 2 - 479.650390625 109.150390625 482.26953125 99.3701171875 477.849609375 91.7197265625 c 2 - 445.830078125 36.2900390625 l 2 - 441.41015625 28.6298828125 431.620117188 26.009765625 423.959960938 30.4296875 c 2 - 288.030273438 108.860351562 l 1 - 288.030273438 -48 l 2 - 288.030273438 -56.83984375 280.860351562 -64 272.01953125 -64 c 2 - 207.98046875 -64 l 2 - 199.139648438 -64 191.969726562 -56.83984375 191.969726562 -48 c 2 - 191.969726562 108.849609375 l 1 - 56.0400390625 30.419921875 l 2 - 48.3798828125 26.009765625 38.58984375 28.6298828125 34.169921875 36.2802734375 c 2 - 2.150390625 91.7099609375 l 2 - -2.26953125 99.3603515625 0.349609375 109.150390625 8.009765625 113.5703125 c 2 - 143.940429688 192 l 1 - 8.009765625 270.4296875 l 2 - 0.349609375 274.849609375 -2.26953125 284.639648438 2.150390625 292.290039062 c 2 - 34.169921875 347.709960938 l 2 - 38.58984375 355.360351562 48.3798828125 357.990234375 56.0400390625 353.5703125 c 2 - 191.969726562 275.139648438 l 1 - 191.969726562 432 l 2 - 191.969726562 440.83984375 199.139648438 448 207.98046875 448 c 2 - 272.01953125 448 l 2 - 280.860351562 448 288.030273438 440.83984375 288.030273438 432 c 2 - 288.030273438 275.150390625 l 1 - 423.959960938 353.580078125 l 2 - 431.620117188 358 441.41015625 355.370117188 445.830078125 347.719726562 c 2 - 477.849609375 292.290039062 l 2 - 482.26953125 284.629882812 479.650390625 274.849609375 471.990234375 270.4296875 c 2 - 336.059570312 192 l 1 - 471.990234375 113.5703125 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" s t a r hyphen o f hyphen l i f e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" S t a r hyphen O f hyphen L i f e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" S t a r hyphen o f hyphen l i f e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" S T A R hyphen O F hyphen L I F E -EndChar - -StartChar: teeth -Encoding: 63022 63022 829 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 448 m 2 - 597.01953125 448 640 405.01953125 640 352 c 2 - 640 32 l 2 - 640 -21.01953125 597.01953125 -64 544 -64 c 2 - 96 -64 l 2 - 42.98046875 -64 0 -21.01953125 0 32 c 2 - 0 352 l 2 - 0 405.01953125 42.98046875 448 96 448 c 2 - 544 448 l 2 -160 80 m 2 - 160 144 l 2 - 160 152.83984375 152.83984375 160 144 160 c 2 - 80 160 l 2 - 71.16015625 160 64 152.83984375 64 144 c 2 - 64 80 l 2 - 64 53.490234375 85.490234375 32 112 32 c 0 - 138.509765625 32 160 53.490234375 160 80 c 2 -160 208 m 2 - 160 272 l 2 - 160 298.509765625 138.509765625 320 112 320 c 0 - 85.490234375 320 64 298.509765625 64 272 c 2 - 64 208 l 2 - 64 199.16015625 71.16015625 192 80 192 c 2 - 144 192 l 2 - 152.83984375 192 160 199.16015625 160 208 c 2 -304 88 m 2 - 304 144 l 2 - 304 152.83984375 296.83984375 160 288 160 c 2 - 208 160 l 2 - 199.16015625 160 192 152.83984375 192 144 c 2 - 192 88 l 2 - 192 57.0703125 217.0703125 32 248 32 c 0 - 278.9296875 32 304 57.0703125 304 88 c 2 -304 208 m 2 - 304 296 l 2 - 304 326.9296875 278.9296875 352 248 352 c 0 - 217.0703125 352 192 326.9296875 192 296 c 2 - 192 208 l 2 - 192 199.16015625 199.16015625 192 208 192 c 2 - 288 192 l 2 - 296.83984375 192 304 199.16015625 304 208 c 2 -448 88 m 2 - 448 144 l 2 - 448 152.83984375 440.83984375 160 432 160 c 2 - 352 160 l 2 - 343.16015625 160 336 152.83984375 336 144 c 2 - 336 88 l 2 - 336 57.0703125 361.0703125 32 392 32 c 0 - 422.9296875 32 448 57.0703125 448 88 c 2 -448 208 m 2 - 448 296 l 2 - 448 326.9296875 422.9296875 352 392 352 c 0 - 361.0703125 352 336 326.9296875 336 296 c 2 - 336 208 l 2 - 336 199.16015625 343.16015625 192 352 192 c 2 - 432 192 l 2 - 440.83984375 192 448 199.16015625 448 208 c 2 -576 80 m 2 - 576 144 l 2 - 576 152.83984375 568.83984375 160 560 160 c 2 - 496 160 l 2 - 487.16015625 160 480 152.83984375 480 144 c 2 - 480 80 l 2 - 480 53.490234375 501.490234375 32 528 32 c 0 - 554.509765625 32 576 53.490234375 576 80 c 2 -576 208 m 2 - 576 272 l 2 - 576 298.509765625 554.509765625 320 528 320 c 0 - 501.490234375 320 480 298.509765625 480 272 c 2 - 480 208 l 2 - 480 199.16015625 487.16015625 192 496 192 c 2 - 560 192 l 2 - 568.83984375 192 576 199.16015625 576 208 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" t e e t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T e e t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T E E T H -EndChar - -StartChar: teeth-open -Encoding: 63023 63023 830 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 448 m 2 - 597.01953125 448 640 405.01953125 640 352 c 2 - 640 288 l 2 - 640 252.650390625 611.33984375 224 576 224 c 2 - 64 224 l 2 - 28.66015625 224 0 252.650390625 0 288 c 2 - 0 352 l 2 - 0 405.01953125 42.98046875 448 96 448 c 2 - 544 448 l 2 -160 272 m 2 - 160 304 l 2 - 160 330.509765625 138.509765625 352 112 352 c 0 - 85.490234375 352 64 330.509765625 64 304 c 2 - 64 272 l 2 - 64 263.16015625 71.16015625 256 80 256 c 2 - 144 256 l 2 - 152.83984375 256 160 263.16015625 160 272 c 2 -304 272 m 2 - 304 328 l 2 - 304 358.9296875 278.9296875 384 248 384 c 0 - 217.0703125 384 192 358.9296875 192 328 c 2 - 192 272 l 2 - 192 263.16015625 199.16015625 256 208 256 c 2 - 288 256 l 2 - 296.83984375 256 304 263.16015625 304 272 c 2 -448 272 m 2 - 448 328 l 2 - 448 358.9296875 422.9296875 384 392 384 c 0 - 361.0703125 384 336 358.9296875 336 328 c 2 - 336 272 l 2 - 336 263.16015625 343.16015625 256 352 256 c 2 - 432 256 l 2 - 440.83984375 256 448 263.16015625 448 272 c 2 -576 272 m 2 - 576 304 l 2 - 576 330.509765625 554.509765625 352 528 352 c 0 - 501.490234375 352 480 330.509765625 480 304 c 2 - 480 272 l 2 - 480 263.16015625 487.16015625 256 496 256 c 2 - 560 256 l 2 - 568.83984375 256 576 263.16015625 576 272 c 2 -576 128 m 2 - 611.33984375 128 640 99.349609375 640 64 c 2 - 640 32 l 2 - 640 -21.01953125 597.01953125 -64 544 -64 c 2 - 96 -64 l 2 - 42.98046875 -64 0 -21.01953125 0 32 c 2 - 0 64 l 2 - 0 99.349609375 28.66015625 128 64 128 c 2 - 576 128 l 2 -160 48 m 2 - 160 80 l 2 - 160 88.83984375 152.83984375 96 144 96 c 2 - 80 96 l 2 - 71.16015625 96 64 88.83984375 64 80 c 2 - 64 48 l 2 - 64 21.490234375 85.490234375 0 112 0 c 0 - 138.509765625 0 160 21.490234375 160 48 c 2 -304 56 m 2 - 304 80 l 2 - 304 88.83984375 296.83984375 96 288 96 c 2 - 208 96 l 2 - 199.16015625 96 192 88.83984375 192 80 c 2 - 192 56 l 2 - 192 25.0703125 217.0703125 0 248 0 c 0 - 278.9296875 0 304 25.0703125 304 56 c 2 -448 56 m 2 - 448 80 l 2 - 448 88.83984375 440.83984375 96 432 96 c 2 - 352 96 l 2 - 343.16015625 96 336 88.83984375 336 80 c 2 - 336 56 l 2 - 336 25.0703125 361.0703125 0 392 0 c 0 - 422.9296875 0 448 25.0703125 448 56 c 2 -576 48 m 2 - 576 80 l 2 - 576 88.83984375 568.83984375 96 560 96 c 2 - 496 96 l 2 - 487.16015625 96 480 88.83984375 480 80 c 2 - 480 48 l 2 - 480 21.490234375 501.490234375 0 528 0 c 0 - 554.509765625 0 576 21.490234375 576 48 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" t e e t h hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T e e t h hyphen O p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T e e t h hyphen o p e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" T E E T H hyphen O P E N -EndChar - -StartChar: theater-masks -Encoding: 63024 63024 831 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -206.860351562 202.849609375 m 1 - 199.23046875 159.669921875 l 1 - 178.139648438 152.450195312 160.73046875 141.469726562 149.330078125 128.75 c 1 - 146.91015625 161.650390625 170.98046875 192.400390625 206.860351562 202.849609375 c 1 -95.8095703125 153 m 2 - 101.6796875 119.830078125 160.129882812 81.1904296875 207.740234375 68.2099609375 c 1 - 218.299804688 41.1103515625 233.719726562 17.7099609375 247.240234375 0.6298828125 c 1 - 243.98046875 0.2900390625 240.8203125 -0.169921875 237.23046875 -0.169921875 c 0 - 169.110351562 -0.169921875 47.009765625 61.3896484375 32.7802734375 141.91015625 c 2 - 1.0498046875 321.419921875 l 2 - -3.919921875 349.51953125 9.0302734375 377.51953125 33.2001953125 390.940429688 c 0 - 101.01953125 428.580078125 176.66015625 448 253.3203125 448 c 0 - 277.240234375 448 301.26953125 446.110351562 325.1796875 442.299804688 c 0 - 342.469726562 439.530273438 356.959960938 429.25 366.950195312 415.299804688 c 1 - 347.8203125 414.530273438 328.66015625 413 309.76953125 409.98046875 c 0 - 289.91015625 406.809570312 272.129882812 397.450195312 258.1796875 383.98046875 c 0 - 256.559570312 384 254.940429688 384.169921875 253.330078125 384.169921875 c 0 - 187.440429688 384.169921875 122.080078125 367.219726562 64.3203125 335.16015625 c 1 - 64.3603515625 335.129882812 63.7900390625 334.129882812 64.080078125 332.509765625 c 2 - 95.8095703125 153 l 2 -193.360351562 290.459960938 m 0 - 197.200195312 268.759765625 182.669921875 248.059570312 160.919921875 244.240234375 c 0 - 139.16015625 240.419921875 118.419921875 254.91015625 114.580078125 276.610351562 c 0 - 113.849609375 280.73046875 113.969726562 284.76953125 114.490234375 288.709960938 c 1 - 125.299804688 283.139648438 139.3203125 280.959960938 153.969726562 283.540039062 c 0 - 168.620117188 286.110351562 181.040039062 292.950195312 189.290039062 301.860351562 c 1 - 191.129882812 298.330078125 192.629882812 294.580078125 193.360351562 290.459960938 c 0 -606.799804688 327.099609375 m 0 - 630.969726562 313.690429688 643.919921875 285.690429688 638.950195312 257.580078125 c 2 - 607.219726562 78.0703125 l 2 - 591.830078125 -8.98046875 450.389648438 -73.8603515625 387.360351562 -62.76953125 c 0 - 324.330078125 -51.6904296875 213.66015625 57.5302734375 229.049804688 144.580078125 c 2 - 260.780273438 324.08984375 l 2 - 265.740234375 352.190429688 287.509765625 374.08984375 314.8203125 378.450195312 c 0 - 415.370117188 394.509765625 517.8203125 376.48046875 606.799804688 327.099609375 c 0 -333.559570312 230.299804688 m 0 - 332.830078125 226.1796875 332.950195312 222.139648438 333.48046875 218.190429688 c 1 - 344.290039062 223.759765625 358.309570312 225.940429688 372.959960938 223.360351562 c 0 - 387.610351562 220.790039062 400.030273438 213.950195312 408.280273438 205.040039062 c 1 - 410.120117188 208.5703125 411.620117188 212.3203125 412.349609375 216.440429688 c 0 - 416.1796875 238.139648438 401.66015625 258.830078125 379.900390625 262.66015625 c 0 - 358.139648438 266.490234375 337.400390625 252 333.559570312 230.299804688 c 0 -404.030273438 31.5400390625 m 0 - 459.700195312 21.75 512.23046875 55.3203125 526.41015625 107.259765625 c 1 - 498.299804688 90.2900390625 457.759765625 83.0498046875 414.48046875 90.66015625 c 0 - 371.200195312 98.26953125 335.58984375 118.900390625 314.990234375 144.440429688 c 1 - 310.509765625 90.8095703125 348.349609375 41.330078125 404.030273438 31.5400390625 c 0 -534.330078125 182.879882812 m 1 - 536.169921875 186.400390625 537.669921875 190.150390625 538.400390625 194.280273438 c 0 - 542.23046875 215.98046875 527.700195312 236.669921875 505.950195312 240.5 c 0 - 484.190429688 244.3203125 463.450195312 229.830078125 459.610351562 208.129882812 c 0 - 458.879882812 204.009765625 459 199.969726562 459.51953125 196.030273438 c 1 - 470.330078125 201.599609375 484.349609375 203.780273438 499 201.200195312 c 0 - 513.650390625 198.629882812 526.080078125 191.790039062 534.330078125 182.879882812 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" t h e a t e r hyphen m a s k s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" T h e a t e r hyphen M a s k s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" T h e a t e r hyphen m a s k s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" T H E A T E R hyphen M A S K S -EndChar - -StartChar: traffic-light -Encoding: 63031 63031 832 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -384 256 m 1 - 384 214.259765625 357.200195312 179.099609375 320 165.879882812 c 1 - 320 128 l 1 - 384 128 l 1 - 384 85.16015625 355.75 49.3095703125 317.009765625 36.9501953125 c 1 - 304.580078125 -20.7197265625 253.400390625 -64 192 -64 c 0 - 130.599609375 -64 79.419921875 -20.7197265625 66.990234375 36.9501953125 c 1 - 28.25 49.3095703125 0 85.16015625 0 128 c 1 - 64 128 l 1 - 64 165.879882812 l 1 - 26.7998046875 179.099609375 0 214.259765625 0 256 c 1 - 64 256 l 1 - 64 293.879882812 l 1 - 26.7998046875 307.099609375 0 342.259765625 0 384 c 1 - 64 384 l 1 - 64 416 l 2 - 64 433.669921875 78.330078125 448 96 448 c 2 - 288 448 l 2 - 305.669921875 448 320 433.669921875 320 416 c 2 - 320 384 l 1 - 384 384 l 1 - 384 342.259765625 357.200195312 307.099609375 320 293.879882812 c 1 - 320 256 l 1 - 384 256 l 1 -192 32 m 0 - 218.509765625 32 240 53.490234375 240 80 c 0 - 240 106.509765625 218.509765625 128 192 128 c 0 - 165.490234375 128 144 106.509765625 144 80 c 0 - 144 53.490234375 165.490234375 32 192 32 c 0 -192 160 m 0 - 218.509765625 160 240 181.490234375 240 208 c 0 - 240 234.509765625 218.509765625 256 192 256 c 0 - 165.490234375 256 144 234.509765625 144 208 c 0 - 144 181.490234375 165.490234375 160 192 160 c 0 -192 288 m 0 - 218.509765625 288 240 309.490234375 240 336 c 0 - 240 362.509765625 218.509765625 384 192 384 c 0 - 165.490234375 384 144 362.509765625 144 336 c 0 - 144 309.490234375 165.490234375 288 192 288 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" t r a f f i c hyphen l i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" T r a f f i c hyphen L i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" T r a f f i c hyphen l i g h t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" T R A F F I C hyphen L I G H T -EndChar - -StartChar: truck-monster -Encoding: 63035 63035 833 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 224 m 2 - 632.83984375 224 640 216.83984375 640 208 c 2 - 640 176 l 2 - 640 167.16015625 632.83984375 160 624 160 c 2 - 607.290039062 160 l 1 - 578.080078125 198.650390625 532.190429688 224 480.009765625 224 c 0 - 427.830078125 224 381.940429688 198.650390625 352.73046875 160 c 1 - 287.280273438 160 l 1 - 258.0703125 198.650390625 212.1796875 224 160 224 c 0 - 107.8203125 224 61.9296875 198.650390625 32.7197265625 160 c 1 - 16 160 l 2 - 7.16015625 160 0 167.16015625 0 176 c 2 - 0 208 l 2 - 0 216.83984375 7.16015625 224 16 224 c 2 - 32 224 l 1 - 32 304 l 2 - 32 312.83984375 39.16015625 320 48 320 c 2 - 224 320 l 1 - 224 416 l 2 - 224 433.669921875 238.330078125 448 256 448 c 2 - 369.240234375 448 l 2 - 386.219726562 447.998046875 408.610351562 437.237304688 419.219726562 423.98046875 c 2 - 502.400390625 320 l 1 - 576 320 l 2 - 593.669921875 320 608 305.669921875 608 288 c 2 - 608 224 l 1 - 624 224 l 2 -288 320 m 1 - 420.440429688 320 l 1 - 369.240234375 384 l 1 - 288 384 l 1 - 288 320 l 1 -592 96 m 2 - 600.83984375 96 608 88.83984375 608.01953125 80 c 2 - 608.01953125 48 l 2 - 608.01953125 39.16015625 600.860351562 32 592.01953125 32 c 2 - 586.8203125 32 l 1 - 585.0234375 25.9892578125 581.1484375 16.630859375 578.169921875 11.1103515625 c 1 - 581.83984375 7.4404296875 l 2 - 588.08984375 1.1904296875 588.08984375 -8.9404296875 581.83984375 -15.1904296875 c 2 - 559.209960938 -37.8203125 l 2 - 552.959960938 -44.0703125 542.830078125 -44.0703125 536.580078125 -37.8203125 c 2 - 532.91015625 -34.150390625 l 1 - 526.290039062 -37.73046875 519.33984375 -40.599609375 512.009765625 -42.7998046875 c 1 - 512.009765625 -48 l 2 - 512.009765625 -56.83984375 504.849609375 -64 496.009765625 -64 c 2 - 464.009765625 -64 l 2 - 455.169921875 -64 448.009765625 -56.83984375 448.009765625 -48 c 2 - 448.009765625 -42.7998046875 l 1 - 440.6796875 -40.599609375 433.719726562 -37.7197265625 427.110351562 -34.150390625 c 1 - 423.440429688 -37.8203125 l 2 - 417.190429688 -44.0703125 407.059570312 -44.0703125 400.809570312 -37.8203125 c 2 - 378.1796875 -15.1904296875 l 2 - 371.9296875 -8.9404296875 371.9296875 1.1904296875 378.1796875 7.4404296875 c 2 - 381.849609375 11.1103515625 l 1 - 378.26953125 17.7197265625 375.400390625 24.669921875 373.200195312 32 c 1 - 368 32 l 2 - 359.16015625 32 352 39.16015625 352 48 c 2 - 352 80 l 2 - 352 88.83984375 359.16015625 96 368 96 c 2 - 373.200195312 96 l 1 - 374.99609375 102.010742188 378.87109375 111.369140625 381.849609375 116.889648438 c 1 - 378.1796875 120.559570312 l 2 - 371.9296875 126.809570312 371.9296875 136.940429688 378.1796875 143.190429688 c 2 - 400.809570312 165.8203125 l 2 - 407.059570312 172.0703125 417.190429688 172.0703125 423.440429688 165.8203125 c 2 - 427.110351562 162.150390625 l 1 - 433.719726562 165.73046875 440.669921875 168.599609375 448 170.799804688 c 1 - 448 176 l 2 - 448 184.83984375 455.16015625 192 464 192 c 2 - 496 192 l 2 - 504.83984375 192 512 184.83984375 512 176 c 2 - 512 170.799804688 l 1 - 518.010742188 169.00390625 527.369140625 165.12890625 532.889648438 162.150390625 c 1 - 536.559570312 165.8203125 l 2 - 542.809570312 172.0703125 552.940429688 172.0703125 559.190429688 165.8203125 c 2 - 581.8203125 143.190429688 l 2 - 588.0703125 136.940429688 588.0703125 126.809570312 581.8203125 120.559570312 c 2 - 578.150390625 116.889648438 l 1 - 581.73046875 110.280273438 584.599609375 103.330078125 586.799804688 96 c 1 - 592 96 l 2 -480 16 m 0 - 506.509765625 16 528 37.490234375 528 64 c 0 - 528 90.509765625 506.509765625 112 480 112 c 0 - 453.490234375 112 432 90.509765625 432 64 c 0 - 432 37.490234375 453.490234375 16 480 16 c 0 -272 96 m 2 - 280.83984375 96 288 88.83984375 288.01953125 80.009765625 c 2 - 288.01953125 48.009765625 l 2 - 288.01953125 39.169921875 280.860351562 32.009765625 272.01953125 32.009765625 c 2 - 266.8203125 32.009765625 l 1 - 265.0234375 26 261.1484375 16.640625 258.169921875 11.1201171875 c 1 - 261.83984375 7.4501953125 l 2 - 268.08984375 1.2001953125 268.08984375 -8.9296875 261.83984375 -15.1796875 c 2 - 239.209960938 -37.8095703125 l 2 - 232.959960938 -44.0595703125 222.830078125 -44.0595703125 216.580078125 -37.8095703125 c 2 - 212.91015625 -34.1396484375 l 1 - 206.290039062 -37.7197265625 199.33984375 -40.58984375 192.009765625 -42.7900390625 c 1 - 192.009765625 -47.990234375 l 2 - 192.009765625 -56.830078125 184.849609375 -63.990234375 176.009765625 -63.990234375 c 2 - 144.009765625 -63.990234375 l 2 - 135.169921875 -63.990234375 128.009765625 -56.830078125 128.009765625 -47.990234375 c 2 - 128.009765625 -42.7900390625 l 1 - 120.6796875 -40.58984375 113.719726562 -37.7099609375 107.110351562 -34.1396484375 c 1 - 103.440429688 -37.8095703125 l 2 - 97.1904296875 -44.0595703125 87.0595703125 -44.0595703125 80.8095703125 -37.8095703125 c 2 - 58.1796875 -15.1796875 l 2 - 51.9296875 -8.9296875 51.9296875 1.2001953125 58.1796875 7.4501953125 c 2 - 61.849609375 11.1201171875 l 1 - 58.26953125 17.73046875 55.400390625 24.6796875 53.2001953125 32.009765625 c 1 - 48 32.009765625 l 2 - 39.16015625 32.009765625 32 39.169921875 32 48.009765625 c 2 - 32 80.009765625 l 2 - 32 88.849609375 39.16015625 96.009765625 48 96.009765625 c 2 - 53.2001953125 96.009765625 l 1 - 54.99609375 102.020507812 58.87109375 111.37890625 61.849609375 116.900390625 c 1 - 58.1796875 120.5703125 l 2 - 51.9296875 126.8203125 51.9296875 136.950195312 58.1796875 143.200195312 c 2 - 80.8095703125 165.8203125 l 2 - 87.0595703125 172.0703125 97.1904296875 172.0703125 103.440429688 165.8203125 c 2 - 107.110351562 162.150390625 l 1 - 113.719726562 165.73046875 120.669921875 168.599609375 128 170.799804688 c 1 - 128 176 l 2 - 128 184.83984375 135.16015625 192 144 192 c 2 - 176 192 l 2 - 184.83984375 192 192 184.83984375 192 176 c 2 - 192 170.799804688 l 1 - 198.010742188 169.00390625 207.369140625 165.12890625 212.889648438 162.150390625 c 1 - 216.559570312 165.8203125 l 2 - 222.809570312 172.0703125 232.940429688 172.0703125 239.190429688 165.8203125 c 2 - 261.8203125 143.190429688 l 2 - 268.0703125 136.940429688 268.0703125 126.809570312 261.8203125 120.559570312 c 2 - 258.150390625 116.889648438 l 1 - 261.73046875 110.280273438 264.599609375 103.330078125 266.799804688 96 c 1 - 272 96 l 2 -160 16 m 0 - 186.509765625 16 208 37.490234375 208 64 c 0 - 208 90.509765625 186.509765625 112 160 112 c 0 - 133.490234375 112 112 90.509765625 112 64 c 0 - 112 37.490234375 133.490234375 16 160 16 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" t r u c k hyphen m o n s t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" T r u c k hyphen M o n s t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" T r u c k hyphen m o n s t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" T R U C K hyphen M O N S T E R -EndChar - -StartChar: truck-pickup -Encoding: 63036 63036 834 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 160 m 2 - 632.83984375 160 640 152.83984375 640 144 c 2 - 640 112 l 2 - 640 103.16015625 632.83984375 96 624 96 c 2 - 574.400390625 96 l 1 - 575.16015625 90.73046875 576.009765625 85.48046875 576.009765625 80 c 0 - 576.009765625 18.1396484375 525.870117188 -32 464.009765625 -32 c 0 - 402.150390625 -32 352.009765625 18.1396484375 352.009765625 80 c 0 - 352.009765625 85.48046875 352.860351562 90.73046875 353.620117188 96 c 1 - 286.389648438 96 l 1 - 287.150390625 90.73046875 288 85.48046875 288 80 c 0 - 288 18.1396484375 237.860351562 -32 176 -32 c 0 - 114.139648438 -32 64 18.1396484375 64 80 c 0 - 64 85.48046875 64.849609375 90.73046875 65.6103515625 96 c 1 - 16 96 l 2 - 7.16015625 96 0 103.16015625 0 112 c 2 - 0 144 l 2 - 0 152.83984375 7.16015625 160 16 160 c 2 - 32 160 l 1 - 32 224 l 2 - 32 241.669921875 46.330078125 256 64 256 c 2 - 224 256 l 1 - 224 384 l 2 - 224 401.669921875 238.330078125 416 256 416 c 2 - 369.240234375 416 l 2 - 386.219726562 415.998046875 408.610351562 405.237304688 419.219726562 391.98046875 c 2 - 528 256 l 1 - 576 256 l 2 - 593.669921875 256 608 241.669921875 608 224 c 2 - 608 160 l 1 - 624 160 l 2 -288 352 m 1 - 288 256 l 1 - 446.040039062 256 l 1 - 369.240234375 352 l 1 - 288 352 l 1 -176 32 m 0 - 202.469726562 32 224 53.5302734375 224 80 c 0 - 224 106.469726562 202.469726562 128 176 128 c 0 - 149.530273438 128 128 106.469726562 128 80 c 0 - 128 53.5302734375 149.530273438 32 176 32 c 0 -464 32 m 0 - 490.469726562 32 512 53.5302734375 512 80 c 0 - 512 106.469726562 490.469726562 128 464 128 c 0 - 437.530273438 128 416 106.469726562 416 80 c 0 - 416 53.5302734375 437.530273438 32 464 32 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" t r u c k hyphen p i c k u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" T r u c k hyphen P i c k u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" T r u c k hyphen p i c k u p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" T R U C K hyphen P I C K U P -EndChar - -StartChar: ad -Encoding: 63041 63041 835 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -157.51953125 176 m 1 - 176 229.219726562 l 1 - 194.48046875 176 l 1 - 157.51953125 176 l 1 -352 192 m 0 - 365.23046875 192 376 181.23046875 376 168 c 0 - 376 154.76953125 365.23046875 144 352 144 c 0 - 338.76953125 144 328 154.76953125 328 168 c 0 - 328 181.23046875 338.76953125 192 352 192 c 0 -464 384 m 2 - 490.5 384 512 362.5 512 336 c 2 - 512 48 l 2 - 512 21.5 490.5 0 464 0 c 2 - 48 0 l 2 - 21.5 0 0 21.5 0 48 c 2 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 464 384 l 2 -250.580078125 96 m 2 - 261.580078125 96 269.299804688 106.849609375 265.690429688 117.25 c 2 - 212 271.870117188 l 2 - 208.912109375 280.7734375 198.7578125 288 189.333984375 288 c 2 - 189.330078125 288 l 1 - 162.669921875 288 l 1 - 162.666015625 288 l 2 - 153.24609375 288 143.091796875 280.778320312 140 271.879882812 c 2 - 86.2998046875 117.25 l 2 - 82.6904296875 106.849609375 90.41015625 96 101.419921875 96 c 2 - 118.360351562 96 l 1 - 118.366210938 96 l 2 - 124.647460938 96 131.418945312 100.81640625 133.48046875 106.75 c 2 - 140.860351562 128 l 1 - 211.150390625 128 l 1 - 218.51953125 106.75 l 2 - 220.759765625 100.3203125 226.830078125 96 233.639648438 96 c 2 - 250.580078125 96 l 2 -424 112 m 2 - 424 272 l 2 - 424 280.83984375 416.83984375 288 408 288 c 2 - 392 288 l 2 - 383.16015625 288 376 280.83984375 376 272 c 2 - 376 235.580078125 l 1 - 368.459960938 238.26953125 360.459960938 240 352 240 c 0 - 312.299804688 240 280 207.700195312 280 168 c 0 - 280 128.299804688 312.299804688 96 352 96 c 0 - 361.9296875 96 371.400390625 98.01953125 380.01953125 101.6796875 c 1 - 382.959960938 98.26953125 387.150390625 96 392 96 c 2 - 408 96 l 2 - 416.83984375 96 424 103.16015625 424 112 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" A d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" A D -EndChar - -StartChar: ankh -Encoding: 63044 63044 836 -Width: 320 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -296 192 m 2 - 309.25 192 320 181.259765625 320 168 c 2 - 320 136 l 2 - 320 122.75 309.25 112 296 112 c 2 - 200 112 l 1 - 200 -40 l 2 - 200 -53.25 189.25 -64 176 -64 c 2 - 144 -64 l 2 - 130.75 -64 120 -53.25 120 -40 c 2 - 120 112 l 1 - 24 112 l 2 - 10.75 112 0 122.75 0 136 c 2 - 0 168 l 2 - 0 181.259765625 10.75 192 24 192 c 2 - 68.6201171875 192 l 1 - 47.5400390625 225.990234375 32 266.349609375 32 304 c 0 - 32 392.370117188 89.3095703125 448 160 448 c 0 - 230.690429688 448 288 392.370117188 288 304 c 0 - 288 266.349609375 272.459960938 225.990234375 251.379882812 192 c 1 - 296 192 l 2 -160 368 m 0 - 130.389648438 368 112 343.48046875 112 304 c 0 - 112 269.33984375 139.139648438 225.849609375 160 203.129882812 c 1 - 180.860351562 225.860351562 208 269.33984375 208 304 c 0 - 208 343.48046875 189.610351562 368 160 368 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" a n k h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" A n k h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" A N K H -EndChar - -StartChar: bible -Encoding: 63047 63047 837 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 89.599609375 m 2 - 448 80 444.799804688 73.599609375 438.400390625 70.400390625 c 1 - 435.200195312 57.599609375 435.200195312 12.7998046875 438.400390625 -3.2001953125 c 1 - 444.799804688 -9.599609375 448 -16 448 -22.400390625 c 2 - 448 -38.400390625 l 2 - 448 -54.400390625 435.200195312 -64 422.400390625 -64 c 2 - 96 -64 l 2 - 41.599609375 -64 0 -22.400390625 0 32 c 2 - 0 352 l 2 - 0 406.400390625 41.599609375 448 96 448 c 2 - 422.400390625 448 l 2 - 438.400390625 448 448 438.400390625 448 422.400390625 c 2 - 448 89.599609375 l 2 -144 304 m 2 - 144 272 l 2 - 144 263.16015625 151.16015625 256 160 256 c 2 - 208 256 l 1 - 208 144 l 2 - 208 135.16015625 215.16015625 128 224 128 c 2 - 256 128 l 2 - 264.83984375 128 272 135.16015625 272 144 c 2 - 272 256 l 1 - 320 256 l 2 - 328.83984375 256 336 263.16015625 336 272 c 2 - 336 304 l 2 - 336 312.83984375 328.83984375 320 320 320 c 2 - 272 320 l 1 - 272 368 l 2 - 272 376.83984375 264.83984375 384 256 384 c 2 - 224 384 l 2 - 215.16015625 384 208 376.83984375 208 368 c 2 - 208 320 l 1 - 160 320 l 2 - 151.16015625 320 144 312.83984375 144 304 c 2 -380.799804688 0 m 1 - 380.799804688 64 l 1 - 96 64 l 2 - 80 64 64 51.2001953125 64 32 c 0 - 64 12.7998046875 76.7998046875 0 96 0 c 2 - 380.799804688 0 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" b i b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" B i b l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" B I B L E -EndChar - -StartChar: business-time -Encoding: 63050 63050 838 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 224 m 0 - 575.58984375 224 640 159.58984375 640 80 c 0 - 640 0.41015625 575.58984375 -64 496 -64 c 0 - 416.41015625 -64 352 0.41015625 352 80 c 0 - 352 159.58984375 416.41015625 224 496 224 c 0 -560 73.7099609375 m 2 - 560 86.2900390625 l 2 - 560 91.6298828125 555.629882812 96 550.290039062 96 c 2 - 512 96 l 1 - 512 150.280273438 l 2 - 512 155.620117188 507.629882812 159.990234375 502.290039062 159.990234375 c 2 - 489.719726562 159.990234375 l 2 - 484.379882812 159.990234375 480.009765625 155.620117188 480.009765625 150.280273438 c 2 - 480.009765625 73.7099609375 l 2 - 480.009765625 68.3701171875 484.379882812 64 489.719726562 64 c 2 - 550.290039062 64 l 2 - 555.629882812 64 560 68.3701171875 560 73.7099609375 c 2 -496 256 m 0 - 458.469726562 256 423.719726562 244.08984375 395.120117188 224 c 1 - 0 224 l 1 - 0 304 l 2 - 0 329.599609375 22.400390625 352 48 352 c 2 - 128 352 l 1 - 128 400 l 2 - 128 425.599609375 150.400390625 448 176 448 c 2 - 336 448 l 2 - 361.599609375 448 384 425.599609375 384 400 c 2 - 384 352 l 1 - 464 352 l 2 - 489.599609375 352 512 329.599609375 512 304 c 2 - 512 255.190429688 l 1 - 506.719726562 255.669921875 501.400390625 256 496 256 c 0 -320 352 m 1 - 320 384 l 1 - 192 384 l 1 - 192 352 l 1 - 320 352 l 1 -326.8203125 128 m 1 - 322.48046875 112.719726562 320 96.66015625 320 80 c 0 - 320 51.1796875 327.099609375 24.0400390625 339.4296875 0 c 1 - 48 0 l 2 - 22.400390625 0 0 22.400390625 0 48 c 2 - 0 192 l 1 - 192 192 l 1 - 192 144 l 2 - 192 135.16015625 199.16015625 128 208 128 c 2 - 326.8203125 128 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" b u s i n e s s hyphen t i m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B u s i n e s s hyphen T i m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B u s i n e s s hyphen t i m e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B U S I N E S S hyphen T I M E -EndChar - -StartChar: city -Encoding: 63055 63055 839 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -616 256 m 2 - 629.25 256 640 245.259765625 640 232 c 2 - 640 -32 l 2 - 640 -49.669921875 625.669921875 -64 608 -64 c 2 - 32 -64 l 2 - 14.330078125 -64 0 -49.669921875 0 -32 c 2 - 0 328 l 2 - 0 341.259765625 10.740234375 352 24 352 c 2 - 64 352 l 1 - 64 432 l 2 - 64 440.83984375 71.16015625 448 80 448 c 2 - 96 448 l 2 - 104.83984375 448 112 440.83984375 112 432 c 2 - 112 352 l 1 - 176 352 l 1 - 176 432 l 2 - 176 440.83984375 183.16015625 448 192 448 c 2 - 208 448 l 2 - 216.83984375 448 224 440.83984375 224 432 c 2 - 224 352 l 1 - 288 352 l 1 - 288 424 l 2 - 288 437.259765625 298.740234375 448 312 448 c 2 - 456 448 l 2 - 469.259765625 448 480 437.259765625 480 424 c 2 - 480 256 l 1 - 616 256 l 2 -128 44 m 2 - 128 84 l 2 - 128 90.6298828125 122.629882812 96 116 96 c 2 - 76 96 l 2 - 69.3701171875 96 64 90.6298828125 64 84 c 2 - 64 44 l 2 - 64 37.3701171875 69.3701171875 32 76 32 c 2 - 116 32 l 2 - 122.629882812 32 128 37.3701171875 128 44 c 2 -128 140 m 2 - 128 180 l 2 - 128 186.629882812 122.629882812 192 116 192 c 2 - 76 192 l 2 - 69.3701171875 192 64 186.629882812 64 180 c 2 - 64 140 l 2 - 64 133.370117188 69.3701171875 128 76 128 c 2 - 116 128 l 2 - 122.629882812 128 128 133.370117188 128 140 c 2 -128 236 m 2 - 128 276 l 2 - 128 282.629882812 122.629882812 288 116 288 c 2 - 76 288 l 2 - 69.3701171875 288 64 282.629882812 64 276 c 2 - 64 236 l 2 - 64 229.370117188 69.3701171875 224 76 224 c 2 - 116 224 l 2 - 122.629882812 224 128 229.370117188 128 236 c 2 -256 44 m 2 - 256 84 l 2 - 256 90.6298828125 250.629882812 96 244 96 c 2 - 204 96 l 2 - 197.370117188 96 192 90.6298828125 192 84 c 2 - 192 44 l 2 - 192 37.3701171875 197.370117188 32 204 32 c 2 - 244 32 l 2 - 250.629882812 32 256 37.3701171875 256 44 c 2 -256 140 m 2 - 256 180 l 2 - 256 186.629882812 250.629882812 192 244 192 c 2 - 204 192 l 2 - 197.370117188 192 192 186.629882812 192 180 c 2 - 192 140 l 2 - 192 133.370117188 197.370117188 128 204 128 c 2 - 244 128 l 2 - 250.629882812 128 256 133.370117188 256 140 c 2 -256 236 m 2 - 256 276 l 2 - 256 282.629882812 250.629882812 288 244 288 c 2 - 204 288 l 2 - 197.370117188 288 192 282.629882812 192 276 c 2 - 192 236 l 2 - 192 229.370117188 197.370117188 224 204 224 c 2 - 244 224 l 2 - 250.629882812 224 256 229.370117188 256 236 c 2 -416 140 m 2 - 416 180 l 2 - 416 186.629882812 410.629882812 192 404 192 c 2 - 364 192 l 2 - 357.370117188 192 352 186.629882812 352 180 c 2 - 352 140 l 2 - 352 133.370117188 357.370117188 128 364 128 c 2 - 404 128 l 2 - 410.629882812 128 416 133.370117188 416 140 c 2 -416 236 m 2 - 416 276 l 2 - 416 282.629882812 410.629882812 288 404 288 c 2 - 364 288 l 2 - 357.370117188 288 352 282.629882812 352 276 c 2 - 352 236 l 2 - 352 229.370117188 357.370117188 224 364 224 c 2 - 404 224 l 2 - 410.629882812 224 416 229.370117188 416 236 c 2 -416 332 m 2 - 416 372 l 2 - 416 378.629882812 410.629882812 384 404 384 c 2 - 364 384 l 2 - 357.370117188 384 352 378.629882812 352 372 c 2 - 352 332 l 2 - 352 325.370117188 357.370117188 320 364 320 c 2 - 404 320 l 2 - 410.629882812 320 416 325.370117188 416 332 c 2 -576 44 m 2 - 576 84 l 2 - 576 90.6298828125 570.629882812 96 564 96 c 2 - 524 96 l 2 - 517.370117188 96 512 90.6298828125 512 84 c 2 - 512 44 l 2 - 512 37.3701171875 517.370117188 32 524 32 c 2 - 564 32 l 2 - 570.629882812 32 576 37.3701171875 576 44 c 2 -576 140 m 2 - 576 180 l 2 - 576 186.629882812 570.629882812 192 564 192 c 2 - 524 192 l 2 - 517.370117188 192 512 186.629882812 512 180 c 2 - 512 140 l 2 - 512 133.370117188 517.370117188 128 524 128 c 2 - 564 128 l 2 - 570.629882812 128 576 133.370117188 576 140 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" c i t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C i t y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" C I T Y -EndChar - -StartChar: comment-dollar -Encoding: 63057 63057 840 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 416 m 0 - 397.379882812 416 512 322.879882812 512 208 c 0 - 512 93.1201171875 397.379882812 0 256 0 c 0 - 217.58984375 0 181.290039062 7.0703125 148.599609375 19.3798828125 c 1 - 123.990234375 -0.25 74.259765625 -32 8 -32 c 2 - 7.998046875 -32 l 2 - 3.5849609375 -32 0.0029296875 -28.41796875 0.0029296875 -24.0048828125 c 0 - 0.0029296875 -22.2431640625 0.9873046875 -19.77734375 2.2001953125 -18.5 c 0 - 2.7001953125 -17.9697265625 44.4599609375 26.9501953125 57.01953125 77.259765625 c 1 - 21.41015625 112.990234375 0 158.440429688 0 208 c 0 - 0 322.879882812 114.620117188 416 256 416 c 0 -280 113.559570312 m 1 - 310.290039062 117.1796875 333.370117188 144.540039062 329.3203125 176.599609375 c 0 - 326.419921875 199.559570312 308.66015625 217.91015625 286.41015625 224.26953125 c 2 - 236.33984375 238.5703125 l 2 - 232.740234375 239.599609375 230.219726562 242.9296875 230.219726562 246.6796875 c 0 - 230.219726562 251.3203125 234 255.099609375 238.66015625 255.099609375 c 2 - 271.440429688 255.099609375 l 1 - 271.505859375 255.099609375 l 2 - 274.453125 255.099609375 279.01953125 254.10546875 281.700195312 252.879882812 c 0 - 286.5 250.669921875 292.0703125 251.169921875 295.809570312 254.91015625 c 2 - 313.330078125 272.4296875 l 2 - 318.599609375 277.700195312 318 286.700195312 311.780273438 290.809570312 c 0 - 302.280273438 297.080078125 291.419921875 300.919921875 280 302.26953125 c 1 - 280 320 l 2 - 280 328.83984375 272.83984375 336 264 336 c 2 - 248 336 l 2 - 239.16015625 336 232 328.83984375 232 320 c 2 - 232 302.450195312 l 1 - 201.709960938 298.830078125 178.629882812 271.469726562 182.6796875 239.400390625 c 0 - 185.580078125 216.440429688 203.33984375 198.080078125 225.58984375 191.73046875 c 2 - 275.66015625 177.4296875 l 2 - 279.259765625 176.400390625 281.780273438 173.0703125 281.780273438 169.3203125 c 0 - 281.780273438 164.6796875 278 160.900390625 273.33984375 160.900390625 c 2 - 240.559570312 160.900390625 l 2 - 236.959960938 160.900390625 233.48046875 161.66015625 230.299804688 163.120117188 c 0 - 225.5 165.330078125 219.9296875 164.830078125 216.190429688 161.08984375 c 2 - 198.669921875 143.5703125 l 2 - 193.400390625 138.299804688 194 129.299804688 200.219726562 125.190429688 c 0 - 209.719726562 118.919921875 220.580078125 115.080078125 232 113.73046875 c 1 - 232 96 l 2 - 232 87.16015625 239.16015625 80 248 80 c 2 - 264 80 l 2 - 272.83984375 80 280 87.16015625 280 96 c 2 - 280 113.559570312 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" c o m m e n t hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" C o m m e n t hyphen D o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" C o m m e n t hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" C O M M E N T hyphen D O L L A R -EndChar - -StartChar: comments-dollar -Encoding: 63059 63059 841 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 256 m 0 - 416 167.629882812 322.879882812 96 208 96 c 0 - 167.01953125 96 128.9296875 105.240234375 96.73046875 120.98046875 c 1 - 74.9296875 108.25 44.580078125 96 8 96 c 2 - 7.998046875 96 l 2 - 3.5849609375 96 0.0029296875 99.58203125 0.0029296875 103.995117188 c 0 - 0.0029296875 105.756835938 0.9873046875 108.22265625 2.2001953125 109.5 c 0 - 2.51953125 109.83984375 24.6103515625 133.780273438 37.9697265625 164.01953125 c 1 - 14.1298828125 190.049804688 0 221.73046875 0 256 c 0 - 0 344.370117188 93.1201171875 416 208 416 c 0 - 322.879882812 416 416 344.370117188 416 256 c 0 -192 160 m 2 - 192 155.580078125 195.580078125 152 200 152 c 2 - 216 152 l 2 - 220.419921875 152 224 155.580078125 224 160 c 2 - 224 176.120117188 l 1 - 247.620117188 176.75 266.669921875 196.66015625 266.669921875 221.190429688 c 0 - 266.669921875 241.16015625 253.6796875 259 235.08984375 264.580078125 c 2 - 190.08984375 278.080078125 l 2 - 184.9296875 279.620117188 181.3203125 284.860351562 181.3203125 290.809570312 c 0 - 181.3203125 298.080078125 186.620117188 304 193.120117188 304 c 2 - 221.23046875 304 l 2 - 225.790039062 304 230.1796875 302.709960938 234.049804688 300.280273438 c 0 - 237.290039062 298.25 241.41015625 298.370117188 244.1796875 301.009765625 c 2 - 255.9296875 312.219726562 l 2 - 259.459960938 315.58984375 259.259765625 321.4296875 255.360351562 324.360351562 c 0 - 246.259765625 331.200195312 235.280273438 335.129882812 223.990234375 335.709960938 c 1 - 223.990234375 352 l 2 - 223.990234375 356.419921875 220.41015625 360 215.990234375 360 c 2 - 199.990234375 360 l 2 - 195.5703125 360 191.990234375 356.419921875 191.990234375 352 c 2 - 191.990234375 335.879882812 l 1 - 168.370117188 335.25 149.3203125 315.330078125 149.3203125 290.809570312 c 0 - 149.3203125 270.83984375 162.309570312 253 180.900390625 247.419921875 c 2 - 225.900390625 233.919921875 l 2 - 231.059570312 232.379882812 234.669921875 227.139648438 234.669921875 221.190429688 c 0 - 234.669921875 213.919921875 229.370117188 208 222.870117188 208 c 2 - 194.759765625 208 l 2 - 190.200195312 208 185.809570312 209.299804688 181.940429688 211.719726562 c 0 - 178.700195312 213.75 174.580078125 213.629882812 171.809570312 210.990234375 c 2 - 160.059570312 199.780273438 l 2 - 156.530273438 196.41015625 156.73046875 190.5703125 160.629882812 187.639648438 c 0 - 169.73046875 180.809570312 180.709960938 176.870117188 192 176.290039062 c 1 - 192 160 l 2 -538.009765625 36.009765625 m 1 - 551.370117188 5.75 573.48046875 -18.16015625 573.790039062 -18.490234375 c 0 - 576 -20.8203125 576.610351562 -24.2197265625 575.33984375 -27.16015625 c 0 - 574.08984375 -30.08984375 571.200195312 -32 568 -32 c 0 - 531.419921875 -32 501.0703125 -19.75 479.26953125 -7.01953125 c 1 - 447.0703125 -22.759765625 408.98046875 -32 368 -32 c 0 - 281.76953125 -32 207.799804688 8.3701171875 176.26953125 65.8798828125 c 1 - 186.6796875 64.76953125 197.219726562 64 208 64 c 0 - 340.33984375 64 448 150.129882812 448 256 c 0 - 448 262.780273438 447.530273438 269.469726562 446.669921875 276.0703125 c 1 - 522.509765625 252.200195312 576 194.940429688 576 128 c 0 - 576 93.73046875 561.870117188 62.0400390625 538.009765625 36.009765625 c 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" c o m m e n t s hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" C o m m e n t s hyphen D o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" C o m m e n t s hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" C O M M E N T S hyphen D O L L A R -EndChar - -StartChar: cross -Encoding: 63060 63060 842 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -352 320 m 2 - 369.669921875 320 384 305.669921875 384 288 c 2 - 384 224 l 2 - 384 206.330078125 369.669921875 192 352 192 c 2 - 256 192 l 1 - 256 -32 l 2 - 256 -49.669921875 241.669921875 -64 224 -64 c 2 - 160 -64 l 2 - 142.330078125 -64 128 -49.669921875 128 -32 c 2 - 128 192 l 1 - 32 192 l 2 - 14.330078125 192 0 206.330078125 0 224 c 2 - 0 288 l 2 - 0 305.669921875 14.330078125 320 32 320 c 2 - 128 320 l 1 - 128 416 l 2 - 128 433.669921875 142.330078125 448 160 448 c 2 - 224 448 l 2 - 241.669921875 448 256 433.669921875 256 416 c 2 - 256 320 l 1 - 352 320 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" c r o s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C r o s s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C R O S S -EndChar - -StartChar: dharmachakra -Encoding: 63061 63061 843 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -495 222.940429688 m 2 - 504.209960938 223.509765625 512 216.200195312 512.009765625 206.969726562 c 2 - 512.009765625 177.030273438 l 2 - 512.009765625 167.799804688 504.219726562 160.48046875 495.009765625 161.059570312 c 2 - 477.790039062 162.139648438 l 1 - 472.509765625 122.66015625 456.990234375 86.509765625 433.9296875 56.3095703125 c 1 - 446.879882812 44.8798828125 l 2 - 453.799804688 38.7802734375 454.139648438 28.099609375 447.610351562 21.5703125 c 2 - 426.440429688 0.400390625 l 2 - 419.919921875 -6.1201171875 409.240234375 -5.7900390625 403.129882812 1.1298828125 c 2 - 391.700195312 14.080078125 l 1 - 361.5 -8.990234375 325.349609375 -24.509765625 285.860351562 -29.7802734375 c 1 - 286.940429688 -47 l 2 - 287.509765625 -56.2099609375 280.200195312 -64 270.969726562 -64 c 2 - 241.030273438 -64 l 2 - 231.799804688 -64 224.48046875 -56.2099609375 225.059570312 -47 c 2 - 226.150390625 -29.7802734375 l 1 - 186.66015625 -24.5 150.509765625 -8.98046875 120.309570312 14.080078125 c 1 - 108.879882812 1.1298828125 l 2 - 102.780273438 -5.7900390625 92.099609375 -6.1298828125 85.5703125 0.400390625 c 2 - 64.400390625 21.5703125 l 2 - 57.8798828125 28.08984375 58.2099609375 38.76953125 65.1298828125 44.8798828125 c 2 - 78.080078125 56.3095703125 l 1 - 55.009765625 86.5 39.490234375 122.650390625 34.2197265625 162.139648438 c 1 - 17 161.059570312 l 2 - 7.7900390625 160.490234375 0 167.799804688 0 177.030273438 c 2 - 0 206.969726562 l 2 - 0 216.200195312 7.7900390625 223.51953125 17 222.940429688 c 2 - 34.2197265625 221.860351562 l 1 - 39.5 261.349609375 55.01953125 297.5 78.080078125 327.700195312 c 1 - 65.1298828125 339.129882812 l 2 - 58.2099609375 345.23046875 57.8701171875 355.91015625 64.400390625 362.440429688 c 2 - 85.5703125 383.599609375 l 2 - 92.08984375 390.120117188 102.76953125 389.790039062 108.879882812 382.870117188 c 2 - 120.309570312 369.919921875 l 1 - 150.5 392.990234375 186.650390625 408.509765625 226.139648438 413.780273438 c 1 - 225.059570312 431 l 2 - 224.490234375 440.209960938 231.799804688 448 241.030273438 448 c 2 - 270.969726562 448 l 2 - 280.200195312 448 287.51953125 440.209960938 286.940429688 431 c 2 - 285.870117188 413.790039062 l 1 - 325.349609375 408.509765625 361.5 392.990234375 391.700195312 369.9296875 c 1 - 403.129882812 382.870117188 l 2 - 409.23046875 389.790039062 419.91015625 390.129882812 426.440429688 383.599609375 c 2 - 447.599609375 362.440429688 l 2 - 454.120117188 355.919921875 453.790039062 345.240234375 446.870117188 339.129882812 c 2 - 433.919921875 327.700195312 l 1 - 456.990234375 297.5 472.509765625 261.349609375 477.780273438 221.860351562 c 1 - 495 222.940429688 l 2 -281.83984375 349.389648438 m 1 - 277.830078125 285.26953125 l 1 - 288.129882812 282.860351562 297.719726562 278.759765625 306.450195312 273.3203125 c 1 - 349.0703125 321.610351562 l 1 - 329.469726562 335.73046875 306.650390625 345.3203125 281.83984375 349.389648438 c 1 -230.16015625 349.389648438 m 1 - 205.349609375 345.3203125 182.530273438 335.73046875 162.9296875 321.610351562 c 1 - 205.549804688 273.3203125 l 1 - 214.280273438 278.75 223.879882812 282.860351562 234.169921875 285.26953125 c 1 - 230.16015625 349.389648438 l 1 -126.389648438 285.059570312 m 1 - 112.26953125 265.459960938 102.6796875 242.650390625 98.6103515625 217.83984375 c 1 - 162.73046875 213.830078125 l 1 - 165.150390625 224.120117188 169.25 233.719726562 174.690429688 242.450195312 c 1 - 126.389648438 285.059570312 l 1 -98.6103515625 166.16015625 m 1 - 102.6796875 141.349609375 112.26953125 118.530273438 126.389648438 98.9296875 c 1 - 174.6796875 141.549804688 l 1 - 169.25 150.280273438 165.139648438 159.879882812 162.73046875 170.169921875 c 1 - 98.6103515625 166.16015625 l 1 -230.16015625 34.6103515625 m 1 - 234.16015625 98.73046875 l 1 - 223.870117188 101.150390625 214.26953125 105.25 205.540039062 110.690429688 c 1 - 162.9296875 62.3896484375 l 1 - 182.530273438 48.26953125 205.349609375 38.6796875 230.16015625 34.6103515625 c 1 -256 160 m 0 - 273.669921875 160 288 174.330078125 288 192 c 0 - 288 209.669921875 273.669921875 224 256 224 c 0 - 238.330078125 224 224 209.669921875 224 192 c 0 - 224 174.330078125 238.330078125 160 256 160 c 0 -281.83984375 34.6103515625 m 1 - 306.650390625 38.6796875 329.459960938 48.26953125 349.059570312 62.3896484375 c 1 - 306.450195312 110.690429688 l 1 - 297.719726562 105.25 288.120117188 101.139648438 277.830078125 98.73046875 c 1 - 281.83984375 34.6103515625 l 1 -385.610351562 98.9404296875 m 1 - 399.73046875 118.530273438 409.3203125 141.349609375 413.389648438 166.169921875 c 1 - 349.26953125 170.1796875 l 1 - 346.860351562 159.879882812 342.759765625 150.290039062 337.3203125 141.559570312 c 1 - 385.610351562 98.9404296875 l 1 -349.26953125 213.830078125 m 1 - 413.389648438 217.830078125 l 1 - 409.3203125 242.639648438 399.73046875 265.459960938 385.610351562 285.059570312 c 1 - 337.309570312 242.450195312 l 1 - 342.75 233.719726562 346.860351562 224.120117188 349.26953125 213.830078125 c 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" d h a r m a c h a k r a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" D H A R M A C H A K R A -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" D h a r m a c h a k r a -EndChar - -StartChar: envelope-open-text -Encoding: 63064 63064 844 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -176 232 m 2 - 167.16015625 232 160 239.16015625 160 248 c 2 - 160 264 l 2 - 160 272.83984375 167.16015625 280 176 280 c 2 - 336 280 l 2 - 344.83984375 280 352 272.83984375 352 264 c 2 - 352 248 l 2 - 352 239.16015625 344.83984375 232 336 232 c 2 - 176 232 l 2 -160 152 m 2 - 160 168 l 2 - 160 176.83984375 167.16015625 184 176 184 c 2 - 336 184 l 2 - 344.83984375 184 352 176.83984375 352 168 c 2 - 352 152 l 2 - 352 143.16015625 344.83984375 136 336 136 c 2 - 176 136 l 2 - 167.16015625 136 160 143.16015625 160 152 c 2 -256 30.8701171875 m 0 - 272.419921875 30.8701171875 288.83984375 35.9404296875 302.860351562 46.0595703125 c 2 - 512 197.139648438 l 1 - 512 -16 l 2 - 512 -42.509765625 490.509765625 -64 464 -64 c 2 - 48 -64 l 2 - 21.490234375 -64 0 -42.509765625 0 -16 c 2 - 0 197.139648438 l 1 - 209.139648438 46.0595703125 l 2 - 223.16015625 35.9296875 239.580078125 30.8701171875 256 30.8701171875 c 0 -493.610351562 285.049804688 m 0 - 505.219726562 275.950195312 512 262.01953125 512 247.280273438 c 2 - 512 236.629882812 l 1 - 416 167.280273438 l 1 - 416 352 l 1 - 96 352 l 1 - 96 167.280273438 l 1 - 0 236.629882812 l 1 - 0 247.280273438 l 2 - 0.001953125 260.174804688 8.240234375 277.095703125 18.3896484375 285.049804688 c 0 - 27.240234375 291.990234375 35.6298828125 298.530273438 48 307.860351562 c 1 - 48 352 l 2 - 48 378.509765625 69.490234375 400 96 400 c 2 - 173.549804688 400 l 2 - 176.58984375 402.200195312 179.419921875 404.259765625 182.58984375 406.559570312 c 0 - 199.41015625 418.830078125 232.799804688 448.349609375 256 448 c 0 - 279.200195312 448.349609375 312.599609375 418.830078125 329.41015625 406.559570312 c 0 - 332.580078125 404.259765625 335.41015625 402.200195312 338.450195312 400 c 2 - 416 400 l 2 - 442.509765625 400 464 378.509765625 464 352 c 2 - 464 307.860351562 l 1 - 476.370117188 298.51953125 484.759765625 291.990234375 493.610351562 285.049804688 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" e n v e l o p e hyphen o p e n hyphen t e x t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" E n v e l o p e hyphen O p e n hyphen T e x t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" E n v e l o p e hyphen o p e n hyphen t e x t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" E N V E L O P E hyphen O P E N hyphen T E X T -EndChar - -StartChar: folder-minus -Encoding: 63069 63069 845 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 320 m 2 - 490.509765625 320 512 298.509765625 512 272 c 2 - 512 48 l 2 - 512 21.490234375 490.509765625 0 464 0 c 2 - 48 0 l 2 - 21.490234375 0 0 21.490234375 0 48 c 2 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 208 384 l 1 - 272 320 l 1 - 464 320 l 2 -368 152 m 2 - 368 168 l 2 - 368 176.83984375 360.83984375 184 352 184 c 2 - 160 184 l 2 - 151.16015625 184 144 176.83984375 144 168 c 2 - 144 152 l 2 - 144 143.16015625 151.16015625 136 160 136 c 2 - 352 136 l 2 - 360.83984375 136 368 143.16015625 368 152 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" f o l d e r hyphen m i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" F o l d e r hyphen M i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" F o l d e r hyphen m i n u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" F O L D E R hyphen M I N U S -EndChar - -StartChar: folder-plus -Encoding: 63070 63070 846 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 320 m 2 - 490.509765625 320 512 298.509765625 512 272 c 2 - 512 48 l 2 - 512 21.490234375 490.509765625 0 464 0 c 2 - 48 0 l 2 - 21.490234375 0 0 21.490234375 0 48 c 2 - 0 336 l 2 - 0 362.509765625 21.490234375 384 48 384 c 2 - 208 384 l 1 - 272 320 l 1 - 464 320 l 2 -368 152 m 2 - 368 168 l 2 - 368 176.83984375 360.83984375 184 352 184 c 2 - 280 184 l 1 - 280 256 l 2 - 280 264.83984375 272.83984375 272 264 272 c 2 - 248 272 l 2 - 239.16015625 272 232 264.83984375 232 256 c 2 - 232 184 l 1 - 160 184 l 2 - 151.16015625 184 144 176.83984375 144 168 c 2 - 144 152 l 2 - 144 143.16015625 151.16015625 136 160 136 c 2 - 232 136 l 1 - 232 64 l 2 - 232 55.16015625 239.16015625 48 248 48 c 2 - 264 48 l 2 - 272.83984375 48 280 55.16015625 280 64 c 2 - 280 136 l 1 - 352 136 l 2 - 360.83984375 136 368 143.16015625 368 152 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" f o l d e r hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" F o l d e r hyphen P l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" F o l d e r hyphen p l u s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" F O L D E R hyphen P L U S -EndChar - -StartChar: funnel-dollar -Encoding: 63074 63074 847 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -433.459960938 282.059570312 m 1 - 350.049804688 261.169921875 288 185.790039062 288 96 c 0 - 288 41.650390625 310.799804688 -7.3798828125 347.209960938 -42.349609375 c 1 - 336.459960938 -62.8896484375 308.849609375 -71.5595703125 287.990234375 -55.919921875 c 2 - 208 4.080078125 l 2 - 197.9296875 11.6396484375 192 23.490234375 192 36.080078125 c 2 - 192 192 l 1 - 9.33984375 393.9296875 l 2 - -10.6103515625 413.879882812 3.51953125 448 31.740234375 448 c 2 - 512.259765625 448 l 2 - 540.48046875 448 554.610351562 413.879882812 534.66015625 393.9296875 c 2 - 433.459960938 282.059570312 l 1 -480 256 m 0 - 568.370117188 256 640 184.370117188 640 96 c 0 - 640 7.6298828125 568.370117188 -64 480 -64 c 0 - 391.629882812 -64 320 7.6298828125 320 96 c 0 - 320 184.370117188 391.629882812 256 480 256 c 0 -496 16.1201171875 m 1 - 519.629882812 16.75 538.669921875 36.66015625 538.669921875 61.1904296875 c 0 - 538.669921875 81.16015625 525.6796875 99 507.08984375 104.580078125 c 2 - 462.08984375 118.080078125 l 2 - 456.9296875 119.620117188 453.3203125 124.860351562 453.3203125 130.809570312 c 0 - 453.3203125 138.080078125 458.620117188 144 465.120117188 144 c 2 - 493.23046875 144 l 2 - 497.790039062 144 502.1796875 142.709960938 506.049804688 140.280273438 c 0 - 509.290039062 138.25 513.41015625 138.370117188 516.1796875 141.009765625 c 2 - 527.9296875 152.219726562 l 2 - 531.459960938 155.58984375 531.259765625 161.4296875 527.360351562 164.360351562 c 0 - 518.259765625 171.200195312 507.280273438 175.129882812 495.990234375 175.709960938 c 1 - 495.990234375 192 l 2 - 495.990234375 196.419921875 492.41015625 200 487.990234375 200 c 2 - 471.990234375 200 l 2 - 467.5703125 200 463.990234375 196.419921875 463.990234375 192 c 2 - 463.990234375 175.879882812 l 1 - 440.370117188 175.25 421.3203125 155.330078125 421.3203125 130.809570312 c 0 - 421.3203125 110.83984375 434.309570312 93 452.900390625 87.419921875 c 2 - 497.900390625 73.919921875 l 2 - 503.059570312 72.3798828125 506.669921875 67.1396484375 506.669921875 61.1904296875 c 0 - 506.669921875 53.919921875 501.370117188 48 494.870117188 48 c 2 - 466.759765625 48 l 2 - 462.200195312 48 457.809570312 49.2998046875 453.940429688 51.7197265625 c 0 - 450.700195312 53.75 446.580078125 53.6298828125 443.809570312 50.990234375 c 2 - 432.059570312 39.7802734375 l 2 - 428.530273438 36.41015625 428.73046875 30.5703125 432.629882812 27.6396484375 c 0 - 441.73046875 20.8095703125 452.709960938 16.8701171875 464 16.2900390625 c 1 - 464 0 l 2 - 464 -4.419921875 467.580078125 -8 472 -8 c 2 - 488 -8 l 2 - 492.419921875 -8 496 -4.419921875 496 0 c 2 - 496 16.1201171875 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" f u n n e l hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" F u n n e l hyphen D o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" F u n n e l hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" F U N N E L hyphen D O L L A R -EndChar - -StartChar: gopuram -Encoding: 63076 63076 848 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 96 m 2 - 504.799804688 96 512 88.7998046875 512 80 c 2 - 512 -48 l 2 - 512 -56.7998046875 504.799804688 -64 496 -64 c 2 - 416 -64 l 1 - 416 96 l 1 - 384 96 l 1 - 384 224 l 1 - 352 224 l 1 - 352 320 l 1 - 320 320 l 1 - 320 224 l 1 - 352 224 l 1 - 352 96 l 1 - 384 96 l 1 - 384 -64 l 1 - 304 -64 l 1 - 304 16 l 2 - 304 24.7998046875 296.799804688 32 288 32 c 2 - 224 32 l 2 - 215.200195312 32 208 24.7998046875 208 16 c 2 - 208 -64 l 1 - 128 -64 l 1 - 128 96 l 1 - 160 96 l 1 - 160 224 l 1 - 192 224 l 1 - 192 320 l 1 - 160 320 l 1 - 160 224 l 1 - 128 224 l 1 - 128 96 l 1 - 96 96 l 1 - 96 -64 l 1 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 80 l 2 - 0 88.7998046875 7.2001953125 96 16 96 c 2 - 32 96 l 1 - 32 208 l 2 - 32 216.799804688 39.2001953125 224 48 224 c 2 - 64 224 l 1 - 64 304 l 2 - 64 312.799804688 71.2001953125 320 80 320 c 2 - 96 320 l 1 - 96 432 l 2 - 96 440.799804688 103.200195312 448 112 448 c 0 - 120.799804688 448 128 440.799804688 128 432 c 2 - 128 416 l 1 - 192 416 l 1 - 192 432 l 2 - 192 440.799804688 199.200195312 448 208 448 c 0 - 216.799804688 448 224 440.799804688 224 432 c 2 - 224 416 l 1 - 288 416 l 1 - 288 432 l 2 - 288 440.799804688 295.200195312 448 304 448 c 0 - 312.799804688 448 320 440.799804688 320 432 c 2 - 320 416 l 1 - 384 416 l 1 - 384 432 l 2 - 384 440.799804688 391.200195312 448 400 448 c 0 - 408.799804688 448 416 440.799804688 416 432 c 2 - 416 320 l 1 - 432 320 l 2 - 440.799804688 320 448 312.799804688 448 304 c 2 - 448 224 l 1 - 464 224 l 2 - 472.799804688 224 480 216.799804688 480 208 c 2 - 480 96 l 1 - 496 96 l 2 -232 272 m 2 - 232 224 l 1 - 280 224 l 1 - 280 272 l 2 - 280 280.799804688 272.799804688 288 264 288 c 2 - 248 288 l 2 - 239.200195312 288 232 280.799804688 232 272 c 2 -288 96 m 1 - 288 160 l 2 - 288 168.799804688 280.799804688 176 272 176 c 2 - 240 176 l 2 - 231.200195312 176 224 168.799804688 224 160 c 2 - 224 96 l 1 - 288 96 l 1 -EndSplineSet -Validated: 524293 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" g o p u r a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" G o p u r a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" G O P U R A M -EndChar - -StartChar: hamsa -Encoding: 63077 63077 849 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -509.33984375 140.75 m 0 - 510.80859375 137.379882812 512 131.66015625 512 127.984375 c 0 - 512 121.02734375 508.147460938 111.254882812 503.400390625 106.169921875 c 2 - 400.719726562 -3.8603515625 l 2 - 365.030273438 -42.080078125 312.309570312 -64 256 -64 c 0 - 199.690429688 -64 146.969726562 -42.080078125 111.290039062 -3.8603515625 c 2 - 8.599609375 106.169921875 l 2 - 3.8525390625 111.254882812 0 121.02734375 0 127.984375 c 0 - 0 131.66015625 1.19140625 137.379882812 2.66015625 140.75 c 0 - 7.7197265625 152.440429688 19.25 160 32 160 c 2 - 96 160 l 1 - 96 368 l 2 - 96 390 114 408 136 408 c 0 - 158 408 176 390 176 368 c 2 - 176 234 l 2 - 176 228.48046875 180.48046875 224 186 224 c 2 - 206 224 l 2 - 211.51953125 224 216 228.48046875 216 234 c 2 - 216 408 l 2 - 216 430 234 448 256 448 c 0 - 278 448 296 430 296 408 c 2 - 296 234 l 2 - 296 228.48046875 300.48046875 224 306 224 c 2 - 326 224 l 2 - 331.51953125 224 336 228.48046875 336 234 c 2 - 336 368 l 2 - 336 390 354 408 376 408 c 0 - 398 408 416 390 416 368 c 2 - 416 160 l 1 - 480 160 l 2 - 492.75 160 504.280273438 152.440429688 509.33984375 140.75 c 0 -256 32 m 0 - 309.01953125 32 352 96 352 96 c 1 - 352 96 309.01953125 160 256 160 c 0 - 202.98046875 160 160 96 160 96 c 1 - 160 96 202.98046875 32 256 32 c 0 -256 128 m 0 - 273.669921875 128 288 113.669921875 288 96 c 0 - 288 78.330078125 273.669921875 64 256 64 c 0 - 238.330078125 64 224 78.330078125 224 96 c 0 - 224 113.669921875 238.330078125 128 256 128 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" h a m s a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" H A M S A -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" H a m s a -EndChar - -StartChar: haykal -Encoding: 63078 63078 850 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496.25 245.48046875 m 2 - 513.790039062 243.01953125 517.9296875 219.209960938 502.290039062 210.8203125 c 2 - 404.129882812 158.16015625 l 1 - 478.610351562 74.6201171875 l 2 - 490.469726562 61.330078125 478.620117188 40.3701171875 461.259765625 44.1298828125 c 2 - 352.690429688 67.7802734375 l 1 - 356.799804688 -44.76953125 l 2 - 357.23046875 -56.419921875 347.9296875 -63.990234375 338.389648438 -63.990234375 c 0 - 333.23046875 -63.990234375 328 -61.7802734375 324.190429688 -56.8095703125 c 2 - 256.009765625 32.08984375 l 1 - 187.830078125 -56.8095703125 l 2 - 184.01953125 -61.7802734375 178.780273438 -63.990234375 173.629882812 -63.990234375 c 0 - 164.08984375 -63.990234375 154.790039062 -56.419921875 155.219726562 -44.76953125 c 2 - 159.330078125 67.7802734375 l 1 - 50.759765625 44.1298828125 l 2 - 49.3603515625 43.8203125 48 43.6796875 46.6904296875 43.6796875 c 0 - 31.6796875 43.6796875 22.48046875 62.3603515625 33.400390625 74.6103515625 c 2 - 107.879882812 158.150390625 l 1 - 9.7197265625 210.809570312 l 2 - -5.9296875 219.209960938 -1.7900390625 243.01953125 15.75 245.48046875 c 2 - 125.75 260.91015625 l 1 - 83.9296875 365.25 l 2 - 77.26953125 381.889648438 95.5302734375 397.4296875 110.51953125 387.879882812 c 2 - 204.559570312 327.990234375 l 1 - 238.650390625 435.1796875 l 2 - 241.360351562 443.73046875 248.6796875 448 256 448 c 0 - 263.3203125 448 270.639648438 443.73046875 273.349609375 435.1796875 c 2 - 307.440429688 328 l 1 - 401.48046875 387.889648438 l 2 - 416.469726562 397.440429688 434.740234375 381.900390625 428.0703125 365.259765625 c 2 - 386.25 260.919921875 l 1 - 496.25 245.48046875 l 2 -338.509765625 136.3203125 m 1 - 302.900390625 176.25 l 1 - 349.8203125 201.419921875 l 1 - 297.25 208.799804688 l 1 - 317.240234375 258.669921875 l 1 - 272.290039062 230.049804688 l 1 - 256 281.280273438 l 1 - 239.690429688 230.049804688 l 1 - 194.740234375 258.669921875 l 1 - 214.73046875 208.799804688 l 1 - 162.16015625 201.419921875 l 1 - 209.080078125 176.25 l 1 - 173.48046875 136.3203125 l 1 - 225.370117188 147.620117188 l 1 - 223.41015625 93.830078125 l 1 - 256 136.3203125 l 1 - 288.58984375 93.830078125 l 1 - 286.620117188 147.620117188 l 1 - 338.509765625 136.3203125 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" h a y k a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" H a y k a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" H A Y K A L -EndChar - -StartChar: jedi -Encoding: 63081 63081 851 -Width: 544 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -479.990234375 96 m 1 - 519.950195312 96 l 1 - 477.3203125 1.830078125 382.309570312 -64 271.969726562 -64 c 0 - 267.709960938 -64 263.419921875 -63.91015625 259.120117188 -63.7099609375 c 0 - 155.150390625 -58.9404296875 65.26953125 5.76953125 24.01953125 96 c 1 - 63.9296875 96 l 1 - 5.330078125 154.599609375 l 1 - 2.759765625 167.48046875 0.83984375 180.580078125 0.2197265625 194.009765625 c 0 - -0.25 204.08984375 0.08984375 214.080078125 0.7197265625 224 c 1 - 47.9296875 224 l 1 - 6.5498046875 265.379882812 l 1 - 20.919921875 330.080078125 58.650390625 387.9296875 114.51953125 427.450195312 c 0 - 117.290039062 429.41015625 120.490234375 430.450195312 123.790039062 430.450195312 c 0 - 129.169921875 430.450195312 134.219726562 427.740234375 137.299804688 423.200195312 c 0 - 140.349609375 418.700195312 140.940429688 413.200195312 138.919921875 408.110351562 c 0 - 132.389648438 391.66015625 129.080078125 374.41015625 129.080078125 356.849609375 c 0 - 129.080078125 311.73046875 150.120117188 270.26953125 186.790039062 243.110351562 c 0 - 190.799804688 240.139648438 193.240234375 235.629882812 193.48046875 230.73046875 c 0 - 193.719726562 225.830078125 191.719726562 221.080078125 188 217.719726562 c 0 - 161.450195312 193.740234375 146.830078125 161.219726562 146.830078125 126.139648438 c 0 - 146.830078125 66.1103515625 189.780273438 15.8603515625 246.719726562 4.2197265625 c 1 - 249.219726562 69.48046875 l 1 - 222.059570312 51 l 2 - 219.08984375 49 214.650390625 49.2998046875 212.059570312 51.75 c 0 - 209.330078125 54.3603515625 208.75 58.4599609375 210.669921875 61.6904296875 c 2 - 230.799804688 95.4599609375 l 1 - 188.73046875 104.1796875 l 2 - 185.01953125 104.9296875 182.349609375 108.23046875 182.349609375 112.009765625 c 0 - 182.349609375 115.790039062 185.030273438 119.08984375 188.73046875 119.83984375 c 2 - 230.799804688 128.5703125 l 1 - 210.690429688 162.299804688 l 2 - 208.75 165.5703125 209.330078125 169.650390625 212.049804688 172.240234375 c 0 - 214.780273438 174.849609375 218.91015625 175.139648438 222.049804688 173.01953125 c 2 - 252.440429688 152.360351562 l 1 - 263.959960938 440.330078125 l 2 - 264.120117188 444.620117188 267.629882812 448 271.959960938 448 c 2 - 272 448 l 2 - 276.252929688 448 279.819335938 444.55078125 279.959960938 440.299804688 c 2 - 291.490234375 152.370117188 l 1 - 321.879882812 173.040039062 l 2 - 324.91015625 175.129882812 329.1796875 174.790039062 331.879882812 172.240234375 c 0 - 334.599609375 169.639648438 335.1796875 165.559570312 333.259765625 162.330078125 c 2 - 313.129882812 128.559570312 l 1 - 355.200195312 119.830078125 l 2 - 358.889648438 119.059570312 361.580078125 115.76953125 361.580078125 112 c 0 - 361.580078125 108.219726562 358.900390625 104.919921875 355.200195312 104.169921875 c 2 - 313.129882812 95.4501953125 l 1 - 333.240234375 61.7197265625 l 2 - 333.872070312 60.6689453125 334.384765625 58.8212890625 334.384765625 57.595703125 c 0 - 334.384765625 55.7021484375 333.271484375 53.10546875 331.900390625 51.7998046875 c 0 - 329.26953125 49.3095703125 324.860351562 48.9404296875 321.879882812 51 c 2 - 294.709960938 69.4697265625 l 1 - 297.209960938 4.1298828125 l 1 - 345.6796875 13.5302734375 384.780273438 52.2802734375 394.51953125 100.629882812 c 0 - 403.299804688 144.190429688 388.879882812 187.950195312 355.950195312 217.700195312 c 0 - 352.219726562 221.0703125 350.219726562 225.809570312 350.459960938 230.73046875 c 0 - 350.700195312 235.629882812 353.139648438 240.150390625 357.16015625 243.129882812 c 0 - 393.8203125 270.290039062 414.849609375 311.740234375 414.849609375 356.860351562 c 0 - 414.849609375 374.440429688 411.540039062 391.709960938 404.990234375 408.169921875 c 0 - 402.959960938 413.26953125 403.549804688 418.76953125 406.599609375 423.259765625 c 0 - 409.6796875 427.790039062 414.719726562 430.5 420.08984375 430.5 c 0 - 423.370117188 430.5 426.5703125 429.469726562 429.33984375 427.509765625 c 0 - 484.8203125 388.290039062 522.75 330.030273438 537.25 265.240234375 c 1 - 496 224 l 1 - 542.950195312 224 l 1 - 543.3203125 218.240234375 544 212.540039062 544 206.73046875 c 0 - 544 188.990234375 542.16015625 171.669921875 538.870117188 154.870117188 c 1 - 479.990234375 96 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" j e d i -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" J E D I -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" J e d i -EndChar - -StartChar: journal-whills -Encoding: 63082 63082 852 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 89.599609375 m 2 - 448 80 444.799804688 73.599609375 438.400390625 70.400390625 c 1 - 435.200195312 57.599609375 435.200195312 12.7998046875 438.400390625 -3.2001953125 c 1 - 444.799804688 -9.599609375 448 -16 448 -22.400390625 c 2 - 448 -38.400390625 l 2 - 448 -54.400390625 435.200195312 -64 422.400390625 -64 c 2 - 96 -64 l 2 - 41.599609375 -64 0 -22.400390625 0 32 c 2 - 0 352 l 2 - 0 406.400390625 41.599609375 448 96 448 c 2 - 422.400390625 448 l 2 - 438.400390625 448 448 438.400390625 448 422.400390625 c 2 - 448 89.599609375 l 2 -133.080078125 303.610351562 m 1 - 130.099609375 293.51953125 128 283.049804688 128.009765625 271.990234375 c 0 - 128.009765625 271.469726562 128.150390625 271 128.16015625 270.48046875 c 2 - 165.26953125 238.009765625 l 2 - 168.599609375 235.110351562 168.940429688 230.059570312 166.01953125 226.73046875 c 0 - 164.440429688 224.919921875 162.219726562 224 160 224 c 2 - 159.982421875 224 l 2 - 158.327148438 224 155.973632812 224.88671875 154.73046875 225.98046875 c 2 - 131.139648438 246.620117188 l 1 - 142.6796875 197.040039062 186.91015625 160 240 160 c 0 - 293.08984375 160 337.3203125 197.040039062 348.870117188 246.629882812 c 1 - 325.280273438 225.990234375 l 2 - 323.759765625 224.669921875 321.889648438 224.009765625 320.009765625 224.009765625 c 2 - 319.995117188 224.009765625 l 2 - 317.995117188 224.009765625 315.3046875 225.233398438 313.990234375 226.740234375 c 0 - 312.893554688 227.987304688 312.00390625 230.346679688 312.00390625 232.006835938 c 0 - 312.00390625 234.009765625 313.229492188 236.704101562 314.740234375 238.01953125 c 2 - 351.849609375 270.490234375 l 2 - 351.860351562 271.009765625 352 271.48046875 352 272 c 0 - 352 283.049804688 349.900390625 293.51953125 346.9296875 303.599609375 c 1 - 325.669921875 282.33984375 l 2 - 324.099609375 280.780273438 322.059570312 280 320.009765625 280 c 0 - 317.959960938 280 315.91015625 280.780273438 314.349609375 282.33984375 c 0 - 311.23046875 285.459960938 311.23046875 290.530273438 314.349609375 293.650390625 c 2 - 340.76953125 320.0703125 l 1 - 330.76953125 340.969726562 314.530273438 358.049804688 294.400390625 369.330078125 c 1 - 300.379882812 359.599609375 304 348.259765625 304 336 c 0 - 304 316.040039062 294.669921875 298.4296875 280.33984375 286.690429688 c 1 - 289.990234375 276.629882812 296 263.040039062 296 248 c 0 - 296 221.059570312 276.959960938 198.599609375 251.629882812 193.259765625 c 1 - 250.200195312 227.540039062 l 1 - 262.879882812 218.919921875 l 2 - 263.5703125 218.459960938 264.349609375 218.23046875 265.129882812 218.23046875 c 0 - 266.110351562 218.23046875 267.110351562 218.599609375 267.879882812 219.3203125 c 0 - 269.240234375 220.599609375 269.51953125 222.66015625 268.5703125 224.26953125 c 2 - 260.030273438 238.580078125 l 1 - 277.940429688 242.299804688 l 2 - 279.799804688 242.690429688 281.129882812 244.330078125 281.129882812 246.219726562 c 0 - 281.129882812 248.110351562 279.799804688 249.75 277.940429688 250.139648438 c 2 - 260.030273438 253.860351562 l 1 - 268.5703125 268.169921875 l 2 - 268.87890625 268.69140625 269.129882812 269.606445312 269.129882812 270.212890625 c 0 - 269.129882812 271.163085938 268.5703125 272.465820312 267.879882812 273.120117188 c 0 - 267.234375 273.716796875 265.997070312 274.201171875 265.118164062 274.201171875 c 0 - 264.4453125 274.201171875 263.442382812 273.900390625 262.879882812 273.530273438 c 2 - 248.6796875 263.879882812 l 1 - 244 376.169921875 l 2 - 243.91015625 378.309570312 242.139648438 380 240 380 c 0 - 237.860351562 380 236.08984375 378.309570312 236 376.169921875 c 2 - 231.379882812 265.360351562 l 1 - 219.370117188 273.51953125 l 2 - 217.809570312 274.549804688 215.73046875 274.41015625 214.370117188 273.110351562 c 0 - 213.009765625 271.830078125 212.73046875 269.76953125 213.6796875 268.16015625 c 2 - 222.219726562 253.849609375 l 1 - 204.309570312 250.129882812 l 2 - 202.450195312 249.740234375 201.120117188 248.099609375 201.120117188 246.209960938 c 0 - 201.120117188 244.3203125 202.450195312 242.6796875 204.309570312 242.290039062 c 2 - 222.219726562 238.5703125 l 1 - 213.6796875 224.259765625 l 2 - 213.37109375 223.73828125 213.120117188 222.823242188 213.120117188 222.216796875 c 0 - 213.120117188 221.266601562 213.6796875 219.963867188 214.370117188 219.309570312 c 0 - 215.139648438 218.599609375 216.120117188 218.219726562 217.120117188 218.219726562 c 0 - 217.900390625 218.219726562 218.6796875 218.459960938 219.370117188 218.91015625 c 2 - 229.740234375 225.950195312 l 1 - 228.379882812 193.240234375 l 1 - 203.040039062 198.599609375 184 221.059570312 184 248 c 0 - 184 263.040039062 190.009765625 276.629882812 199.66015625 286.690429688 c 1 - 185.330078125 298.4296875 176 316.040039062 176 336 c 0 - 176 348.259765625 179.620117188 359.599609375 185.610351562 369.33984375 c 1 - 165.48046875 358.049804688 149.240234375 340.98046875 139.240234375 320.080078125 c 1 - 165.66015625 293.66015625 l 2 - 168.780273438 290.540039062 168.780273438 285.469726562 165.66015625 282.349609375 c 0 - 164.08984375 280.790039062 162.049804688 280.009765625 160 280.009765625 c 0 - 157.950195312 280.009765625 155.900390625 280.790039062 154.33984375 282.349609375 c 2 - 133.080078125 303.610351562 l 1 -380.799804688 0 m 1 - 380.799804688 64 l 1 - 96 64 l 2 - 80 64 64 51.2001953125 64 32 c 0 - 64 12.7998046875 76.7998046875 0 96 0 c 2 - 380.799804688 0 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" j o u r n a l hyphen w h i l l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" J o u r n a l hyphen W h i l l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" J o u r n a l hyphen w h i l l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" J O U R N A L hyphen W H I L L S -EndChar - -StartChar: kaaba -Encoding: 63083 63083 853 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -554.120117188 364.490234375 m 2 - 567.190429688 360.129882812 576 347.900390625 576 334.129882812 c 2 - 576 285.120117188 l 1 - 311 364.629882812 l 2 - 295.940429688 369.129882812 280.049804688 369.129882812 265.01953125 364.629882812 c 2 - 0 285.120117188 l 1 - 0 334.129882812 l 2 - 0.0009765625 346.861328125 9.802734375 360.461914062 21.8798828125 364.490234375 c 2 - 257.650390625 443.0703125 l 2 - 265.807617188 445.790039062 279.40625 447.997070312 288.004882812 447.997070312 c 0 - 296.603515625 447.997070312 310.203125 445.790039062 318.360351562 443.0703125 c 2 - 554.120117188 364.490234375 l 2 -274.219726562 333.969726562 m 2 - 283.219726562 336.690429688 292.76953125 336.690429688 301.809570312 333.969726562 c 2 - 576.009765625 251.709960938 l 1 - 576.009765625 23.3203125 l 2 - 576.009765625 8.3203125 565.58984375 -4.669921875 550.950195312 -7.919921875 c 2 - 308.830078125 -61.7197265625 l 2 - 303.151367188 -62.982421875 293.822265625 -64.0078125 288.004882812 -64.0078125 c 0 - 282.1875 -64.0078125 272.858398438 -62.982421875 267.1796875 -61.7197265625 c 2 - 25.0595703125 -7.919921875 l 2 - 10.419921875 -4.66015625 0 8.3203125 0 23.3203125 c 2 - 0 251.700195312 l 1 - 274.219726562 333.969726562 l 2 -128 217.889648438 m 2 - 128 234.469726562 l 2 - 128 239.75 122.98046875 243.580078125 117.889648438 242.190429688 c 2 - 37.8896484375 220.370117188 l 2 - 34.41015625 219.419921875 32 216.259765625 32 212.650390625 c 2 - 32 196.0703125 l 2 - 32 190.799804688 37.01953125 186.969726562 42.1103515625 188.349609375 c 2 - 122.110351562 210.169921875 l 2 - 125.58984375 211.120117188 128 214.280273438 128 217.889648438 c 2 -272 257.169921875 m 2 - 272 273.75 l 2 - 272 279.030273438 266.98046875 282.860351562 261.889648438 281.469726562 c 2 - 165.889648438 255.290039062 l 2 - 162.41015625 254.33984375 160 251.1796875 160 247.5703125 c 2 - 160 230.990234375 l 2 - 160 225.709960938 165.01953125 221.879882812 170.110351562 223.26953125 c 2 - 266.110351562 249.450195312 l 2 - 269.58984375 250.400390625 272 253.559570312 272 257.169921875 c 2 -448 234.469726562 m 2 - 448 217.889648438 l 1 - 448 217.884765625 l 2 - 448 214.513671875 450.638671875 211.057617188 453.889648438 210.169921875 c 2 - 533.889648438 188.349609375 l 2 - 538.98046875 186.959960938 544 190.790039062 544 196.0703125 c 2 - 544 212.650390625 l 2 - 544 216.259765625 541.58984375 219.419921875 538.110351562 220.370117188 c 2 - 458.110351562 242.190429688 l 2 - 453.01953125 243.580078125 448 239.75 448 234.469726562 c 2 -304 273.740234375 m 2 - 304 257.16015625 l 1 - 304 257.154296875 l 2 - 304 253.784179688 306.638671875 250.328125 309.889648438 249.440429688 c 2 - 405.889648438 223.259765625 l 2 - 410.98046875 221.870117188 416 225.700195312 416 230.98046875 c 2 - 416 247.559570312 l 2 - 416 251.169921875 413.58984375 254.330078125 410.110351562 255.280273438 c 2 - 314.110351562 281.459960938 l 2 - 309.01953125 282.849609375 304 279.01953125 304 273.740234375 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" k a a b a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" K A A B A -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" K a a b a -EndChar - -StartChar: khanda -Encoding: 63085 63085 854 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -415.809570312 382 m 0 - 489.51953125 341.759765625 527.58984375 258.150390625 505.969726562 174.490234375 c 0 - 498.719726562 146.400390625 483.58984375 120.919921875 464.719726562 98.900390625 c 2 - 412.209960938 37.58984375 l 2 - 407.33984375 31.91015625 399.169921875 30.3603515625 392.559570312 33.8798828125 c 2 - 313.209960938 76.1103515625 l 1 - 284 55.76953125 l 1 - 331.080078125 22.990234375 l 2 - 332.75 23.3603515625 334.309570312 24 336.08984375 24 c 0 - 349.33984375 24 360.080078125 13.259765625 360.080078125 0 c 0 - 360.080078125 -13.25 349.33984375 -24 336.08984375 -24 c 0 - 324 -24 314.41015625 -14.8896484375 312.759765625 -3.240234375 c 1 - 271.849609375 25.240234375 l 1 - 271.849609375 -4.91015625 l 1 - 281.23046875 -10.490234375 287.83984375 -20.2998046875 287.83984375 -32.009765625 c 0 - 287.83984375 -49.6796875 273.51953125 -64.009765625 255.860351562 -64.009765625 c 0 - 238.200195312 -64.009765625 223.879882812 -49.6796875 223.879882812 -32.009765625 c 0 - 223.879882812 -20.2900390625 230.48046875 -10.48046875 239.870117188 -4.91015625 c 1 - 239.870117188 25.0400390625 l 1 - 199.240234375 -3.240234375 l 1 - 197.599609375 -14.8896484375 188.009765625 -24 175.91015625 -24 c 0 - 162.66015625 -24 151.919921875 -13.25 151.919921875 0 c 0 - 151.919921875 13.259765625 162.66015625 24 175.91015625 24 c 0 - 177.690429688 24 179.25 23.3603515625 180.919921875 22.990234375 c 2 - 228 55.76953125 l 1 - 198.790039062 76.099609375 l 1 - 119.440429688 33.8701171875 l 2 - 112.830078125 30.349609375 104.66015625 31.900390625 99.7900390625 37.58984375 c 2 - 43.8203125 102.950195312 l 2 - 31.25 117.629882812 20.4296875 134.01953125 13.3603515625 152.009765625 c 0 - -22.2998046875 242.700195312 16.3203125 338.400390625 94.849609375 381.25 c 0 - 101.190429688 384.75 109.870117188 383.889648438 114.870117188 378.549804688 c 0 - 119.860351562 373.240234375 121.330078125 365.629882812 117.459960938 359.469726562 c 0 - 100.969726562 333.309570312 92.259765625 303.080078125 92.259765625 272 c 0 - 92.4404296875 218.809570312 119.01953125 169.379882812 163.290039062 139.8203125 c 2 - 239.879882812 86.490234375 l 1 - 239.879882812 106.389648438 l 1 - 195.830078125 142.48046875 l 2 - 191.919921875 146.690429688 190.830078125 152.580078125 193.01953125 157.759765625 c 2 - 200.870117188 175 l 1 - 167.01953125 194.259765625 143.9296875 230.240234375 143.9296875 271.990234375 c 0 - 143.9296875 312.780273438 165.950195312 348.129882812 198.51953125 367.709960938 c 1 - 193.299804688 379.150390625 l 2 - 190.969726562 384.6796875 192.370117188 390.98046875 196.870117188 395.190429688 c 2 - 255.860351562 448 l 1 - 314.849609375 395.1796875 l 2 - 319.349609375 390.969726562 320.759765625 384.669921875 318.419921875 379.139648438 c 2 - 313.200195312 367.700195312 l 1 - 345.76953125 348.120117188 367.790039062 312.780273438 367.790039062 271.990234375 c 0 - 367.790039062 230.25 344.690429688 194.259765625 310.849609375 175 c 1 - 318.700195312 157.759765625 l 2 - 320.889648438 152.5703125 319.809570312 146.6796875 315.889648438 142.48046875 c 2 - 271.83984375 106.389648438 l 1 - 271.83984375 86.2900390625 l 1 - 348.469726562 139.639648438 l 2 - 392.969726562 169.360351562 419.549804688 218.799804688 419.740234375 272.049804688 c 0 - 419.740234375 303.0703125 411.030273438 333.299804688 394.540039062 359.459960938 c 0 - 393.176757812 361.6171875 392.0703125 365.439453125 392.0703125 367.9921875 c 0 - 392.0703125 371.506835938 394.032226562 376.428710938 396.450195312 378.98046875 c 0 - 401.440429688 384.330078125 409.440429688 385.5 415.809570312 382 c 0 -319.8203125 272 m 0 - 319.8203125 293.3203125 309.240234375 312.120117188 293.169921875 323.76953125 c 1 - 285.33984375 306.58984375 l 2 - 276.58984375 282.0703125 276.58984375 255.549804688 285.33984375 231.030273438 c 2 - 290.990234375 218.620117188 l 1 - 308.330078125 230.080078125 319.8203125 249.700195312 319.8203125 272 c 0 -191.889648438 272 m 0 - 191.889648438 249.700195312 203.389648438 230.0703125 220.73046875 218.610351562 c 1 - 226.379882812 231.01953125 l 2 - 235.129882812 255.549804688 235.129882812 282.059570312 226.379882812 306.580078125 c 2 - 218.549804688 323.759765625 l 1 - 202.469726562 312.120117188 191.889648438 293.3203125 191.889648438 272 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" k h a n d a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" K H A N D A -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" K h a n d a -EndChar - -StartChar: landmark -Encoding: 63087 63087 855 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -501.620117188 355.889648438 m 2 - 507.860351562 353.549804688 512 347.580078125 512 340.91015625 c 2 - 512 304 l 2 - 512 295.16015625 504.83984375 288 496 288 c 2 - 16 288 l 2 - 7.16015625 288 0 295.16015625 0 304 c 2 - 0 340.91015625 l 2 - 0 347.029296875 4.650390625 353.740234375 10.3798828125 355.889648438 c 2 - 244.76953125 445.959960938 l 2 - 247.768554688 447.0859375 252.801757812 448 256.004882812 448 c 0 - 259.208007812 448 264.241210938 447.0859375 267.240234375 445.959960938 c 2 - 501.620117188 355.889648438 l 2 -64 256 m 1 - 128 256 l 1 - 128 96 l 1 - 224 96 l 1 - 224 256 l 1 - 288 256 l 1 - 288 96 l 1 - 384 96 l 1 - 384 256 l 1 - 448 256 l 1 - 448 96 l 1 - 464 96 l 2 - 472.83984375 96 480 88.83984375 480 80 c 2 - 480 32 l 1 - 32 32 l 1 - 32 80 l 2 - 32 88.83984375 39.16015625 96 48 96 c 2 - 64 96 l 1 - 64 256 l 1 -496 0 m 2 - 504.83984375 0 512 -7.16015625 512 -16 c 2 - 512 -48 l 2 - 512 -56.83984375 504.83984375 -64 496 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 496 0 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" l a n d m a r k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" L A N D M A R K -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" L a n d m a r k -EndChar - -StartChar: mail-bulk -Encoding: 63092 63092 856 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -160 0 m 0 - 185.599609375 0 211.200195312 22.400390625 224 32 c 0 - 288 76.7998046875 307.200195312 92.7998046875 320 102.400390625 c 1 - 320 -32 l 2 - 320 -49.669921875 305.669921875 -64 288 -64 c 2 - 32 -64 l 2 - 14.330078125 -64 0 -49.669921875 0 -32 c 2 - 0 102.400390625 l 1 - 12.7998046875 92.7998046875 32 76.7998046875 96 32 c 0 - 108.799804688 22.400390625 134.400390625 0 160 0 c 0 -288 192 m 2 - 305.669921875 192 320 177.669921875 320 160 c 2 - 320 140.799804688 l 1 - 294.400390625 121.599609375 297.599609375 121.599609375 204.799804688 54.400390625 c 0 - 195.200195312 51.2001953125 176 32 160 32 c 0 - 144 32 124.799804688 51.2001953125 115.200195312 57.599609375 c 0 - 22.400390625 124.799804688 25.599609375 124.799804688 0 144 c 1 - 0 160 l 2 - 0 177.669921875 14.330078125 192 32 192 c 2 - 288 192 l 2 -544 288 m 2 - 561.669921875 288 576 273.669921875 576 256 c 2 - 576 64 l 2 - 576 46.330078125 561.669921875 32 544 32 c 2 - 352 32 l 1 - 352 166.400390625 l 1 - 351.709960938 166.1796875 l 1 - 348.58984375 198.580078125 321.209960938 224 288 224 c 2 - 192 224 l 1 - 192 256 l 2 - 192 273.669921875 206.330078125 288 224 288 c 2 - 544 288 l 2 -512 160 m 1 - 512 224 l 1 - 448 224 l 1 - 448 160 l 1 - 512 160 l 1 -160 256 m 2 - 160 224 l 1 - 64 224 l 1 - 64 416 l 2 - 64 433.669921875 78.330078125 448 96 448 c 2 - 416 448 l 2 - 433.669921875 448 448 433.669921875 448 416 c 2 - 448 320 l 1 - 224 320 l 2 - 188.709960938 320 160 291.290039062 160 256 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" m a i l hyphen b u l k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" M a i l hyphen B u l k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" M a i l hyphen b u l k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" M A I L hyphen B U L K -EndChar - -StartChar: menorah -Encoding: 63094 63094 857 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -144 320 m 2 - 152.83984375 320 160 312.83984375 160 304 c 2 - 160 160 l 1 - 96 160 l 1 - 96 304 l 2 - 96 312.83984375 103.16015625 320 112 320 c 2 - 144 320 l 2 -240 320 m 2 - 248.83984375 320 256 312.83984375 256 304 c 2 - 256 160 l 1 - 192 160 l 1 - 192 304 l 2 - 192 312.83984375 199.16015625 320 208 320 c 2 - 240 320 l 2 -432 320 m 2 - 440.83984375 320 448 312.83984375 448 304 c 2 - 448 160 l 1 - 384 160 l 1 - 384 304 l 2 - 384 312.83984375 391.16015625 320 400 320 c 2 - 432 320 l 2 -528 320 m 2 - 536.83984375 320 544 312.83984375 544 304 c 2 - 544 160 l 1 - 480 160 l 1 - 480 304 l 2 - 480 312.83984375 487.16015625 320 496 320 c 2 - 528 320 l 2 -608 352 m 0 - 590.330078125 352 576 366.330078125 576 384 c 0 - 576 401.669921875 608 448 608 448 c 1 - 608 448 640 401.669921875 640 384 c 0 - 640 366.330078125 625.669921875 352 608 352 c 0 -512 352 m 0 - 494.330078125 352 480 366.330078125 480 384 c 0 - 480 401.669921875 512 448 512 448 c 1 - 512 448 544 401.669921875 544 384 c 0 - 544 366.330078125 529.669921875 352 512 352 c 0 -416 352 m 0 - 398.330078125 352 384 366.330078125 384 384 c 0 - 384 401.669921875 416 448 416 448 c 1 - 416 448 448 401.669921875 448 384 c 0 - 448 366.330078125 433.669921875 352 416 352 c 0 -320 352 m 0 - 302.330078125 352 288 366.330078125 288 384 c 0 - 288 401.669921875 320 448 320 448 c 1 - 320 448 352 401.669921875 352 384 c 0 - 352 366.330078125 337.669921875 352 320 352 c 0 -224 352 m 0 - 206.330078125 352 192 366.330078125 192 384 c 0 - 192 401.669921875 224 448 224 448 c 1 - 224 448 256 401.669921875 256 384 c 0 - 256 366.330078125 241.669921875 352 224 352 c 0 -128 352 m 0 - 110.330078125 352 96 366.330078125 96 384 c 0 - 96 401.669921875 128 448 128 448 c 1 - 128 448 160 401.669921875 160 384 c 0 - 160 366.330078125 145.669921875 352 128 352 c 0 -32 352 m 0 - 14.330078125 352 0 366.330078125 0 384 c 0 - 0 401.669921875 32 448 32 448 c 1 - 32 448 64 401.669921875 64 384 c 0 - 64 366.330078125 49.669921875 352 32 352 c 0 -576 160 m 2 - 576 304 l 2 - 576 312.83984375 583.16015625 320 592 320 c 2 - 624 320 l 2 - 632.83984375 320 640 312.83984375 640 304 c 2 - 640 160 l 2 - 640 106.98046875 597.01953125 64 544 64 c 2 - 352 64 l 1 - 352 0 l 1 - 528 0 l 2 - 536.83984375 0 544 -7.16015625 544 -16 c 2 - 544 -48 l 2 - 544 -56.83984375 536.83984375 -64 528 -64 c 2 - 112 -64 l 2 - 103.16015625 -64 96 -56.83984375 96 -48 c 2 - 96 -16 l 2 - 96 -7.16015625 103.16015625 0 112 0 c 2 - 288 0 l 1 - 288 64 l 1 - 96 64 l 2 - 42.98046875 64 0 106.98046875 0 160 c 2 - 0 304 l 2 - 0 312.83984375 7.16015625 320 16 320 c 2 - 48 320 l 2 - 56.83984375 320 64 312.83984375 64 304 c 2 - 64 160 l 2 - 64 142.330078125 78.330078125 128 96 128 c 2 - 288 128 l 1 - 288 304 l 2 - 288 312.83984375 295.16015625 320 304 320 c 2 - 336 320 l 2 - 344.83984375 320 352 312.83984375 352 304 c 2 - 352 128 l 1 - 544 128 l 2 - 561.669921875 128 576 142.330078125 576 160 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" m e n o r a h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" M e n o r a h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" M E N O R A H -EndChar - -StartChar: mosque -Encoding: 63096 63096 858 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 -32 m 2 - 0 288 l 1 - 128 288 l 1 - 128 -32 l 2 - 128 -49.669921875 113.669921875 -64 96 -64 c 2 - 32 -64 l 2 - 14.330078125 -64 0 -49.669921875 0 -32 c 2 -579.16015625 160 m 1 - 220.83984375 160 l 1 - 202.98046875 177.389648438 192 197.33984375 192 218.91015625 c 0 - 192 271.76953125 233.790039062 312.700195312 279.919921875 341.809570312 c 0 - 321.870117188 368.26953125 360.549804688 399.580078125 391.879882812 438.030273438 c 2 - 400 448 l 1 - 408.120117188 438.030273438 l 2 - 439.450195312 399.580078125 478.139648438 368.280273438 520.080078125 341.809570312 c 0 - 566.209960938 312.700195312 608 271.76953125 608 218.91015625 c 0 - 608 197.33984375 597.01953125 177.389648438 579.16015625 160 c 1 -608 128 m 2 - 625.669921875 128 640 113.669921875 640 96 c 2 - 640 -32 l 2 - 640 -49.669921875 625.669921875 -64 608 -64 c 2 - 576 -64 l 1 - 576 0 l 2 - 576 17.669921875 561.669921875 32 544 32 c 0 - 526.330078125 32 512 17.669921875 512 0 c 2 - 512 -64 l 1 - 448 -64 l 1 - 448 8 l 2 - 448 56 400 80 400 80 c 1 - 400 80 352 56 352 8 c 2 - 352 -64 l 1 - 288 -64 l 1 - 288 0 l 2 - 288 17.669921875 273.669921875 32 256 32 c 0 - 238.330078125 32 224 17.669921875 224 0 c 2 - 224 -64 l 1 - 192 -64 l 2 - 174.330078125 -64 160 -49.669921875 160 -32 c 2 - 160 96 l 2 - 160 113.669921875 174.330078125 128 192 128 c 2 - 608 128 l 2 -64 448 m 1 - 64 448 128 416 128 352 c 2 - 128 320 l 1 - 0 320 l 1 - 0 352 l 2 - 0 416 64 448 64 448 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" m o s q u e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" M o s q u e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" M O S Q U E -EndChar - -StartChar: om -Encoding: 63097 63097 859 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -360.599609375 387.059570312 m 2 - 339.01953125 408.620117188 l 2 - 337.331054688 410.306640625 335.959960938 413.61328125 335.959960938 416 c 0 - 335.959960938 418.38671875 337.331054688 421.693359375 339.01953125 423.379882812 c 2 - 360.58984375 444.940429688 l 2 - 364.669921875 449.009765625 371.26953125 449.009765625 375.349609375 444.940429688 c 2 - 396.9296875 423.379882812 l 2 - 398.619140625 421.693359375 399.990234375 418.38671875 399.990234375 416 c 0 - 399.990234375 413.61328125 398.619140625 410.306640625 396.9296875 408.620117188 c 2 - 375.360351562 387.059570312 l 2 - 373.672851562 385.37109375 370.3671875 384 367.98046875 384 c 0 - 365.592773438 384 362.287109375 385.37109375 360.599609375 387.059570312 c 2 -412.110351562 256 m 0 - 467.200195312 256 512 211.200195312 512 156.120117188 c 2 - 512 56 l 2 - 512 7.4697265625 464.51953125 -32 415.98046875 -32 c 0 - 319.959960938 -32 319.959960938 32 319.959960938 32 c 1 - 319.959960938 69.8701171875 l 2 - 319.959960938 77.4296875 329.389648438 80.759765625 334.16015625 74.8896484375 c 0 - 349.309570312 56.240234375 376.580078125 32 415.98046875 32 c 0 - 429.219726562 32 447.990234375 42.76953125 447.990234375 56 c 2 - 447.990234375 156.120117188 l 2 - 447.990234375 175.91015625 431.889648438 192 412.110351562 192 c 0 - 402.509765625 192 393.509765625 188.26953125 386.73046875 181.5 c 2 - 362.48046875 157.25 l 2 - 343.610351562 138.389648438 318.530273438 128 291.83984375 128 c 2 - 270.150390625 128 l 1 - 281.1796875 109.099609375 287.959960938 87.419921875 287.959960938 64 c 0 - 287.959960938 -6.580078125 230.530273438 -64 159.940429688 -64 c 0 - 41.1298828125 -64 -0.08984375 32 0 86.8095703125 c 0 - 0.01953125 95.6103515625 10.259765625 99.580078125 14.7900390625 92.0302734375 c 0 - 37.58984375 54.01953125 63.919921875 0 159.940429688 0 c 0 - 195.240234375 0 223.950195312 28.7001953125 223.950195312 64 c 0 - 223.950195312 99.2998046875 195.240234375 128 159.940429688 128 c 2 - 126.91015625 128 l 2 - 121.33984375 128.450195312 116.26953125 131.490234375 113.740234375 136.549804688 c 2 - 97.650390625 168.719726562 l 2 - 92.2998046875 179.419921875 100.080078125 192 112.040039062 192 c 2 - 143.940429688 192 l 2 - 170.41015625 192 191.950195312 213.530273438 191.950195312 240 c 0 - 191.950195312 266.469726562 170.41015625 288 143.940429688 288 c 0 - 132.690429688 288 122.120117188 284.190429688 113.669921875 277.290039062 c 0 - 108.129882812 272.759765625 100.190429688 272.780273438 94.4697265625 277.080078125 c 2 - 68.3203125 296.709960938 l 2 - 60.23046875 302.790039062 59.83984375 314.6796875 67.2001953125 321.639648438 c 0 - 92.3095703125 345.379882812 127.059570312 356.349609375 163.209960938 350.419921875 c 0 - 206.370117188 343.33984375 242.629882812 309.780273438 252.73046875 267.23046875 c 0 - 259.169921875 240.110351562 255.540039062 214.099609375 245 192 c 1 - 291.83984375 192 l 2 - 301.440429688 192 310.440429688 195.73046875 317.219726562 202.5 c 2 - 341.469726562 226.75 l 2 - 360.33984375 245.610351562 385.419921875 256 412.110351562 256 c 0 -454.290039062 380.73046875 m 0 - 464.849609375 388.690429688 479.990234375 381.219726562 479.990234375 368 c 2 - 479.990234375 332.48046875 l 2 - 479.990234375 330.120117188 479.48046875 327.76953125 478.459960938 325.650390625 c 0 - 475.490234375 319.349609375 456.629882812 287.990234375 376.709960938 287.990234375 c 0 - 298.280273438 287.990234375 259.51953125 357.379882812 257.91015625 360.330078125 c 0 - 254.299804688 366.959960938 255.830078125 375.209960938 261.5703125 380.129882812 c 0 - 267.26953125 385.059570312 275.690429688 385.299804688 281.709960938 380.6796875 c 0 - 285.240234375 377.98046875 368.740234375 315.610351562 454.290039062 380.73046875 c 0 -EndSplineSet -Validated: 524325 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" o m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" O m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 62" O M -EndChar - -StartChar: pastafarianism -Encoding: 63099 63099 860 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624.540039062 100.330078125 m 0 - 636.940429688 95.6103515625 643.139648438 81.75 638.4296875 69.349609375 c 0 - 633.73046875 56.9404296875 619.849609375 50.7197265625 607.459960938 55.4697265625 c 0 - 599.349609375 58.5595703125 593.120117188 55.66015625 576.0703125 44.1103515625 c 0 - 562.51953125 34.9599609375 545.240234375 23.26953125 523.650390625 23.26953125 c 0 - 516.48046875 23.26953125 508.8203125 24.5498046875 500.6796875 27.66015625 c 0 - 468.01953125 40.099609375 460.690429688 68.990234375 455.349609375 90.099609375 c 0 - 453.139648438 98.8203125 451.360351562 104.58984375 449.400390625 108.969726562 c 1 - 432.780273438 95.3701171875 412.469726562 83.099609375 387.780273438 74.8095703125 c 1 - 397.790039062 37.8095703125 420.059570312 -16 448 -16 c 0 - 461.25 -16 472 -26.75 472 -40 c 0 - 472 -53.25 461.25 -64 448 -64 c 0 - 381.259765625 -64 350.950195312 24.6298828125 340.580078125 65.1396484375 c 1 - 333.889648438 64.5400390625 327.16015625 64 320 64 c 0 - 312.83984375 64 306.110351562 64.5400390625 299.419921875 65.1396484375 c 1 - 289.049804688 24.6298828125 258.740234375 -64 192 -64 c 0 - 178.75 -64 168 -53.25 168 -40 c 0 - 168 -26.75 178.75 -16 192 -16 c 0 - 220.080078125 -16 242.299804688 37.7998046875 252.259765625 74.7998046875 c 1 - 227.5703125 83.08984375 207.240234375 95.3603515625 190.620117188 108.969726562 c 1 - 188.66015625 104.58984375 186.879882812 98.8203125 184.669921875 90.099609375 c 0 - 179.3203125 68.990234375 172 40.099609375 139.33984375 27.66015625 c 0 - 131.200195312 24.5498046875 123.540039062 23.26953125 116.370117188 23.26953125 c 0 - 94.7802734375 23.25 77.5 34.9501953125 63.9501953125 44.1103515625 c 0 - 46.900390625 55.66015625 40.7197265625 58.5595703125 32.5595703125 55.4697265625 c 0 - 20.2001953125 50.740234375 6.3095703125 56.9404296875 1.58984375 69.349609375 c 0 - -3.1298828125 81.740234375 3.0703125 95.599609375 15.4599609375 100.3203125 c 0 - 48.1103515625 112.790039062 72.7998046875 96.0703125 90.830078125 83.8701171875 c 0 - 107.91015625 72.33984375 114.129882812 69.4501953125 122.240234375 72.509765625 c 0 - 130.360351562 75.6103515625 133.0703125 81.8896484375 138.129882812 101.889648438 c 0 - 141.459960938 115.040039062 145.5703125 131.209960938 156.080078125 144.540039062 c 0 - 153.83984375 147.450195312 151.650390625 150.3203125 149.700195312 153.110351562 c 1 - 139.530273438 143.549804688 126.290039062 136 108 136 c 0 - 74.0498046875 136 57.1298828125 161.780273438 45.9404296875 178.830078125 c 0 - 35.33984375 194.969726562 30.9404296875 200 24 200 c 0 - 10.75 200 0 210.75 0 224 c 0 - 0 237.25 10.75 248 24 248 c 0 - 57.9599609375 248 74.8798828125 222.219726562 86.0595703125 205.169921875 c 0 - 96.66015625 189.030273438 101.059570312 184 108 184 c 0 - 125.150390625 184 145.6796875 245.559570312 205.26953125 285.900390625 c 1 - 188.01953125 320.400390625 l 1 - 154.559570312 322.5 128 350.01953125 128 384 c 0 - 128 419.349609375 156.650390625 448 192 448 c 0 - 227.349609375 448 256 419.349609375 256 384 c 0 - 256 370.98046875 252.059570312 358.900390625 245.400390625 348.790039062 c 1 - 263.549804688 312.490234375 l 1 - 280.51953125 317.08984375 299.150390625 320 320.009765625 320 c 0 - 340.870117188 320 359.490234375 317.08984375 376.469726562 312.490234375 c 1 - 394.620117188 348.790039062 l 1 - 387.940429688 358.900390625 384 370.98046875 384 384 c 0 - 384 419.349609375 412.650390625 448 448 448 c 0 - 483.349609375 448 512 419.349609375 512 384 c 0 - 512 350.01953125 485.4296875 322.5 451.990234375 320.41015625 c 1 - 434.740234375 285.91015625 l 1 - 494.51953125 245.4296875 514.690429688 184 532 184 c 0 - 538.940429688 184 543.33984375 189.030273438 553.940429688 205.169921875 c 0 - 565.129882812 222.219726562 582.049804688 248 616 248 c 0 - 629.25 248 640 237.25 640 224 c 0 - 640 210.75 629.25 200 616 200 c 0 - 609.059570312 200 604.650390625 194.969726562 594.059570312 178.830078125 c 0 - 582.870117188 161.780273438 565.950195312 136 532 136 c 0 - 513.709960938 136 500.469726562 143.549804688 490.299804688 153.120117188 c 1 - 488.349609375 150.33984375 486.16015625 147.459960938 483.919921875 144.549804688 c 0 - 494.4296875 131.219726562 498.540039062 115.049804688 501.870117188 101.900390625 c 0 - 506.9296875 81.900390625 509.639648438 75.6103515625 517.759765625 72.51953125 c 0 - 525.919921875 69.4599609375 532.110351562 72.349609375 549.169921875 83.8798828125 c 0 - 567.1796875 96.080078125 591.83984375 112.849609375 624.540039062 100.330078125 c 0 -448 400 m 0 - 439.1796875 400 432 392.8203125 432 384 c 0 - 432 375.1796875 439.1796875 368 448 368 c 0 - 456.8203125 368 464 375.1796875 464 384 c 0 - 464 392.8203125 456.8203125 400 448 400 c 0 -192 400 m 0 - 183.1796875 400 176 392.8203125 176 384 c 0 - 176 375.1796875 183.1796875 368 192 368 c 0 - 200.8203125 368 208 375.1796875 208 384 c 0 - 208 392.8203125 200.8203125 400 192 400 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" p a s t a f a r i a n i s m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" P a s t a f a r i a n i s m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" P A S T A F A R I A N I S M -EndChar - -StartChar: peace -Encoding: 63100 63100 861 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 384.969726562 440 496 328.969726562 496 192 c 0 - 496 55.0302734375 384.969726562 -56 248 -56 c 0 - 111.030273438 -56 0 55.0302734375 0 192 c 0 - 0 328.969726562 111.030273438 440 248 440 c 0 -432 192 m 0 - 432 282.530273438 366.23046875 357.8203125 280 373.030273438 c 1 - 280 207.370117188 l 1 - 409.4296875 103.830078125 l 1 - 423.799804688 130.030273438 432 160.0703125 432 192 c 0 -216 10.9697265625 m 1 - 216 125.4296875 l 1 - 126.709960938 53.990234375 l 1 - 151.509765625 32.169921875 182.139648438 16.9404296875 216 10.9697265625 c 1 -280 125.4296875 m 1 - 280 10.98046875 l 1 - 313.860351562 16.9501953125 344.490234375 32.1796875 369.290039062 54 c 1 - 280 125.4296875 l 1 -216 373.030273438 m 1 - 129.76953125 357.8203125 64 282.530273438 64 192 c 0 - 64 160.0703125 72.2001953125 130.030273438 86.5703125 103.830078125 c 1 - 216 207.370117188 l 1 - 216 373.030273438 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" p e a c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" P e a c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" P E A C E -EndChar - -StartChar: place-of-worship -Encoding: 63103 63103 862 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -620.610351562 81.4501953125 m 2 - 631.313476562 76.861328125 640 63.685546875 640 52.0400390625 c 2 - 640 -48 l 2 - 640 -56.83984375 632.83984375 -64 624 -64 c 2 - 512 -64 l 1 - 512 128 l 1 - 620.610351562 81.4501953125 l 2 -0 52.0400390625 m 2 - 0 63.685546875 8.6865234375 76.861328125 19.3896484375 81.4501953125 c 2 - 128 128 l 1 - 128 -64 l 1 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 52.0400390625 l 2 -464.459960938 201.3203125 m 2 - 474.099609375 195.540039062 480 185.120117188 480 173.879882812 c 2 - 480 -64 l 1 - 384 -64 l 1 - 384 32 l 2 - 384 67.349609375 355.33984375 96 320 96 c 0 - 284.66015625 96 256 67.349609375 256 32 c 2 - 256 -64 l 1 - 160 -64 l 1 - 160 173.879882812 l 2 - 160 183.8828125 166.961914062 196.17578125 175.540039062 201.3203125 c 2 - 224 230.400390625 l 1 - 224 345.370117188 l 2 - 224 353.860351562 227.379882812 362 233.379882812 368 c 2 - 308.690429688 443.309570312 l 2 - 314.9296875 449.559570312 325.059570312 449.559570312 331.309570312 443.309570312 c 2 - 406.620117188 368 l 2 - 412.629882812 361.990234375 416 353.860351562 416 345.370117188 c 2 - 416 230.400390625 l 1 - 464.459960938 201.3203125 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" p l a c e hyphen o f hyphen w o r s h i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" P l a c e hyphen O f hyphen W o r s h i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" P l a c e hyphen o f hyphen w o r s h i p -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" P L A C E hyphen O F hyphen W O R S H I P -EndChar - -StartChar: poll -Encoding: 63105 63105 863 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.5 416 448 394.5 448 368 c 2 - 448 16 l 2 - 448 -10.5 426.5 -32 400 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 400 416 l 2 -160 80 m 2 - 160 208 l 2 - 160 216.83984375 152.83984375 224 144 224 c 2 - 112 224 l 2 - 103.16015625 224 96 216.83984375 96 208 c 2 - 96 80 l 2 - 96 71.16015625 103.16015625 64 112 64 c 2 - 144 64 l 2 - 152.83984375 64 160 71.16015625 160 80 c 2 -256 80 m 2 - 256 304 l 2 - 256 312.83984375 248.83984375 320 240 320 c 2 - 208 320 l 2 - 199.16015625 320 192 312.83984375 192 304 c 2 - 192 80 l 2 - 192 71.16015625 199.16015625 64 208 64 c 2 - 240 64 l 2 - 248.83984375 64 256 71.16015625 256 80 c 2 -352 80 m 2 - 352 144 l 2 - 352 152.83984375 344.83984375 160 336 160 c 2 - 304 160 l 2 - 295.16015625 160 288 152.83984375 288 144 c 2 - 288 80 l 2 - 288 71.16015625 295.16015625 64 304 64 c 2 - 336 64 l 2 - 344.83984375 64 352 71.16015625 352 80 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" p o l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" P o l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" P O L L -EndChar - -StartChar: poll-h -Encoding: 63106 63106 864 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 16 m 2 - 448 -10.5 426.5 -32 400 -32 c 2 - 48 -32 l 2 - 21.5 -32 0 -10.5 0 16 c 2 - 0 368 l 2 - 0 394.5 21.5 416 48 416 c 2 - 400 416 l 2 - 426.5 416 448 394.5 448 368 c 2 - 448 16 l 2 -112 256 m 2 - 240 256 l 2 - 248.83984375 256 256 263.16015625 256 272 c 2 - 256 304 l 2 - 256 312.83984375 248.83984375 320 240 320 c 2 - 112 320 l 2 - 103.16015625 320 96 312.83984375 96 304 c 2 - 96 272 l 2 - 96 263.16015625 103.16015625 256 112 256 c 2 -112 160 m 2 - 336 160 l 2 - 344.83984375 160 352 167.16015625 352 176 c 2 - 352 208 l 2 - 352 216.83984375 344.83984375 224 336 224 c 2 - 112 224 l 2 - 103.16015625 224 96 216.83984375 96 208 c 2 - 96 176 l 2 - 96 167.16015625 103.16015625 160 112 160 c 2 -112 64 m 2 - 176 64 l 2 - 184.83984375 64 192 71.16015625 192 80 c 2 - 192 112 l 2 - 192 120.83984375 184.83984375 128 176 128 c 2 - 112 128 l 2 - 103.16015625 128 96 120.83984375 96 112 c 2 - 96 80 l 2 - 96 71.16015625 103.16015625 64 112 64 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" p o l l hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" P o l l hyphen H -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" P o l l hyphen h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" P O L L hyphen H -EndChar - -StartChar: pray -Encoding: 63107 63107 865 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 320 m 0 - 220.650390625 320 192 348.650390625 192 384 c 0 - 192 419.349609375 220.650390625 448 256 448 c 0 - 291.349609375 448 320 419.349609375 320 384 c 0 - 320 348.650390625 291.349609375 320 256 320 c 0 -225.370117188 150.25 m 2 - 201.219726562 179.009765625 l 1 - 166.419921875 114.139648438 l 1 - 276.280273438 4.2802734375 l 2 - 301.76953125 -21.2099609375 282.080078125 -64 248 -64 c 2 - 40 -64 l 2 - 17.91015625 -64 0 -46.08984375 0 -24 c 0 - 0 -1.91015625 17.91015625 16 40 16 c 2 - 131.559570312 16 l 1 - 86.75 50.8896484375 l 1 - 43.8701171875 78.26953125 29.16015625 131 52.5595703125 174.639648438 c 2 - 101.9296875 266.669921875 l 2 - 113.049804688 287.3203125 134.110351562 301.110351562 158.299804688 303.58984375 c 0 - 183.080078125 306.1796875 206.860351562 296.650390625 222.299804688 278.259765625 c 2 - 261.209960938 231.950195312 l 1 - 318.650390625 278.950195312 l 2 - 335.76953125 292.919921875 360.990234375 290.440429688 374.959960938 273.330078125 c 0 - 388.9296875 256.240234375 386.4296875 231.030273438 369.33984375 217.049804688 c 2 - 281.33984375 145.030273438 l 2 - 264.370117188 131.16015625 239.4296875 133.530273438 225.370117188 150.25 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" p r a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" P r a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" P R A Y -EndChar - -StartChar: praying-hands -Encoding: 63108 63108 866 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -272 256.08984375 m 0 - 289.599609375 256.08984375 304 241.690429688 304 224.08984375 c 2 - 304 96.08984375 l 2 - 304 44.2001953125 269.16015625 -1.990234375 219.25 -16.259765625 c 2 - 40.0595703125 -62.8798828125 l 2 - 37.41015625 -63.5703125 34.6904296875 -63.91015625 32 -63.91015625 c 0 - 8.51953125 -63.91015625 0 -42.73046875 0 -31.91015625 c 2 - 0 64.08984375 l 1 - 0 64.1015625 l 2 - 0 76.830078125 9.8017578125 90.421875 21.8798828125 94.4404296875 c 2 - 112 124.48046875 l 1 - 112 204.709960938 l 2 - 112 223.690429688 117.559570312 242.099609375 128.120117188 257.940429688 c 2 - 245.379882812 433.83984375 l 2 - 245.549804688 434.110351562 245.969726562 434.08984375 246.169921875 434.3203125 c 0 - 255.75 447.830078125 274.01953125 452.200195312 288.469726562 443.530273438 c 0 - 303.629882812 434.4296875 308.530273438 414.780273438 299.440429688 399.620117188 c 2 - 221.690429688 270.030273438 l 2 - 212.719726562 255.110351562 208 238.030273438 208 220.639648438 c 2 - 208 144.08984375 l 2 - 208 135.25 215.16015625 128.08984375 224 128.08984375 c 0 - 232.83984375 128.08984375 240 135.25 240 144.08984375 c 2 - 240 224.08984375 l 2 - 240 241.690429688 254.400390625 256.08984375 272 256.08984375 c 0 -618.120117188 94.3603515625 m 2 - 631.190429688 90 640 77.7802734375 640 64.009765625 c 2 - 640 -31.990234375 l 2 - 640 -42.8095703125 631.48046875 -63.990234375 608 -63.990234375 c 0 - 605.3203125 -63.990234375 602.599609375 -63.650390625 599.940429688 -62.9599609375 c 2 - 420.75 -16.33984375 l 2 - 370.83984375 -2.080078125 336 44.1103515625 336 96 c 2 - 336 224 l 2 - 336 241.599609375 350.400390625 256 368 256 c 0 - 385.599609375 256 400 241.599609375 400 224 c 2 - 400 144 l 2 - 400 135.16015625 407.16015625 128 416 128 c 0 - 424.83984375 128 432 135.16015625 432 144 c 2 - 432 220.549804688 l 2 - 432 237.940429688 427.280273438 255.01953125 418.309570312 269.940429688 c 2 - 340.559570312 399.530273438 l 2 - 331.469726562 414.690429688 336.370117188 434.349609375 351.530273438 443.440429688 c 0 - 365.98046875 452.110351562 384.25 447.740234375 393.830078125 434.23046875 c 0 - 394.030273438 433.990234375 394.440429688 434.01953125 394.620117188 433.75 c 2 - 511.879882812 257.860351562 l 2 - 522.440429688 242.01953125 528 223.610351562 528 204.629882812 c 2 - 528 124.400390625 l 1 - 618.120117188 94.3603515625 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" p r a y i n g hyphen h a n d s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" P r a y i n g hyphen H a n d s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" P r a y i n g hyphen h a n d s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" P R A Y I N G hyphen H A N D S -EndChar - -StartChar: quran -Encoding: 63111 63111 867 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 89.599609375 m 2 - 448 80 444.799804688 73.599609375 438.400390625 70.400390625 c 1 - 435.200195312 57.599609375 435.200195312 12.7998046875 438.400390625 -3.2001953125 c 1 - 444.799804688 -9.599609375 448 -16 448 -22.400390625 c 2 - 448 -38.400390625 l 2 - 448 -54.400390625 435.200195312 -64 422.400390625 -64 c 2 - 96 -64 l 2 - 41.599609375 -64 0 -22.400390625 0 32 c 2 - 0 352 l 2 - 0 406.400390625 41.599609375 448 96 448 c 2 - 422.400390625 448 l 2 - 438.400390625 448 448 438.400390625 448 422.400390625 c 2 - 448 89.599609375 l 2 -301.080078125 302.1796875 m 2 - 289.889648438 279.530273438 l 1 - 264.900390625 275.900390625 l 2 - 262.219726562 275.509765625 261.150390625 272.23046875 263.08984375 270.33984375 c 2 - 281.1796875 252.709960938 l 1 - 276.91015625 227.8203125 l 2 - 276.549804688 225.709960938 278.219726562 224 280.120117188 224 c 0 - 280.620117188 224 281.139648438 224.120117188 281.639648438 224.379882812 c 2 - 304 236.129882812 l 1 - 326.360351562 224.379882812 l 2 - 326.860351562 224.120117188 327.379882812 224 327.879882812 224 c 0 - 329.780273438 224 331.450195312 225.709960938 331.08984375 227.8203125 c 2 - 326.8203125 252.709960938 l 1 - 344.91015625 270.33984375 l 2 - 346.83984375 272.23046875 345.76953125 275.509765625 343.099609375 275.900390625 c 2 - 318.099609375 279.530273438 l 1 - 306.919921875 302.1796875 l 2 - 306.3203125 303.389648438 305.16015625 304 304 304 c 0 - 302.83984375 304 301.6796875 303.389648438 301.080078125 302.1796875 c 2 -243.190429688 371.190429688 m 0 - 179.669921875 371.190429688 128 319.51953125 128 256 c 0 - 128 192.490234375 179.669921875 140.809570312 243.1796875 140.8203125 c 0 - 256.780273438 140.8203125 270.299804688 143.290039062 283.370117188 148.16015625 c 0 - 286.049804688 149.0703125 287.990234375 151.599609375 287.990234375 154.580078125 c 0 - 287.990234375 158.219726562 285.120117188 161.360351562 281.190429688 161.360351562 c 0 - 280.540039062 161.360351562 278.08984375 161.150390625 277.059570312 161.150390625 c 0 - 224.75 161.150390625 182.200195312 203.709960938 182.200195312 256.009765625 c 0 - 182.200195312 308.3203125 224.75 350.870117188 277.059570312 350.870117188 c 0 - 278.099609375 350.870117188 280.51953125 350.66015625 281.190429688 350.66015625 c 0 - 281.82421875 350.422851562 282.887695312 350.23046875 283.565429688 350.23046875 c 0 - 287.3046875 350.23046875 290.33984375 353.265625 290.33984375 357.004882812 c 0 - 290.33984375 360.7421875 287.307617188 363.77734375 283.5703125 363.780273438 c 0 - 270.450195312 368.700195312 256.860351562 371.190429688 243.190429688 371.190429688 c 0 -380.799804688 0 m 1 - 380.799804688 64 l 1 - 96 64 l 2 - 80 64 64 51.2001953125 64 32 c 0 - 64 12.7998046875 76.7998046875 0 96 0 c 2 - 380.799804688 0 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" q u r a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" Q u r a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" Q U R A N -EndChar - -StartChar: search-dollar -Encoding: 63112 63112 868 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -505.040039062 5.33984375 m 2 - 514.33984375 -4.0595703125 514.33984375 -19.25 504.940429688 -28.650390625 c 2 - 476.639648438 -56.9501953125 l 2 - 467.33984375 -66.349609375 452.139648438 -66.349609375 442.740234375 -56.9501953125 c 2 - 343.030273438 42.740234375 l 2 - 338.530273438 47.240234375 336.030273438 53.33984375 336.030273438 59.740234375 c 2 - 336.030273438 76.0400390625 l 1 - 300.73046875 48.4404296875 256.3203125 32.0400390625 208.01953125 32.0400390625 c 0 - 93.1103515625 32.0400390625 0 125.129882812 0 240.01953125 c 0 - 0 354.91015625 93.1201171875 448 208.01953125 448 c 0 - 322.919921875 448 416.030273438 354.91015625 416.030273438 240.01953125 c 0 - 416.030273438 191.719726562 399.629882812 147.330078125 372.030273438 112.030273438 c 1 - 388.330078125 112.030273438 l 2 - 394.73046875 112.030273438 400.830078125 109.530273438 405.330078125 105.030273438 c 2 - 505.040039062 5.33984375 l 2 -208.01953125 96.0400390625 m 0 - 287.669921875 96.0400390625 352.01953125 160.490234375 352.01953125 240.01953125 c 0 - 352.01953125 319.66015625 287.559570312 384 208.01953125 384 c 0 - 128.370117188 384 64.01953125 319.549804688 64.01953125 240.01953125 c 0 - 64.01953125 160.379882812 128.48046875 96.0400390625 208.01953125 96.0400390625 c 0 -235.129882812 248.580078125 m 2 - 253.73046875 243 266.719726562 225.16015625 266.719726562 205.190429688 c 0 - 266.719726562 180.66015625 247.669921875 160.75 224.040039062 160.120117188 c 1 - 224.040039062 144 l 2 - 224.040039062 139.580078125 220.459960938 136 216.040039062 136 c 2 - 200.040039062 136 l 2 - 195.620117188 136 192.040039062 139.580078125 192.040039062 144 c 2 - 192.040039062 160.290039062 l 1 - 180.75 160.870117188 169.76953125 164.809570312 160.669921875 171.639648438 c 0 - 156.76953125 174.5703125 156.5703125 180.41015625 160.099609375 183.780273438 c 2 - 171.849609375 194.990234375 l 2 - 174.620117188 197.629882812 178.740234375 197.75 181.98046875 195.719726562 c 0 - 185.83984375 193.290039062 190.240234375 192 194.799804688 192 c 2 - 222.900390625 192 l 2 - 229.400390625 192 234.700195312 197.919921875 234.700195312 205.190429688 c 0 - 234.700195312 211.139648438 231.08984375 216.370117188 225.9296875 217.919921875 c 2 - 180.919921875 231.419921875 l 2 - 162.330078125 237 149.33984375 254.83984375 149.33984375 274.809570312 c 0 - 149.33984375 299.330078125 168.389648438 319.25 192.01953125 319.879882812 c 1 - 192.01953125 336 l 2 - 192.01953125 340.419921875 195.599609375 344 200.01953125 344 c 2 - 216.01953125 344 l 2 - 220.440429688 344 224.01953125 340.419921875 224.01953125 336 c 2 - 224.01953125 319.709960938 l 1 - 235.309570312 319.129882812 246.290039062 315.190429688 255.389648438 308.360351562 c 0 - 259.290039062 305.4296875 259.490234375 299.58984375 255.959960938 296.219726562 c 2 - 244.209960938 285.009765625 l 2 - 241.440429688 282.370117188 237.3203125 282.25 234.080078125 284.280273438 c 0 - 230.219726562 286.709960938 225.8203125 288 221.259765625 288 c 2 - 193.150390625 288 l 2 - 186.650390625 288 181.349609375 282.080078125 181.349609375 274.809570312 c 0 - 181.349609375 268.860351562 184.959960938 263.629882812 190.120117188 262.080078125 c 2 - 235.129882812 248.580078125 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" s e a r c h hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S e a r c h hyphen D o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S e a r c h hyphen d o l l a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S E A R C H hyphen D O L L A R -EndChar - -StartChar: search-location -Encoding: 63113 63113 869 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -505.040039062 5.33984375 m 2 - 514.33984375 -4.0595703125 514.33984375 -19.25 504.940429688 -28.650390625 c 2 - 476.639648438 -56.9501953125 l 2 - 467.33984375 -66.349609375 452.139648438 -66.349609375 442.740234375 -56.9501953125 c 2 - 343.030273438 42.740234375 l 2 - 338.530273438 47.240234375 336.030273438 53.33984375 336.030273438 59.740234375 c 2 - 336.030273438 76.0400390625 l 1 - 300.73046875 48.4404296875 256.3203125 32.0400390625 208.01953125 32.0400390625 c 0 - 93.1103515625 32.0400390625 0 125.129882812 0 240.01953125 c 0 - 0 354.91015625 93.1201171875 448 208.01953125 448 c 0 - 322.919921875 448 416.030273438 354.91015625 416.030273438 240.01953125 c 0 - 416.030273438 191.719726562 399.629882812 147.330078125 372.030273438 112.030273438 c 1 - 388.330078125 112.030273438 l 2 - 394.73046875 112.030273438 400.830078125 109.530273438 405.330078125 105.030273438 c 2 - 505.040039062 5.33984375 l 2 -208.01953125 96.0400390625 m 0 - 287.669921875 96.0400390625 352.01953125 160.490234375 352.01953125 240.01953125 c 0 - 352.01953125 319.66015625 287.559570312 384 208.01953125 384 c 0 - 128.370117188 384 64.01953125 319.549804688 64.01953125 240.01953125 c 0 - 64.01953125 160.379882812 128.48046875 96.0400390625 208.01953125 96.0400390625 c 0 -208.040039062 336 m 0 - 248.8203125 336 281.879882812 302.950195312 281.879882812 262.169921875 c 0 - 281.879882812 229.200195312 233.620117188 169.120117188 215.129882812 147.309570312 c 0 - 213.600585938 145.48046875 210.424804688 143.995117188 208.040039062 143.995117188 c 0 - 205.655273438 143.995117188 202.479492188 145.48046875 200.950195312 147.309570312 c 0 - 182.459960938 169.120117188 134.200195312 229.209960938 134.200195312 262.169921875 c 0 - 134.200195312 302.950195312 167.259765625 336 208.040039062 336 c 0 -208.040039062 240 m 0 - 221.290039062 240 232.040039062 250.75 232.040039062 264 c 0 - 232.040039062 277.259765625 221.290039062 288 208.040039062 288 c 0 - 194.790039062 288 184.040039062 277.259765625 184.040039062 264 c 0 - 184.040039062 250.75 194.780273438 240 208.040039062 240 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" s e a r c h hyphen l o c a t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" S e a r c h hyphen L o c a t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" S e a r c h hyphen l o c a t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" S E A R C H hyphen L O C A T I O N -EndChar - -StartChar: socks -Encoding: 63126 63126 870 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -214.66015625 136.990234375 m 2 - 161.919921875 97.4296875 145.610351562 26.9697265625 175.459960938 -28.41015625 c 1 - 153.599609375 -44.7998046875 l 2 - 136.330078125 -57.75 116.110351562 -64 96.080078125 -64 c 0 - 63.26953125 -64 30.3896484375 -47.25 12.1396484375 -15.669921875 c 0 - -12.509765625 26.9697265625 1.9501953125 81.830078125 41.349609375 111.389648438 c 2 - 128 176 l 1 - 128 352 l 1 - 288 352 l 1 - 288 192 l 1 - 214.66015625 136.990234375 l 2 -288 416 m 2 - 288 384 l 1 - 128 384 l 1 - 128 416 l 2 - 128 433.669921875 142.330078125 448 160 448 c 2 - 288 448 l 2 - 290.849609375 448 293.400390625 447.080078125 296.01953125 446.379882812 c 1 - 291.0703125 437.299804688 288 427.049804688 288 416 c 2 -480 448 m 2 - 497.669921875 448 512 433.669921875 512 416 c 2 - 512 384 l 1 - 320 384 l 1 - 320 416 l 2 - 320 433.669921875 334.330078125 448 352 448 c 2 - 480 448 l 2 -320 176 m 1 - 320 352 l 1 - 512 352 l 1 - 512 144 l 1 - 512 143.998046875 l 2 - 512 108.670898438 489.0625 62.7958984375 460.799804688 41.599609375 c 2 - 345.599609375 -44.7998046875 l 2 - 328.330078125 -57.75 308.110351562 -64 288.080078125 -64 c 0 - 255.26953125 -64 222.91015625 -47.25 204.66015625 -15.669921875 c 0 - 180.009765625 26.9697265625 194.469726562 81.830078125 233.870117188 111.389648438 c 2 - 320 176 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" s o c k s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" S o c k s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" S O C K S -EndChar - -StartChar: square-root-alt -Encoding: 63128 63128 871 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -571.309570312 196.690429688 m 2 - 577.559570312 190.440429688 577.559570312 180.309570312 571.309570312 174.059570312 c 2 - 525.25 128 l 1 - 571.309570312 81.9404296875 l 2 - 577.559570312 75.6904296875 577.559570312 65.5595703125 571.309570312 59.3095703125 c 2 - 548.690429688 36.6904296875 l 2 - 542.440429688 30.4404296875 532.309570312 30.4404296875 526.059570312 36.6904296875 c 2 - 480 82.75 l 1 - 433.940429688 36.6904296875 l 2 - 427.690429688 30.4404296875 417.559570312 30.4404296875 411.309570312 36.6904296875 c 2 - 388.690429688 59.3095703125 l 2 - 382.440429688 65.5595703125 382.440429688 75.6904296875 388.690429688 81.9404296875 c 2 - 434.75 128 l 1 - 388.690429688 174.059570312 l 2 - 382.440429688 180.309570312 382.440429688 190.440429688 388.690429688 196.690429688 c 2 - 411.309570312 219.309570312 l 2 - 417.559570312 225.559570312 427.690429688 225.559570312 433.940429688 219.309570312 c 2 - 480 173.25 l 1 - 526.059570312 219.309570312 l 2 - 532.309570312 225.559570312 542.440429688 225.559570312 548.690429688 219.309570312 c 2 - 571.309570312 196.690429688 l 2 -552 448 m 2 - 565.25 448 576 437.259765625 576 424 c 2 - 576 376 l 2 - 576 362.75 565.25 352 552 352 c 2 - 357.030273438 352 l 1 - 259.219726562 -22.51953125 l 2 - 249.379882812 -55 222.209960938 -64 204.940429688 -64 c 0 - 186.299804688 -64 168.990234375 -55.5 156.5 -35.73046875 c 2 - 67.6201171875 128 l 1 - 24 128 l 2 - 10.75 128 0 138.75 0 152 c 2 - 0 200 l 2 - 0 213.259765625 10.75 224 24 224 c 2 - 105.469726562 224 l 2 - 115.908203125 223.997070312 128.465820312 216.57421875 133.5 207.4296875 c 2 - 191.91015625 101.330078125 l 1 - 276.700195312 424.129882812 l 2 - 280.389648438 438.200195312 293.110351562 448 307.650390625 448 c 2 - 552 448 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" s q u a r e hyphen r o o t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" S q u a r e hyphen R o o t hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" S q u a r e hyphen r o o t hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" S Q U A R E hyphen R O O T hyphen A L T -EndChar - -StartChar: star-and-crescent -Encoding: 63129 63129 872 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -340.469726562 -18.3603515625 m 0 - 349.209960938 -18.3603515625 355.599609375 -25.330078125 355.599609375 -33.419921875 c 0 - 355.599609375 -40.0400390625 351.280273438 -45.66015625 345.3203125 -47.6796875 c 0 - 316.280273438 -58.509765625 286.23046875 -64 256 -64 c 0 - 114.83984375 -64 0 50.83984375 0 192 c 0 - 0 333.16015625 114.83984375 448 256 448 c 0 - 286.389648438 448 316.580078125 442.459960938 345.75 431.51953125 c 0 - 352.669921875 428.919921875 356.6796875 421.6796875 355.219726562 414.4296875 c 0 - 353.799804688 407.389648438 347.599609375 402.360351562 340.469726562 402.360351562 c 0 - 338.990234375 402.360351562 333.610351562 402.8203125 331.290039062 402.8203125 c 0 - 215.040039062 402.8203125 120.469726562 308.25 120.469726562 192 c 0 - 120.469726562 75.75 215.040039062 -18.8203125 331.290039062 -18.8203125 c 0 - 333.580078125 -18.8203125 339.01953125 -18.3603515625 340.469726562 -18.3603515625 c 0 -503.459960938 234.139648438 m 2 - 511.629882812 232.959960938 514.889648438 222.919921875 508.98046875 217.150390625 c 2 - 453.709960938 163.280273438 l 1 - 466.759765625 87.2099609375 l 2 - 467.870117188 80.7802734375 462.75 75.5498046875 456.950195312 75.5498046875 c 0 - 455.419921875 75.5498046875 453.83984375 75.919921875 452.309570312 76.7197265625 c 2 - 384 112.629882812 l 1 - 315.669921875 76.7197265625 l 2 - 314.139648438 75.91015625 312.559570312 75.5498046875 311.030273438 75.5498046875 c 0 - 305.23046875 75.5498046875 300.110351562 80.76953125 301.219726562 87.2099609375 c 2 - 314.26953125 163.280273438 l 1 - 259 217.150390625 l 2 - 253.08984375 222.919921875 256.349609375 232.959960938 264.51953125 234.139648438 c 2 - 340.900390625 245.240234375 l 1 - 375.059570312 314.450195312 l 2 - 376.889648438 318.150390625 380.440429688 320 383.990234375 320 c 0 - 387.540039062 320 391.08984375 318.150390625 392.919921875 314.450195312 c 2 - 427.080078125 245.240234375 l 1 - 503.459960938 234.139648438 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" s t a r hyphen a n d hyphen c r e s c e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" S t a r hyphen A n d hyphen C r e s c e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" S t a r hyphen a n d hyphen c r e s c e n t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" S T A R hyphen A N D hyphen C R E S C E N T -EndChar - -StartChar: star-of-david -Encoding: 63130 63130 873 -Width: 464 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -405.6796875 192 m 1 - 458.900390625 102.610351562 l 2 - 473.309570312 78.400390625 455.490234375 48 426.889648438 48 c 2 - 319.959960938 48 l 1 - 264.009765625 -45.98046875 l 2 - 256.860351562 -57.990234375 244.4296875 -64 232 -64 c 0 - 219.5703125 -64 207.139648438 -57.990234375 199.990234375 -45.98046875 c 2 - 144.040039062 48 l 1 - 37.1103515625 48 l 2 - 8.509765625 48 -9.3095703125 78.400390625 5.099609375 102.610351562 c 2 - 58.3203125 192 l 1 - 5.099609375 281.389648438 l 2 - -9.3095703125 305.599609375 8.509765625 336 37.1103515625 336 c 2 - 144.040039062 336 l 1 - 199.990234375 429.98046875 l 2 - 207.139648438 441.990234375 219.5703125 448 232 448 c 0 - 244.4296875 448 256.860351562 441.990234375 264.009765625 429.98046875 c 2 - 319.959960938 336 l 1 - 426.879882812 336 l 2 - 455.48046875 336 473.299804688 305.599609375 458.889648438 281.389648438 c 2 - 405.6796875 192 l 1 -392.900390625 280 m 1 - 353.299804688 280 l 1 - 373.099609375 246.740234375 l 1 - 392.900390625 280 l 1 -340.509765625 192 m 1 - 288.120117188 280 l 1 - 175.870117188 280 l 1 - 123.490234375 192 l 1 - 175.879882812 104 l 1 - 288.120117188 104 l 1 - 340.509765625 192 l 1 -232 374.280273438 m 1 - 209.219726562 336 l 1 - 254.790039062 336 l 1 - 232 374.280273438 l 1 -71.099609375 280 m 1 - 90.900390625 246.740234375 l 1 - 110.700195312 280 l 1 - 71.099609375 280 l 1 -71.099609375 104 m 1 - 110.700195312 104 l 1 - 90.900390625 137.259765625 l 1 - 71.099609375 104 l 1 -232 9.7197265625 m 1 - 254.780273438 48 l 1 - 209.209960938 48 l 1 - 232 9.7197265625 l 1 -353.290039062 104 m 1 - 392.900390625 104 l 1 - 373.08984375 137.259765625 l 1 - 353.290039062 104 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" s t a r hyphen o f hyphen d a v i d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S t a r hyphen O f hyphen D a v i d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S t a r hyphen o f hyphen d a v i d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S T A R hyphen O F hyphen D A V I D -EndChar - -StartChar: synagogue -Encoding: 63131 63131 874 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -70 251.490234375 m 2 - 75.3095703125 257.5 84.6904296875 257.5 90 251.490234375 c 2 - 128 208.419921875 l 1 - 128 -64 l 1 - 0 -64 l 1 - 0 162.0703125 l 1 - 0 162.077148438 l 2 - 0 167.639648438 2.98828125 175.540039062 6.669921875 179.709960938 c 2 - 70 251.490234375 l 2 -633.330078125 179.709960938 m 2 - 637.629882812 174.83984375 640 168.5703125 640 162.0703125 c 2 - 640 -64 l 1 - 512 -64 l 1 - 512 208.419921875 l 1 - 550 251.490234375 l 2 - 555.309570312 257.509765625 564.690429688 257.509765625 570 251.490234375 c 2 - 633.330078125 179.709960938 l 2 -339.990234375 440.990234375 m 2 - 467.990234375 338.58984375 l 2 - 475.580078125 332.51953125 480 323.3203125 480 313.599609375 c 2 - 480 -64 l 1 - 384 -64 l 1 - 384 32 l 2 - 384 70.8701171875 349.33984375 101.650390625 309.25 95.1201171875 c 0 - 277.780273438 90 256 60.4501953125 256 28.5703125 c 2 - 256 -64 l 1 - 160 -64 l 1 - 160 313.599609375 l 2 - 160 322.08984375 165.380859375 333.286132812 172.009765625 338.58984375 c 2 - 300.009765625 440.990234375 l 2 - 311.700195312 450.33984375 328.299804688 450.33984375 339.990234375 440.990234375 c 2 -392.059570312 225.440429688 m 2 - 372.870117188 256 l 1 - 392.0703125 286.5703125 l 2 - 394.049804688 289.719726562 391.780273438 293.809570312 388.0703125 293.809570312 c 2 - 349.120117188 293.809570312 l 1 - 324 333.790039062 l 2 - 322.150390625 336.740234375 317.849609375 336.740234375 316 333.790039062 c 2 - 290.879882812 293.790039062 l 1 - 251.940429688 293.790039062 l 2 - 248.23046875 293.790039062 245.959960938 289.700195312 247.940429688 286.549804688 c 2 - 267.139648438 255.990234375 l 1 - 247.940429688 225.4296875 l 2 - 245.959960938 222.280273438 248.219726562 218.190429688 251.940429688 218.190429688 c 2 - 290.879882812 218.190429688 l 1 - 316 178.209960938 l 2 - 317.849609375 175.259765625 322.150390625 175.259765625 324 178.209960938 c 2 - 349.120117188 218.200195312 l 1 - 388.059570312 218.200195312 l 2 - 391.76953125 218.200195312 394.040039062 222.290039062 392.059570312 225.440429688 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" s y n a g o g u e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S y n a g o g u e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" S Y N A G O G U E -EndChar - -StartChar: torah -Encoding: 63136 63136 875 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320.049804688 81.51953125 m 1 - 302.309570312 111.16015625 l 1 - 337.76953125 111.16015625 l 1 - 320.049804688 81.51953125 l 1 -419.259765625 247.51953125 m 1 - 400.860351562 216.700195312 l 1 - 382.400390625 247.51953125 l 1 - 419.259765625 247.51953125 l 1 -48 448 m 0 - 74.509765625 448 96 433.669921875 96 416 c 2 - 96 -32 l 2 - 96 -49.669921875 74.509765625 -64 48 -64 c 0 - 21.490234375 -64 0 -49.669921875 0 -32 c 2 - 0 416 l 2 - 0 433.669921875 21.490234375 448 48 448 c 0 -220.740234375 136.5 m 1 - 239.129882812 167.3203125 l 1 - 257.58984375 136.5 l 1 - 220.740234375 136.5 l 1 -382.450195312 136.5 m 1 - 400.860351562 167.299804688 l 1 - 419.309570312 136.5 l 1 - 382.450195312 136.5 l 1 -128 -16 m 1 - 128 400 l 1 - 512 400 l 1 - 512 -16 l 1 - 128 -16 l 1 -194.76953125 262.129882812 m 0 - 193.232421875 259.473632812 191.984375 254.828125 191.984375 251.758789062 c 0 - 191.984375 248.555664062 193.334960938 243.736328125 195 241 c 2 - 224.360351562 192 l 1 - 195.150390625 143.16015625 l 2 - 193.479492188 140.38671875 192.124023438 135.5078125 192.124023438 132.26953125 c 0 - 192.124023438 120.6171875 201.581054688 111.16015625 213.234375 111.16015625 c 2 - 213.25 111.16015625 l 1 - 272.75 111.16015625 l 1 - 302 62.2802734375 l 2 - 305.331054688 56.638671875 313.3515625 52.0595703125 319.90234375 52.0595703125 c 2 - 320 52.0595703125 l 2 - 326.6484375 52.0732421875 334.784179688 56.732421875 338.16015625 62.4599609375 c 2 - 367.290039062 111.16015625 l 1 - 426.759765625 111.16015625 l 1 - 426.782226562 111.16015625 l 2 - 433.594726562 111.16015625 441.864257812 115.962890625 445.240234375 121.879882812 c 0 - 446.774414062 124.533203125 448.01953125 129.172851562 448.01953125 132.23828125 c 0 - 448.01953125 135.442382812 446.666992188 140.263671875 445 143 c 2 - 415.629882812 192 l 1 - 444.870117188 240.849609375 l 2 - 446.536132812 243.622070312 447.887695312 248.49609375 447.887695312 251.73046875 c 0 - 447.887695312 263.38671875 438.426757812 272.848632812 426.76953125 272.849609375 c 2 - 367.25 272.849609375 l 1 - 338 321.709960938 l 2 - 334.674804688 327.345703125 326.6640625 331.919921875 320.120117188 331.919921875 c 2 - 320.049804688 331.919921875 l 1 - 320.015625 331.919921875 l 2 - 313.364257812 331.919921875 305.216796875 327.274414062 301.830078125 321.549804688 c 2 - 272.700195312 272.83984375 l 1 - 213.25 272.83984375 l 1 - 213.204101562 272.83984375 l 2 - 206.399414062 272.83984375 198.140625 268.041992188 194.76953125 262.129882812 c 0 -592 448 m 0 - 618.509765625 448 640 433.669921875 640 416 c 2 - 640 -32 l 2 - 640 -49.669921875 618.509765625 -64 592 -64 c 0 - 565.490234375 -64 544 -49.669921875 544 -32 c 2 - 544 416 l 2 - 544 433.669921875 565.490234375 448 592 448 c 0 -320 302.469726562 m 1 - 337.6796875 272.849609375 l 1 - 302.219726562 272.849609375 l 1 - 320 302.469726562 l 1 -257.549804688 247.469726562 m 1 - 239.1796875 216.669921875 l 1 - 220.740234375 247.469726562 l 1 - 257.549804688 247.469726562 l 1 -287.129882812 136.469726562 m 1 - 253.900390625 192 l 1 - 287.0703125 247.51953125 l 1 - 352.860351562 247.51953125 l 1 - 386.08984375 192 l 1 - 352.919921875 136.469726562 l 1 - 287.129882812 136.469726562 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" t o r a h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T o r a h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T O R A H -EndChar - -StartChar: torii-gate -Encoding: 63137 63137 876 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -376.450195312 416 m 2 - 415.946289062 416.001953125 476.672851562 430.338867188 512 448 c 1 - 512 352 l 2 - 512 334.330078125 497.669921875 320 480 320 c 2 - 448 320 l 1 - 448 256 l 1 - 496 256 l 2 - 504.83984375 256 512 248.83984375 512 240 c 2 - 512 208 l 2 - 512 199.16015625 504.83984375 192 496 192 c 2 - 448 192 l 1 - 448 -48 l 2 - 448 -56.83984375 440.83984375 -64 432 -64 c 2 - 400 -64 l 2 - 391.16015625 -64 384 -56.83984375 384 -48 c 2 - 384 192 l 1 - 128 192 l 1 - 128 -48 l 2 - 128 -56.83984375 120.83984375 -64 112 -64 c 2 - 80 -64 l 2 - 71.16015625 -64 64 -56.83984375 64 -48 c 2 - 64 192 l 1 - 16 192 l 2 - 7.16015625 192 0 199.16015625 0 208 c 2 - 0 240 l 2 - 0 248.83984375 7.16015625 256 16 256 c 2 - 64 256 l 1 - 64 320 l 1 - 32 320 l 2 - 14.330078125 320 0 334.330078125 0 352 c 2 - 0 448 l 1 - 35.3271484375 430.338867188 96.0537109375 416.001953125 135.549804688 416 c 2 - 376.450195312 416 l 2 -128 320 m 1 - 128 256 l 1 - 224 256 l 1 - 224 320 l 1 - 128 320 l 1 -384 256 m 1 - 384 320 l 1 - 288 320 l 1 - 288 256 l 1 - 384 256 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" t o r i i hyphen g a t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" T o r i i hyphen G a t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" T o r i i hyphen g a t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" T O R I I hyphen G A T E -EndChar - -StartChar: vihara -Encoding: 63143 63143 877 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -632.879882812 47.2900390625 m 2 - 638.299804688 43.6796875 640.580078125 37.669921875 639.870117188 32 c 0 - 639.25 26.990234375 636.309570312 22.25 631.150390625 19.669921875 c 2 - 576 0 l 1 - 576 -48 l 2 - 576 -56.83984375 568.83984375 -64 560 -64 c 2 - 528 -64 l 2 - 519.16015625 -64 512 -56.83984375 512 -48 c 2 - 512 0 l 1 - 352 0 l 1 - 352 -48 l 2 - 352 -56.83984375 344.83984375 -64 336 -64 c 2 - 304 -64 l 2 - 295.16015625 -64 288 -56.83984375 288 -48 c 2 - 288 0 l 1 - 128 0 l 1 - 128 -48 l 2 - 128 -56.83984375 120.83984375 -64 112 -64 c 2 - 80 -64 l 2 - 71.16015625 -64 64 -56.83984375 64 -48 c 2 - 64 0 l 1 - 8.83984375 19.669921875 l 2 - 3.6904296875 22.25 0.740234375 26.990234375 0.1201171875 32 c 0 - -0.580078125 37.66015625 1.7001953125 43.669921875 7.1201171875 47.2900390625 c 2 - 96 96 l 1 - 96 160 l 1 - 40.83984375 177.690429688 l 2 - 29.0498046875 183.58984375 29.0498046875 200.41015625 40.83984375 206.309570312 c 2 - 160 256 l 1 - 160 320 l 1 - 132.690429688 336.309570312 l 2 - 124.969726562 344.030273438 127.080078125 357.049804688 136.849609375 361.9296875 c 2 - 320 448 l 1 - 503.150390625 361.919921875 l 2 - 512.919921875 357.040039062 515.030273438 344.01953125 507.309570312 336.299804688 c 2 - 480 320 l 1 - 480 256 l 1 - 599.16015625 206.309570312 l 2 - 610.950195312 200.41015625 610.950195312 183.58984375 599.16015625 177.690429688 c 2 - 544 160 l 1 - 544 96 l 1 - 632.879882812 47.2900390625 l 2 -224 320 m 1 - 224 256 l 1 - 416 256 l 1 - 416 320 l 1 - 224 320 l 1 -160 96 m 1 - 480 96 l 1 - 480 160 l 1 - 160 160 l 1 - 160 96 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" v i h a r a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" V I H A R A -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" V i h a r a -EndChar - -StartChar: volume-mute -Encoding: 63145 63145 878 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -215.030273438 376.950195312 m 2 - 230.040039062 391.959960938 256 381.440429688 256 359.98046875 c 2 - 256 24.01953125 l 2 - 256 2.580078125 230.059570312 -7.98046875 215.030273438 7.0498046875 c 2 - 126.059570312 96 l 1 - 24 96 l 2 - 10.740234375 96 0 106.75 0 120 c 2 - 0 264 l 2 - 0 277.259765625 10.740234375 288 24 288 c 2 - 126.059570312 288 l 1 - 215.030273438 376.950195312 l 2 -461.639648438 192 m 1 - 507.280273438 146.360351562 l 2 - 513.580078125 140.059570312 513.580078125 129.83984375 507.280273438 123.540039062 c 2 - 484.459960938 100.719726562 l 2 - 478.16015625 94.419921875 467.940429688 94.419921875 461.639648438 100.719726562 c 2 - 416 146.360351562 l 1 - 370.370117188 100.73046875 l 2 - 364.0703125 94.4296875 353.849609375 94.4296875 347.549804688 100.73046875 c 2 - 324.73046875 123.549804688 l 2 - 318.4296875 129.849609375 318.4296875 140.0703125 324.73046875 146.370117188 c 2 - 370.360351562 192 l 1 - 324.719726562 237.639648438 l 2 - 318.419921875 243.940429688 318.419921875 254.16015625 324.719726562 260.459960938 c 2 - 347.540039062 283.280273438 l 2 - 353.83984375 289.580078125 364.059570312 289.580078125 370.360351562 283.280273438 c 2 - 416 237.639648438 l 1 - 461.639648438 283.280273438 l 2 - 467.940429688 289.580078125 478.16015625 289.580078125 484.459960938 283.280273438 c 2 - 507.280273438 260.459960938 l 2 - 513.580078125 254.16015625 513.580078125 243.940429688 507.280273438 237.639648438 c 2 - 461.639648438 192 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" v o l u m e hyphen m u t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" V o l u m e hyphen M u t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" V o l u m e hyphen m u t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" V O L U M E hyphen M U T E -EndChar - -StartChar: yin-yang -Encoding: 63149 63149 879 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 384.969726562 440 496 328.969726562 496 192 c 0 - 496 55.0302734375 384.969726562 -56 248 -56 c 0 - 111.030273438 -56 0 55.0302734375 0 192 c 0 - 0 328.969726562 111.030273438 440 248 440 c 0 -248 64 m 0 - 265.669921875 64 280 78.330078125 280 96 c 0 - 280 113.669921875 265.669921875 128 248 128 c 0 - 230.330078125 128 216 113.669921875 216 96 c 0 - 216 78.330078125 230.330078125 64 248 64 c 0 -248 192 m 0 - 301.01953125 192 344 234.98046875 344 288 c 0 - 344 341.01953125 301.01953125 384 248 384 c 0 - 141.959960938 384 56 298.040039062 56 192 c 0 - 56 85.9599609375 141.959960938 0 248 0 c 1 - 194.98046875 0 152 42.98046875 152 96 c 0 - 152 149.01953125 194.98046875 192 248 192 c 0 -248 320 m 0 - 265.669921875 320 280 305.669921875 280 288 c 0 - 280 270.330078125 265.669921875 256 248 256 c 0 - 230.330078125 256 216 270.330078125 216 288 c 0 - 216 305.669921875 230.330078125 320 248 320 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" y i n hyphen y a n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" Y i n hyphen Y a n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" Y i n hyphen y a n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" Y I N hyphen Y A N G -EndChar - -StartChar: blender-phone -Encoding: 63158 63158 880 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -392 384 m 2 - 387.580078125 384 384 380.419921875 384 376 c 2 - 384 360 l 2 - 384 355.580078125 387.580078125 352 392 352 c 2 - 549.8203125 352 l 1 - 532.360351562 288 l 1 - 392 288 l 2 - 387.580078125 288 384 284.419921875 384 280 c 2 - 384 264 l 2 - 384 259.580078125 387.580078125 256 392 256 c 2 - 523.639648438 256 l 1 - 506.1796875 192 l 1 - 392 192 l 2 - 387.580078125 192 384 188.419921875 384 184 c 2 - 384 168 l 2 - 384 163.580078125 387.580078125 160 392 160 c 2 - 497.459960938 160 l 1 - 480 96 l 1 - 192 96 l 1 - 192 448 l 1 - 576 448 l 1 - 558.540039062 384 l 1 - 392 384 l 2 -158.799804688 112.990234375 m 2 - 161.809570312 105.58984375 159 97.1396484375 152.110351562 92.919921875 c 2 - 112.700195312 68.740234375 l 2 - 100.169921875 61.0595703125 80.919921875 62.740234375 71.0498046875 73.5400390625 c 0 - -23.0498046875 176.48046875 -23.6201171875 332.4296875 68.9501953125 436.030273438 c 0 - 80.08984375 448.5 98.509765625 451.870117188 112.83984375 443.080078125 c 2 - 152.120117188 418.98046875 l 2 - 159 414.759765625 161.8203125 406.299804688 158.799804688 398.91015625 c 2 - 133.01953125 335.650390625 l 2 - 130.240234375 328.849609375 123.209960938 324.66015625 115.780273438 325.389648438 c 2 - 70.75 329.809570312 l 1 - 53.099609375 281.870117188 53.4697265625 229.030273438 70.75 182.08984375 c 1 - 115.780273438 186.509765625 l 2 - 123.219726562 187.240234375 130.240234375 183.059570312 133.01953125 176.25 c 2 - 158.799804688 112.990234375 l 2 -480 64 m 2 - 515.349609375 64 544 35.349609375 544 0 c 2 - 544 -32 l 2 - 544 -49.669921875 529.669921875 -64 512 -64 c 2 - 160 -64 l 2 - 142.330078125 -64 128 -49.669921875 128 -32 c 2 - 128 0 l 2 - 128 35.349609375 156.650390625 64 192 64 c 2 - 480 64 l 2 -336 -32 m 0 - 353.669921875 -32 368 -17.669921875 368 0 c 0 - 368 17.669921875 353.669921875 32 336 32 c 0 - 318.330078125 32 304 17.669921875 304 0 c 0 - 304 -17.669921875 318.330078125 -32 336 -32 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" b l e n d e r hyphen p h o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" B l e n d e r hyphen P h o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" B l e n d e r hyphen p h o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" B L E N D E R hyphen P H O N E -EndChar - -StartChar: book-dead -Encoding: 63159 63159 881 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -272 312 m 0 - 263.200195312 312 256 319.200195312 256 328 c 0 - 256 336.799804688 263.200195312 344 272 344 c 0 - 280.799804688 344 288 336.799804688 288 328 c 0 - 288 319.200195312 280.799804688 312 272 312 c 0 -448 89.599609375 m 2 - 448 80 444.799804688 73.599609375 438.400390625 70.400390625 c 1 - 435.200195312 57.599609375 435.200195312 12.7998046875 438.400390625 -3.2001953125 c 1 - 444.799804688 -9.599609375 448 -16 448 -22.400390625 c 2 - 448 -38.400390625 l 2 - 448 -54.400390625 435.200195312 -64 422.400390625 -64 c 2 - 96 -64 l 2 - 41.599609375 -64 0 -22.400390625 0 32 c 2 - 0 352 l 2 - 0 406.400390625 41.599609375 448 96 448 c 2 - 422.400390625 448 l 2 - 438.400390625 448 448 438.400390625 448 422.400390625 c 2 - 448 89.599609375 l 2 -240 392 m 0 - 195.799804688 392 160 363.299804688 160 328 c 0 - 160 307.099609375 172.700195312 288.799804688 192 277.099609375 c 1 - 192 264 l 2 - 192 255.200195312 199.200195312 248 208 248 c 2 - 272 248 l 2 - 280.799804688 248 288 255.200195312 288 264 c 2 - 288 277.099609375 l 1 - 307.299804688 288.799804688 320 307.099609375 320 328 c 0 - 320 363.299804688 284.200195312 392 240 392 c 0 -124.799804688 224.700195312 m 2 - 123.099609375 220.599609375 124.900390625 215.900390625 129 214.200195312 c 2 - 199.5 183.900390625 l 1 - 129.099609375 153.799804688 l 2 - 125 152.099609375 123.200195312 147.400390625 124.900390625 143.299804688 c 2 - 131.200195312 128.599609375 l 2 - 132.900390625 124.5 137.599609375 122.700195312 141.700195312 124.400390625 c 2 - 240 166.599609375 l 1 - 338.299804688 124.5 l 2 - 342.400390625 122.799804688 347.099609375 124.599609375 348.799804688 128.700195312 c 2 - 355.099609375 143.400390625 l 2 - 356.799804688 147.5 355 152.200195312 350.900390625 153.900390625 c 2 - 280.599609375 184 l 1 - 350.900390625 214.200195312 l 2 - 355 215.900390625 356.799804688 220.599609375 355.099609375 224.700195312 c 2 - 348.799804688 239.400390625 l 2 - 347.099609375 243.5 342.400390625 245.299804688 338.299804688 243.599609375 c 2 - 239.900390625 201.5 l 1 - 141.599609375 243.599609375 l 2 - 137.5 245.299804688 132.799804688 243.5 131.099609375 239.400390625 c 2 - 124.799804688 224.700195312 l 2 -380.799804688 0 m 1 - 380.799804688 64 l 1 - 96 64 l 2 - 80 64 64 51.2001953125 64 32 c 0 - 64 12.7998046875 76.7998046875 0 96 0 c 2 - 380.799804688 0 l 1 -208 312 m 0 - 199.200195312 312 192 319.200195312 192 328 c 0 - 192 336.799804688 199.200195312 344 208 344 c 0 - 216.799804688 344 224 336.799804688 224 328 c 0 - 224 319.200195312 216.799804688 312 208 312 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" b o o k hyphen d e a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" B o o k hyphen D e a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" B o o k hyphen d e a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" B O O K hyphen D E A D -EndChar - -StartChar: campground -Encoding: 63163 63163 882 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 0 m 2 - 632.83984375 0 640 -7.16015625 640 -16 c 2 - 640 -48 l 2 - 640 -56.83984375 632.83984375 -64 624 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 40.6796875 0 l 1 - 280.469726562 330.25 l 1 - 227.059570312 403.799804688 l 2 - 221.860351562 410.950195312 223.450195312 420.959960938 230.599609375 426.150390625 c 2 - 256.48046875 444.950195312 l 2 - 263.629882812 450.139648438 273.639648438 448.549804688 278.830078125 441.400390625 c 2 - 320 384.700195312 l 1 - 361.16015625 441.389648438 l 2 - 366.360351562 448.549804688 376.360351562 450.129882812 383.509765625 444.940429688 c 2 - 409.41015625 426.150390625 l 2 - 416.559570312 420.959960938 418.139648438 410.950195312 412.950195312 403.799804688 c 2 - 359.540039062 330.25 l 1 - 599.3203125 0 l 1 - 624 0 l 2 -320 160 m 1 - 203.639648438 0 l 1 - 436.360351562 0 l 1 - 320 160 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" c a m p g r o u n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C a m p g r o u n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" C A M P G R O U N D -EndChar - -StartChar: cat -Encoding: 63166 63166 883 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -290.58984375 256 m 1 - 302.48046875 197.650390625 354.190429688 153.599609375 416 153.599609375 c 0 - 427.110351562 153.599609375 437.709960938 155.469726562 448 158.139648438 c 1 - 448 -48 l 2 - 448 -56.83984375 440.83984375 -64 432 -64 c 2 - 400 -64 l 2 - 391.16015625 -64 384 -56.83984375 384 -48 c 2 - 384 96 l 1 - 256 0 l 1 - 288 0 l 2 - 305.669921875 0 320 -14.330078125 320 -32 c 2 - 320 -48 l 2 - 320 -56.83984375 312.83984375 -64 304 -64 c 2 - 128 -64 l 2 - 92.7001953125 -64 64 -35.2998046875 64 0 c 2 - 64 256 l 2 - 64 273.639648438 49.6396484375 288 32 288 c 0 - 14.330078125 288 0 302.330078125 0 320 c 0 - 0 337.669921875 14.330078125 352 32 352 c 0 - 84.9404296875 352 128 308.940429688 128 256 c 2 - 128 170.049804688 l 1 - 183.76953125 254.01953125 270.41015625 256 290.58984375 256 c 1 -448 352 m 1 - 512 416 l 1 - 512 281.599609375 l 2 - 512 228.580078125 469.01953125 185.599609375 416 185.599609375 c 0 - 362.98046875 185.599609375 320 228.580078125 320 281.599609375 c 2 - 320 416 l 1 - 384 352 l 1 - 448 352 l 1 -376 272 m 0 - 384.83984375 272 392 279.16015625 392 288 c 0 - 392 296.83984375 384.83984375 304 376 304 c 0 - 367.16015625 304 360 296.83984375 360 288 c 0 - 360 279.16015625 367.16015625 272 376 272 c 0 -456 272 m 0 - 464.83984375 272 472 279.16015625 472 288 c 0 - 472 296.83984375 464.83984375 304 456 304 c 0 - 447.16015625 304 440 296.83984375 440 288 c 0 - 440 279.16015625 447.16015625 272 456 272 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" c a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" C a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" C A T -EndChar - -StartChar: chair -Encoding: 63168 63168 884 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -112 320 m 2 - 112 192 l 1 - 64 192 l 1 - 64 320 l 2 - 64 390.700195312 121.299804688 448 192 448 c 2 - 256 448 l 2 - 326.700195312 448 384 390.700195312 384 320 c 2 - 384 192 l 1 - 336 192 l 1 - 336 320 l 2 - 336 349.5 319.799804688 375 296 388.900390625 c 1 - 296 192 l 1 - 248 192 l 1 - 248 400 l 1 - 200 400 l 1 - 200 192 l 1 - 152 192 l 1 - 152 388.900390625 l 1 - 128.200195312 375 112 349.5 112 320 c 2 -446.299804688 106.099609375 m 2 - 453.200195312 85.400390625 437.799804688 64 416 64 c 1 - 416 -48 l 2 - 416 -56.7998046875 408.799804688 -64 400 -64 c 2 - 368 -64 l 2 - 359.200195312 -64 352 -56.7998046875 352 -48 c 2 - 352 64 l 1 - 96 64 l 1 - 96 -48 l 2 - 96 -56.7998046875 88.7998046875 -64 80 -64 c 2 - 48 -64 l 2 - 39.2001953125 -64 32 -56.7998046875 32 -48 c 2 - 32 64 l 1 - 10.2001953125 64 -5.2001953125 85.400390625 1.599609375 106.099609375 c 2 - 12.2998046875 138.099609375 l 2 - 16.7001953125 151.200195312 28.900390625 160 42.7001953125 160 c 2 - 405.200195312 160 l 2 - 419 160 431.200195312 151.200195312 435.599609375 138.099609375 c 2 - 446.299804688 106.099609375 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" c h a i r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C H A I R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" C h a i r -EndChar - -StartChar: cloud-moon -Encoding: 63171 63171 885 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -342.799804688 95.2998046875 m 1 - 383.700195312 91.7998046875 416 57.900390625 416 16 c 0 - 416 -28.2001953125 380.200195312 -64 336 -64 c 2 - 96 -64 l 2 - 43 -64 0 -21 0 32 c 0 - 0 73.900390625 27.099609375 109.200195312 64.599609375 122.299804688 c 0 - 64.5 124.200195312 64 126 64 128 c 0 - 64 181 107 224 160 224 c 0 - 196.200195312 224 227.400390625 203.700195312 243.700195312 174.099609375 c 1 - 255.200195312 185.099609375 270.799804688 192 288 192 c 0 - 323.299804688 192 352 163.299804688 352 128 c 0 - 352 116 348.5 104.900390625 342.799804688 95.2998046875 c 1 -565.299804688 149.599609375 m 0 - 573.5 151.200195312 579.299804688 141.599609375 574 135.099609375 c 0 - 540.599609375 94 491.299804688 68.099609375 436.900390625 64.7001953125 c 1 - 425.799804688 87.7998046875 407 106.5 383.400390625 117.299804688 c 0 - 383.799804688 120.799804688 384 124.400390625 384 128 c 0 - 384 180.900390625 340.900390625 224 288 224 c 0 - 275.299804688 224 263 221.5 251.599609375 216.799804688 c 1 - 246.5 222.099609375 240.799804688 226.700195312 234.900390625 231 c 1 - 233.799804688 239.200195312 233.099609375 247.5 233.099609375 256 c 0 - 233.099609375 362.099609375 319.099609375 448 425 448 c 0 - 436.700195312 448 448.400390625 446.900390625 460.099609375 444.799804688 c 0 - 468.299804688 443.200195312 470.200195312 432.200195312 462.900390625 428.099609375 c 0 - 415.799804688 401.299804688 386.799804688 351.5 386.799804688 297.299804688 c 0 - 386.799804688 203.299804688 472.200195312 131.900390625 565.299804688 149.599609375 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" c l o u d hyphen m o o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C l o u d hyphen M o o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C l o u d hyphen m o o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C L O U D hyphen M O O N -EndChar - -StartChar: cloud-sun -Encoding: 63172 63172 886 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -575.200195312 122.299804688 m 0 - 612.799804688 109.299804688 640 74 640 31.900390625 c 0 - 640 -21.099609375 597 -64.099609375 544 -64.099609375 c 2 - 272 -64.099609375 l 2 - 219 -64.099609375 176 -21.099609375 176 31.900390625 c 0 - 176 82.5 215.299804688 123.5 264.900390625 127.200195312 c 0 - 264.700195312 130.099609375 264 132.900390625 264 135.900390625 c 0 - 264 197.799804688 314.200195312 247.900390625 376 247.900390625 c 0 - 421.400390625 247.900390625 460.299804688 220.700195312 477.900390625 181.900390625 c 1 - 487.799804688 188.099609375 499.400390625 191.900390625 512 191.900390625 c 0 - 547.299804688 191.900390625 576 163.200195312 576 127.900390625 c 0 - 576 126 575.400390625 124.200195312 575.200195312 122.299804688 c 0 -144.799804688 144.900390625 m 0 - 155.400390625 134.299804688 167.700195312 126.299804688 180.799804688 120.900390625 c 1 - 171.200195312 111.099609375 163.299804688 99.7998046875 157.200195312 87.400390625 c 1 - 81.099609375 62.099609375 l 2 - 69.2001953125 58.2001953125 57.900390625 69.400390625 61.900390625 81.2998046875 c 2 - 91.2001953125 169.099609375 l 1 - 8.400390625 210.5 l 2 - -2.7998046875 216.099609375 -2.7998046875 232 8.400390625 237.599609375 c 2 - 91.2001953125 279.099609375 l 1 - 61.900390625 366.900390625 l 2 - 58 378.700195312 69.2998046875 390 81.099609375 386.099609375 c 2 - 169 356.799804688 l 1 - 210.400390625 439.599609375 l 2 - 216 450.799804688 232 450.799804688 237.5 439.599609375 c 2 - 279 356.799804688 l 1 - 366.799804688 386.099609375 l 2 - 378.700195312 390 390 378.799804688 386 366.900390625 c 2 - 356.200195312 278 l 1 - 345.599609375 276.5 335.299804688 274.200195312 325.5 270.5 c 1 - 320.099609375 282.299804688 312.900390625 293.5 303.200195312 303.200195312 c 0 - 259.5 346.900390625 188.5 346.900390625 144.799804688 303.200195312 c 0 - 101.099609375 259.599609375 101.099609375 188.599609375 144.799804688 144.900390625 c 0 -140 224.099609375 m 0 - 140 270.400390625 177.700195312 308 224 308 c 0 - 258 308 287.299804688 287.599609375 300.5 258.5 c 1 - 264.099609375 236 238.5 197.799804688 233.099609375 153.5 c 1 - 224.200195312 150.599609375 215.900390625 146.5 207.900390625 141.799804688 c 1 - 169.299804688 149.299804688 140 183.299804688 140 224.099609375 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" c l o u d hyphen s u n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" C l o u d hyphen S u n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" C l o u d hyphen s u n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" C L O U D hyphen S U N -EndChar - -StartChar: dice-d20 -Encoding: 63183 63183 887 -Width: 480 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -106.75 232.940429688 m 1 - 215.389648438 42.83984375 l 1 - 7.1298828125 64.91015625 l 2 - 1.2998046875 65.5498046875 -1.8798828125 72.0498046875 1.2001953125 77.0498046875 c 2 - 106.75 232.940429688 l 1 -7.41015625 132.5703125 m 2 - 5.2900390625 129.129882812 0 130.629882812 0 134.66015625 c 2 - 0 297.469726562 l 2 - 0 300.580078125 3.3896484375 302.5 6.0595703125 300.900390625 c 2 - 82.7001953125 254.919921875 l 1 - 7.41015625 132.5703125 l 2 -18.25 24.400390625 m 2 - 14.2197265625 26.3798828125 16 32.4697265625 20.4501953125 31.9697265625 c 2 - 224 9.669921875 l 1 - 224 -56 l 2 - 224 -61.830078125 217.950195312 -65.7099609375 212.650390625 -63.259765625 c 2 - 18.25 24.400390625 l 2 -99.4697265625 282.1796875 m 1 - 17.9404296875 330.870117188 l 2 - 15.419921875 332.389648438 15.33984375 336.030273438 17.8095703125 337.650390625 c 2 - 168.620117188 436.259765625 l 2 - 175.809570312 440.370117188 183.740234375 432.1796875 179.400390625 425.120117188 c 2 - 99.4697265625 282.1796875 l 1 -240 272 m 1 - 130.790039062 272 l 1 - 226.370117188 440.379882812 l 2 - 229.5 445.459960938 234.75 448 240 448 c 0 - 245.25 448 250.5 445.459960938 253.629882812 440.379882812 c 2 - 349.209960938 272 l 1 - 240 272 l 1 -473.940429688 300.900390625 m 2 - 476.610351562 302.5 480 300.580078125 480 297.469726562 c 2 - 480 134.66015625 l 2 - 480 130.620117188 474.700195312 129.120117188 472.58984375 132.559570312 c 2 - 397.299804688 254.91015625 l 1 - 473.940429688 300.900390625 l 2 -380.530273438 282.1796875 m 1 - 300.599609375 425.120117188 l 2 - 296.259765625 432.1796875 304.190429688 440.370117188 311.379882812 436.259765625 c 2 - 462.190429688 337.66015625 l 2 - 464.66015625 336.040039062 464.58984375 332.400390625 462.059570312 330.879882812 c 2 - 380.530273438 282.1796875 l 1 -459.549804688 31.9697265625 m 2 - 464 32.4697265625 465.780273438 26.3798828125 461.75 24.41015625 c 2 - 267.349609375 -63.25 l 2 - 262.049804688 -65.7001953125 256 -61.830078125 256 -55.990234375 c 2 - 256 9.6796875 l 1 - 459.549804688 31.9697265625 l 2 -373.25 232.940429688 m 1 - 478.809570312 77.0498046875 l 2 - 481.889648438 72.0498046875 478.709960938 65.5595703125 472.879882812 64.91015625 c 2 - 264.620117188 42.83984375 l 1 - 373.25 232.940429688 l 1 -240 240 m 1 - 340.4296875 240 l 1 - 240 64.25 l 1 - 139.5703125 240 l 1 - 240 240 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" d i c e hyphen d two zero -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D I C E hyphen D two zero -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D i c e hyphen D two zero -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D i c e hyphen d two zero -EndChar - -StartChar: dice-d6 -Encoding: 63185 63185 888 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -422.190429688 338.049804688 m 2 - 427.51953125 334.809570312 427.490234375 326.780273438 422.139648438 323.58984375 c 2 - 224 205.450195312 l 1 - 25.8701171875 323.58984375 l 2 - 20.51953125 326.780273438 20.490234375 334.8203125 25.8095703125 338.049804688 c 2 - 191.780273438 438.9296875 l 2 - 211.690429688 451.030273438 236.299804688 451.030273438 256.209960938 438.9296875 c 2 - 422.190429688 338.049804688 l 2 -436.030273438 293.419921875 m 2 - 441.360351562 296.599609375 448 292.580078125 448 286.169921875 c 2 - 448 88.4697265625 l 2 - 448 64.7099609375 435.889648438 42.73046875 416.209960938 30.76953125 c 2 - 264.049804688 -61.7099609375 l 2 - 253.389648438 -68.1904296875 240 -60.16015625 240 -47.2802734375 c 2 - 240 176.540039062 l 1 - 436.030273438 293.419921875 l 2 -0 286.169921875 m 2 - 0 292.580078125 6.6396484375 296.599609375 11.9697265625 293.419921875 c 2 - 208 176.540039062 l 1 - 208 -47.26953125 l 2 - 208 -60.16015625 194.620117188 -68.1796875 183.950195312 -61.7001953125 c 2 - 31.7900390625 30.76953125 l 2 - 12.1103515625 42.73046875 0 64.7001953125 0 88.4697265625 c 2 - 0 286.169921875 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" d i c e hyphen d six -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" D i c e hyphen d six -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" D I C E hyphen D six -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" D i c e hyphen D six -EndChar - -StartChar: dog -Encoding: 63187 63187 889 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 352 m 2 - 504.83984375 352 512 344.83984375 512 336 c 2 - 512 304 l 2 - 512 268.650390625 483.349609375 240 448 240 c 2 - 416 240 l 1 - 416 204.419921875 l 1 - 288 250.129882812 l 1 - 288 399.969726562 l 2 - 288 414.219726562 305.23046875 421.360351562 315.3203125 411.280273438 c 2 - 342.599609375 384 l 1 - 396.219726562 384 l 2 - 407.13671875 383.999023438 419.958007812 376.07421875 424.83984375 366.309570312 c 2 - 432 352 l 1 - 496 352 l 2 -384 304 m 0 - 392.83984375 304 400 311.16015625 400 320 c 0 - 400 328.83984375 392.83984375 336 384 336 c 0 - 375.16015625 336 368 328.83984375 368 320 c 0 - 368 311.16015625 375.16015625 304 384 304 c 0 -96 224 m 2 - 266.049804688 224 l 1 - 416 170.450195312 l 1 - 416 -48 l 2 - 416 -56.83984375 408.83984375 -64 400 -64 c 2 - 336 -64 l 2 - 327.16015625 -64 320 -56.83984375 320 -48 c 2 - 320 64 l 1 - 160 64 l 1 - 160 -48 l 2 - 160 -56.83984375 152.83984375 -64 144 -64 c 2 - 80 -64 l 2 - 71.16015625 -64 64 -56.83984375 64 -48 c 2 - 64 165.900390625 l 1 - 26.830078125 179.150390625 0 214.33984375 0 256 c 0 - 0 273.669921875 14.330078125 288 32 288 c 0 - 49.669921875 288 64 273.669921875 64 256 c 0 - 64 238.360351562 78.3603515625 224 96 224 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" d o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" D o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" D O G -EndChar - -StartChar: dragon -Encoding: 63189 63189 890 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -18.3203125 192.219726562 m 2 - 2.3603515625 189.940429688 -6.5703125 210.030273438 5.8095703125 220.360351562 c 2 - 123.209960938 336.700195312 l 2 - 144.98046875 355.299804688 176.450195312 357.169921875 200.26953125 341.290039062 c 2 - 320 253.690429688 l 1 - 320 211.419921875 l 2 - 320 182.509765625 325.290039062 154.440429688 334.73046875 128.040039062 c 1 - 112.030273438 128.040039062 l 2 - 97.7802734375 128.040039062 90.6396484375 145.26953125 100.719726562 155.349609375 c 2 - 192 224.040039062 l 1 - 18.3203125 192.219726562 l 2 -575.190429688 158.120117188 m 2 - 617.099609375 137.16015625 642.349609375 94.0400390625 639.830078125 46.759765625 c 0 - 636.450195312 -16.4404296875 580.129882812 -64.009765625 516.83984375 -64 c 2 - 17.759765625 -64 l 2 - 7.9501953125 -64 0 -56 0 -46.2001953125 c 0 - 0 -37.8798828125 5.7802734375 -30.669921875 13.900390625 -28.8701171875 c 0 - 103.440429688 -8.9697265625 252.41015625 25.23046875 448 32.0400390625 c 1 - 388.030273438 72.0302734375 352 139.33984375 352 211.419921875 c 2 - 352 320.040039062 l 1 - 292.419921875 344.889648438 l 2 - 286.51953125 347.83984375 286.51953125 356.25 292.419921875 359.200195312 c 2 - 352 384.040039062 l 1 - 290.360351562 434.389648438 l 2 - 285.3203125 439.4296875 288.889648438 448 296.01953125 448 c 2 - 533.469726562 448 l 2 - 543.540039062 448 553.01953125 443.299804688 559.0703125 435.240234375 c 2 - 633.599609375 335.860351562 l 2 - 637.131835938 331.149414062 639.998046875 322.548828125 639.998046875 316.661132812 c 0 - 639.998046875 312.491210938 638.484375 306.080078125 636.620117188 302.349609375 c 2 - 622.309570312 273.73046875 l 2 - 617.428710938 263.965820312 604.606445312 256.041015625 593.690429688 256.040039062 c 2 - 562.719726562 256.040039062 l 2 - 554.23046875 256.040039062 546.08984375 259.41015625 540.08984375 265.41015625 c 2 - 512 288.040039062 l 1 - 448 288.040039062 l 1 - 448 251.349609375 l 2 - 448.001953125 234.979492188 459.887695312 215.750976562 474.530273438 208.4296875 c 2 - 575.190429688 158.120117188 l 2 -489.1796875 381.75 m 1 - 484.849609375 364.610351562 497.740234375 352.790039062 510.700195312 352.080078125 c 0 - 522.360351562 351.450195312 532.080078125 359.4296875 534.830078125 370.33984375 c 1 - 489.1796875 381.75 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" d r a g o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" D r a g o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" D R A G O N -EndChar - -StartChar: drumstick-bite -Encoding: 63191 63191 891 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -462.799804688 398.4296875 m 0 - 497.120117188 364.150390625 513.23046875 318.830078125 511.9296875 273.870117188 c 1 - 469.950195312 296.530273438 417.5703125 291.4296875 383.190429688 257.0703125 c 0 - 342.309570312 216.23046875 342.5 149.889648438 382.139648438 106 c 1 - 365.901367188 100.477539062 338.80078125 95.9951171875 321.6484375 95.9951171875 c 0 - 321.262695312 95.9951171875 320.635742188 95.9970703125 320.25 96 c 2 - 234.360351562 96 l 1 - 193.75 55.4404296875 l 2 - 184.030273438 45.6904296875 182.66015625 31.419921875 187.75 18.6904296875 c 0 - 190.134765625 12.7314453125 192.0703125 2.685546875 192.0703125 -3.732421875 c 0 - 192.0703125 -37.0458984375 165.033203125 -64.08203125 131.719726562 -64.08203125 c 0 - 117.876953125 -64.08203125 98.7158203125 -56.1201171875 88.9501953125 -46.3095703125 c 0 - 73.669921875 -31.0400390625 69.349609375 -9.8095703125 73.849609375 9.7900390625 c 1 - 54.240234375 5.2998046875 33 9.6103515625 17.73046875 24.8603515625 c 0 - 7.958984375 34.6171875 0.0283203125 53.7431640625 0.0283203125 67.5517578125 c 0 - 0.0283203125 100.853515625 27.0556640625 127.881835938 60.3583984375 127.881835938 c 0 - 66.7607421875 127.881835938 76.783203125 125.954101562 82.73046875 123.580078125 c 0 - 95.509765625 118.509765625 109.809570312 119.889648438 119.509765625 129.580078125 c 2 - 160.129882812 170.169921875 l 1 - 160.129882812 256 l 2 - 160.129882812 320 187.8203125 363 223.299804688 398.4296875 c 0 - 250.688476562 425.790039062 304.336914062 447.99609375 343.049804688 447.99609375 c 0 - 381.763671875 447.99609375 435.411132812 425.790039062 462.799804688 398.4296875 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" d r u m s t i c k hyphen b i t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" D r u m s t i c k hyphen B i t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" D r u m s t i c k hyphen b i t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" D R U M S T I C K hyphen B I T E -EndChar - -StartChar: dungeon -Encoding: 63193 63193 892 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128.73046875 252.6796875 m 2 - 135.3203125 248.559570312 137.629882812 240.440429688 135.0703125 233.099609375 c 0 - 132.0703125 224.490234375 129.919921875 215.490234375 128.830078125 206.16015625 c 0 - 127.900390625 198.25 121.780273438 192 113.8203125 192 c 2 - 16.6904296875 192 l 2 - 7.58984375 192 -0.0498046875 199.629882812 0.5400390625 208.719726562 c 0 - 2.2001953125 234.499023438 12.2578125 274.4921875 22.990234375 297.990234375 c 0 - 26.9296875 306.610351562 37.8798828125 309.459960938 45.919921875 304.440429688 c 2 - 128.73046875 252.6796875 l 2 -319.030273438 440 m 0 - 328.200195312 437.639648438 332.940429688 427.400390625 329.419921875 418.610351562 c 2 - 291.950195312 314.580078125 l 2 - 289.669921875 308.23046875 283.650390625 304 276.900390625 304 c 2 - 235.099609375 304 l 2 - 228.895507812 304.001953125 222.15234375 308.7421875 220.049804688 314.580078125 c 2 - 182.580078125 418.610351562 l 2 - 179.059570312 427.400390625 183.799804688 437.650390625 192.969726562 440 c 0 - 213.139648438 445.1796875 234.23046875 448 256 448 c 0 - 277.76953125 448 298.860351562 445.1796875 319.030273438 440 c 0 -112 160 m 2 - 120.83984375 160 128 152.83984375 128 144 c 2 - 128 80 l 2 - 128 71.16015625 120.83984375 64 112 64 c 2 - 16 64 l 2 - 7.16015625 64 0 71.16015625 0 80 c 2 - 0 144 l 2 - 0 152.83984375 7.16015625 160 16 160 c 2 - 112 160 l 2 -112 32 m 2 - 120.83984375 32 128 24.83984375 128 16 c 2 - 128 -48 l 2 - 128 -56.83984375 120.83984375 -64 112 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 16 l 2 - 0 24.83984375 7.16015625 32 16 32 c 2 - 112 32 l 2 -189.309570312 315.669921875 m 2 - 192.16015625 308.549804688 189.290039062 300.790039062 183.009765625 296.379882812 c 0 - 177.009765625 292.1796875 171.400390625 287.48046875 166.219726562 282.330078125 c 0 - 160.76953125 276.919921875 152.620117188 275.469726562 146.110351562 279.540039062 c 2 - 63.1796875 331.370117188 l 2 - 55.1103515625 336.41015625 52.900390625 347.5703125 58.9599609375 354.889648438 c 0 - 75.6748046875 375.065429688 107.756835938 401.896484375 130.5703125 414.780273438 c 0 - 138.860351562 419.459960938 149.459960938 415.299804688 152.990234375 406.469726562 c 2 - 189.309570312 315.669921875 l 2 -398.1796875 192 m 2 - 390.219726562 192 384.099609375 198.25 383.169921875 206.16015625 c 0 - 382.080078125 215.48046875 379.940429688 224.490234375 376.9296875 233.099609375 c 0 - 374.370117188 240.440429688 376.6796875 248.559570312 383.26953125 252.6796875 c 2 - 466.080078125 304.440429688 l 2 - 474.120117188 309.459960938 485.0703125 306.610351562 489.009765625 297.990234375 c 0 - 499.743164062 274.4921875 509.80078125 234.5 511.459960938 208.719726562 c 0 - 512.049804688 199.629882812 504.41015625 192 495.309570312 192 c 2 - 398.1796875 192 l 2 -453.030273438 354.889648438 m 0 - 459.099609375 347.5703125 456.879882812 336.41015625 448.809570312 331.379882812 c 2 - 365.879882812 279.549804688 l 2 - 359.370117188 275.48046875 351.209960938 276.9296875 345.76953125 282.33984375 c 0 - 340.58984375 287.490234375 334.98046875 292.190429688 328.98046875 296.389648438 c 0 - 322.700195312 300.790039062 319.830078125 308.549804688 322.6796875 315.669921875 c 2 - 359 406.469726562 l 2 - 362.540039062 415.299804688 373.139648438 419.459960938 381.419921875 414.780273438 c 0 - 404.233398438 401.896484375 436.314453125 375.065429688 453.030273438 354.889648438 c 0 -496 160 m 2 - 504.83984375 160 512 152.83984375 512 144 c 2 - 512 80 l 2 - 512 71.16015625 504.83984375 64 496 64 c 2 - 400 64 l 2 - 391.16015625 64 384 71.16015625 384 80 c 2 - 384 144 l 2 - 384 152.83984375 391.16015625 160 400 160 c 2 - 496 160 l 2 -496 32 m 2 - 504.83984375 32 512 24.83984375 512 16 c 2 - 512 -48 l 2 - 512 -56.83984375 504.83984375 -64 496 -64 c 2 - 400 -64 l 2 - 391.16015625 -64 384 -56.83984375 384 -48 c 2 - 384 16 l 2 - 384 24.83984375 391.16015625 32 400 32 c 2 - 496 32 l 2 -240 270.379882812 m 1 - 245.23046875 271.26953125 250.51953125 272 256 272 c 0 - 261.48046875 272 266.76953125 271.26953125 272 270.379882812 c 1 - 272 -24 l 2 - 272 -28.419921875 268.419921875 -32 264 -32 c 2 - 248 -32 l 2 - 243.580078125 -32 240 -28.419921875 240 -24 c 2 - 240 270.379882812 l 1 -176 228.870117188 m 1 - 184.16015625 241.169921875 195.219726562 251.190429688 208 258.639648438 c 1 - 208 -24 l 2 - 208 -28.419921875 204.419921875 -32 200 -32 c 2 - 184 -32 l 2 - 179.580078125 -32 176 -28.419921875 176 -24 c 2 - 176 228.870117188 l 1 -304 258.639648438 m 1 - 316.780273438 251.190429688 327.83984375 241.169921875 336 228.870117188 c 1 - 336 -24 l 2 - 336 -28.419921875 332.419921875 -32 328 -32 c 2 - 312 -32 l 2 - 307.580078125 -32 304 -28.419921875 304 -24 c 2 - 304 258.639648438 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" d u n g e o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" D u n g e o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" D U N G E O N -EndChar - -StartChar: file-csv -Encoding: 63197 63197 893 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -224 312 m 2 - 224 298.799804688 234.799804688 288 248 288 c 2 - 384 288 l 1 - 384 -40 l 2 - 384 -53.2998046875 373.299804688 -64 360 -64 c 2 - 24 -64 l 2 - 10.7001953125 -64 0 -53.2998046875 0 -40 c 2 - 0 424 l 2 - 0 437.299804688 10.7001953125 448 24 448 c 2 - 224 448 l 1 - 224 312 l 2 -128 168 m 2 - 128 184 l 2 - 128 188.419921875 124.419921875 192 120 192 c 2 - 112 192 l 2 - 85.490234375 192 64 170.509765625 64 144 c 2 - 64 112 l 2 - 64 85.490234375 85.490234375 64 112 64 c 2 - 120 64 l 2 - 124.419921875 64 128 67.580078125 128 72 c 2 - 128 88 l 2 - 128 92.419921875 124.419921875 96 120 96 c 2 - 112 96 l 2 - 103.16015625 96 96 103.16015625 96 112 c 2 - 96 144 l 2 - 96 152.83984375 103.16015625 160 112 160 c 2 - 120 160 l 2 - 124.419921875 160 128 163.580078125 128 168 c 2 -172.26953125 64 m 2 - 195.66015625 64 214.669921875 81.330078125 214.66015625 102.620117188 c 0 - 214.66015625 113.280273438 209.799804688 123.540039062 201.330078125 130.759765625 c 2 - 179.440429688 149.530273438 l 2 - 178.0703125 150.709960938 177.3203125 152.0703125 177.3203125 153.370117188 c 0 - 177.3203125 156.490234375 181.780273438 159.990234375 187.73046875 159.990234375 c 2 - 200 159.990234375 l 2 - 204.419921875 159.990234375 208 163.5703125 208 167.990234375 c 2 - 208 183.990234375 l 2 - 208 188.41015625 204.419921875 191.990234375 200 191.990234375 c 2 - 187.75 191.990234375 l 2 - 164.360351562 191.990234375 145.33984375 174.669921875 145.33984375 153.370117188 c 0 - 145.33984375 142.709960938 150.200195312 132.450195312 158.669921875 125.23046875 c 2 - 180.559570312 106.459960938 l 2 - 181.9296875 105.280273438 182.6796875 103.919921875 182.6796875 102.620117188 c 0 - 182.6796875 99.5 178.219726562 96 172.26953125 96 c 2 - 160 96 l 2 - 155.580078125 96 152 92.419921875 152 88 c 2 - 152 72 l 2 - 152 67.580078125 155.580078125 64 160 64 c 2 - 172.26953125 64 l 2 -256 184 m 2 - 256 188.419921875 252.419921875 192 248 192 c 2 - 232 192 l 2 - 227.580078125 192 224 188.419921875 224 184 c 2 - 224 163.200195312 l 2 - 224 127.719726562 236.879882812 94.3095703125 260.280273438 69.1103515625 c 0 - 263.299804688 65.8603515625 267.549804688 64 272 64 c 0 - 276.450195312 64 280.700195312 65.8603515625 283.719726562 69.1103515625 c 0 - 307.120117188 94.3095703125 320 127.719726562 320 163.200195312 c 2 - 320 184 l 2 - 320 188.419921875 316.419921875 192 312 192 c 2 - 296 192 l 2 - 291.580078125 192 288 188.419921875 288 184 c 2 - 288 163.200195312 l 2 - 288 142.9296875 282.299804688 123.01953125 272 106.3203125 c 1 - 261.700195312 123.030273438 256 142.9296875 256 163.200195312 c 2 - 256 184 l 2 -377 343 m 2 - 381.5 338.5 384 332.400390625 384 326.099609375 c 2 - 384 320 l 1 - 256 320 l 1 - 256 448 l 1 - 262.099609375 448 l 2 - 268.5 448 274.599609375 445.5 279.099609375 441 c 2 - 377 343 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" f i l e hyphen c s v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" F i l e hyphen C s v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" F i l e hyphen c s v -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" F I L E hyphen C S V -EndChar - -StartChar: fist-raised -Encoding: 63198 63198 894 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -255.98046875 288 m 1 - 207.950195312 288 l 2 - 202.3203125 288 197 286.849609375 191.98046875 285.0703125 c 1 - 191.98046875 432 l 2 - 191.98046875 440.83984375 199.139648438 448 207.98046875 448 c 2 - 239.98046875 448 l 2 - 248.8203125 448 255.98046875 440.83984375 255.98046875 432 c 2 - 255.98046875 288 l 1 -383.98046875 192.009765625 m 2 - 384 103.790039062 l 1 - 384 103.779296875 l 2 - 384 81.82421875 371.40234375 51.40625 355.879882812 35.8798828125 c 2 - 319.969726562 -0.0400390625 l 1 - 319.969726562 -64 l 1 - 63.990234375 -64 l 1 - 63.990234375 0 l 1 - 37.490234375 26.509765625 l 2 - 13.48046875 50.51953125 0 83.0703125 0 117.01953125 c 2 - 0 194.950195312 l 1 - 5.0302734375 193.150390625 10.3603515625 192 16 192 c 2 - 48 192 l 2 - 60.330078125 192 71.48046875 196.809570312 80 204.490234375 c 1 - 88.509765625 196.8203125 99.66015625 192.009765625 112 192.009765625 c 2 - 144 192.009765625 l 2 - 151.91015625 192.009765625 159.280273438 194.120117188 165.870117188 197.530273438 c 1 - 173.33984375 181.200195312 187.469726562 168.58984375 204.740234375 163.080078125 c 1 - 187.629882812 148.259765625 173.16015625 128.599609375 157.4296875 105 c 2 - 151.120117188 95.5302734375 l 2 - 150.377929688 94.41796875 149.776367188 92.4306640625 149.776367188 91.09375 c 0 - 149.776367188 88.73046875 151.373046875 85.75 153.33984375 84.4404296875 c 2 - 166.650390625 75.5595703125 l 2 - 167.76171875 74.818359375 169.749023438 74.2158203125 171.0859375 74.2158203125 c 0 - 173.44921875 74.2158203125 176.430664062 75.8125 177.740234375 77.7802734375 c 2 - 184.049804688 87.25 l 2 - 215.940429688 135.08984375 235.580078125 157.51953125 280.099609375 159.799804688 c 0 - 284.389648438 160.01953125 287.98046875 163.509765625 287.98046875 167.799804688 c 2 - 287.98046875 184 l 2 - 287.98046875 188.419921875 284.459960938 192 274.780273438 192 c 2 - 239.51953125 192 l 2 - 213.25 192 191.950195312 213.3203125 191.950195312 239.58984375 c 2 - 191.950195312 240.150390625 l 2 - 191.950195312 248.9296875 199.0703125 256 207.849609375 256 c 2 - 319.990234375 256 l 2 - 355.3203125 256 383.969726562 227.349609375 383.98046875 192.009765625 c 2 -351.969726562 282.099609375 m 1 - 341.91015625 285.690429688 331.25 288 319.969726562 288 c 2 - 287.969726562 288 l 1 - 287.969726562 400 l 2 - 287.969726562 408.83984375 295.129882812 416 303.969726562 416 c 2 - 335.969726562 416 l 2 - 344.809570312 416 351.969726562 408.83984375 351.969726562 400 c 2 - 351.969726562 282.099609375 l 1 -16 224 m 2 - 7.16015625 224 0 231.16015625 0 240 c 2 - 0 368 l 2 - 0 376.83984375 7.16015625 384 16 384 c 2 - 48 384 l 2 - 56.83984375 384 64 376.83984375 64 368 c 2 - 64 240 l 2 - 64 231.16015625 56.83984375 224 48 224 c 2 - 16 224 l 2 -111.990234375 224 m 2 - 103.150390625 224 95.990234375 231.16015625 95.990234375 240 c 2 - 95.990234375 400 l 2 - 95.990234375 408.83984375 103.150390625 416 111.990234375 416 c 2 - 143.990234375 416 l 2 - 152.830078125 416 159.990234375 408.83984375 159.990234375 400 c 2 - 159.990234375 240 l 2 - 159.990234375 231.16015625 152.830078125 224 143.990234375 224 c 2 - 111.990234375 224 l 2 -EndSplineSet -Validated: 524805 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" f i s t hyphen r a i s e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" F I S T hyphen R A I S E D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" F i s t hyphen R a i s e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" F i s t hyphen r a i s e d -EndChar - -StartChar: ghost -Encoding: 63202 63202 895 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -186.099609375 447.91015625 m 0 - 294.830078125 451.169921875 384 364 384 256 c 2 - 384 -15.9697265625 l 2 - 384 -30.2197265625 366.76953125 -37.3603515625 356.690429688 -27.2802734375 c 2 - 331.76953125 -8.75 l 2 - 325.110351562 -3.7900390625 315.76953125 -4.759765625 310.259765625 -10.9599609375 c 2 - 267.309570312 -59.3095703125 l 2 - 261.059570312 -65.5595703125 250.9296875 -65.5595703125 244.6796875 -59.3095703125 c 2 - 203.959960938 -13.4599609375 l 2 - 197.599609375 -6.2900390625 186.41015625 -6.2900390625 180.040039062 -13.4599609375 c 2 - 139.3203125 -59.3095703125 l 2 - 133.0703125 -65.5595703125 122.940429688 -65.5595703125 116.690429688 -59.3095703125 c 2 - 73.740234375 -10.9599609375 l 2 - 68.23046875 -4.759765625 58.8896484375 -3.7998046875 52.23046875 -8.75 c 2 - 27.3095703125 -27.2802734375 l 2 - 17.23046875 -37.3603515625 0 -30.23046875 0 -15.9697265625 c 2 - 0 247.950195312 l 2 - 0 353.080078125 81.009765625 444.759765625 186.099609375 447.91015625 c 0 -128 224 m 0 - 145.669921875 224 160 238.330078125 160 256 c 0 - 160 273.669921875 145.669921875 288 128 288 c 0 - 110.330078125 288 96 273.669921875 96 256 c 0 - 96 238.330078125 110.330078125 224 128 224 c 0 -256 224 m 0 - 273.669921875 224 288 238.330078125 288 256 c 0 - 288 273.669921875 273.669921875 288 256 288 c 0 - 238.330078125 288 224 273.669921875 224 256 c 0 - 224 238.330078125 238.330078125 224 256 224 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" g h o s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" G h o s t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" G H O S T -EndChar - -StartChar: hammer -Encoding: 63203 63203 896 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -571.309570312 254.059570312 m 2 - 577.559570312 247.809570312 577.559570312 237.6796875 571.330078125 231.440429688 c 2 - 480.8203125 140.9296875 l 2 - 474.5703125 134.6796875 464.440429688 134.6796875 458.190429688 140.9296875 c 2 - 435.559570312 163.559570312 l 2 - 429.309570312 169.809570312 429.309570312 179.940429688 435.559570312 186.190429688 c 2 - 446.870117188 197.5 l 1 - 417.969726562 226.400390625 l 1 - 396.66015625 220.76953125 373.0703125 226.040039062 356.360351562 242.75 c 2 - 307.219726562 291.889648438 l 2 - 295.209960938 303.889648438 288.469726562 320.169921875 288.469726562 337.139648438 c 2 - 288.469726562 355.889648438 l 1 - 197.959960938 401.139648438 l 1 - 260.450195312 463.620117188 361.759765625 463.620117188 424.240234375 401.139648438 c 2 - 469.490234375 355.889648438 l 2 - 486.200195312 339.1796875 491.469726562 315.58984375 485.83984375 294.280273438 c 1 - 514.740234375 265.379882812 l 1 - 526.049804688 276.690429688 l 2 - 532.299804688 282.940429688 542.4296875 282.940429688 548.6796875 276.690429688 c 2 - 571.309570312 254.059570312 l 2 -284.58984375 269.259765625 m 2 - 333.73046875 220.120117188 l 2 - 337.26953125 216.580078125 341.209960938 213.620117188 345.169921875 210.709960938 c 1 - 107.040039062 -44.3603515625 l 2 - 83.16015625 -69.9404296875 42.83984375 -70.6298828125 18.1103515625 -45.8896484375 c 0 - -6.6201171875 -21.150390625 -5.9296875 19.16015625 19.6396484375 43.0400390625 c 2 - 274.740234375 281.209960938 l 1 - 277.75 277.049804688 280.889648438 272.959960938 284.58984375 269.259765625 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" h a m m e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" H a m m e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" H A M M E R -EndChar - -StartChar: hanukiah -Encoding: 63206 63206 897 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -232 288 m 2 - 248 288 l 2 - 252.419921875 288 256 284.419921875 256 280 c 2 - 256 160 l 1 - 224 160 l 1 - 224 280 l 2 - 224 284.419921875 227.580078125 288 232 288 c 2 -168 288 m 2 - 184 288 l 2 - 188.419921875 288 192 284.419921875 192 280 c 2 - 192 160 l 1 - 160 160 l 1 - 160 280 l 2 - 160 284.419921875 163.580078125 288 168 288 c 2 -392 288 m 2 - 408 288 l 2 - 412.419921875 288 416 284.419921875 416 280 c 2 - 416 160 l 1 - 384 160 l 1 - 384 280 l 2 - 384 284.419921875 387.580078125 288 392 288 c 2 -456 288 m 2 - 472 288 l 2 - 476.419921875 288 480 284.419921875 480 280 c 2 - 480 160 l 1 - 448 160 l 1 - 448 280 l 2 - 448 284.419921875 451.580078125 288 456 288 c 2 -544 280 m 2 - 544 160 l 1 - 512 160 l 1 - 512 280 l 2 - 512 284.419921875 515.580078125 288 520 288 c 2 - 536 288 l 2 - 540.419921875 288 544 284.419921875 544 280 c 2 -104 288 m 2 - 120 288 l 2 - 124.419921875 288 128 284.419921875 128 280 c 2 - 128 160 l 1 - 96 160 l 1 - 96 280 l 2 - 96 284.419921875 99.580078125 288 104 288 c 2 -624 288 m 2 - 632.83984375 288 640 280.83984375 640 272 c 2 - 640 160 l 2 - 640 106.98046875 597.01953125 64 544 64 c 2 - 352 64 l 1 - 352 0 l 1 - 528 0 l 2 - 536.83984375 0 544 -7.16015625 544 -16 c 2 - 544 -48 l 2 - 544 -56.83984375 536.83984375 -64 528 -64 c 2 - 112 -64 l 2 - 103.16015625 -64 96 -56.83984375 96 -48 c 2 - 96 -16 l 2 - 96 -7.16015625 103.16015625 0 112 0 c 2 - 288 0 l 1 - 288 64 l 1 - 96 64 l 2 - 42.98046875 64 0 106.98046875 0 160 c 2 - 0 272 l 2 - 0 280.83984375 7.16015625 288 16 288 c 2 - 48 288 l 2 - 56.83984375 288 64 280.83984375 64 272 c 2 - 64 160 l 2 - 64 142.330078125 78.330078125 128 96 128 c 2 - 288 128 l 1 - 288 320 l 2 - 288 328.83984375 295.16015625 336 304 336 c 2 - 336 336 l 2 - 344.83984375 336 352 328.83984375 352 320 c 2 - 352 128 l 1 - 544 128 l 2 - 561.669921875 128 576 142.330078125 576 160 c 2 - 576 272 l 2 - 576 280.83984375 583.16015625 288 592 288 c 2 - 624 288 l 2 -608 320 m 0 - 594.75 320 584 331.950195312 584 346.669921875 c 0 - 584 361.389648438 608 400 608 400 c 1 - 608 400 632 361.400390625 632 346.669921875 c 0 - 632 331.940429688 621.25 320 608 320 c 0 -32 320 m 0 - 18.75 320 8 331.950195312 8 346.669921875 c 0 - 8 361.389648438 32 400 32 400 c 1 - 32 400 56 361.400390625 56 346.669921875 c 0 - 56 331.940429688 45.25 320 32 320 c 0 -320 368 m 0 - 306.75 368 296 379.950195312 296 394.669921875 c 0 - 296 409.389648438 320 448 320 448 c 1 - 320 448 344 409.400390625 344 394.669921875 c 0 - 344 379.940429688 333.25 368 320 368 c 0 -112 320 m 0 - 98.75 320 88 331.950195312 88 346.669921875 c 0 - 88 361.389648438 112 400 112 400 c 1 - 112 400 136 361.400390625 136 346.669921875 c 0 - 136 331.940429688 125.25 320 112 320 c 0 -176 320 m 0 - 162.75 320 152 331.950195312 152 346.669921875 c 0 - 152 361.389648438 176 400 176 400 c 1 - 176 400 200 361.400390625 200 346.669921875 c 0 - 200 331.940429688 189.25 320 176 320 c 0 -240 320 m 0 - 226.75 320 216 331.950195312 216 346.669921875 c 0 - 216 361.389648438 240 400 240 400 c 1 - 240 400 264 361.400390625 264 346.669921875 c 0 - 264 331.940429688 253.25 320 240 320 c 0 -400 320 m 0 - 386.75 320 376 331.950195312 376 346.669921875 c 0 - 376 361.389648438 400 400 400 400 c 1 - 400 400 424 361.400390625 424 346.669921875 c 0 - 424 331.940429688 413.25 320 400 320 c 0 -464 320 m 0 - 450.75 320 440 331.950195312 440 346.669921875 c 0 - 440 361.389648438 464 400 464 400 c 1 - 464 400 488 361.400390625 488 346.669921875 c 0 - 488 331.940429688 477.25 320 464 320 c 0 -528 320 m 0 - 514.75 320 504 331.950195312 504 346.669921875 c 0 - 504 361.389648438 528 400 528 400 c 1 - 528 400 552 361.400390625 552 346.669921875 c 0 - 552 331.940429688 541.25 320 528 320 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" h a n u k i a h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" H a n u k i a h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" H A N U K I A H -EndChar - -StartChar: hat-wizard -Encoding: 63208 63208 898 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 0 m 2 - 504.83984375 0 512 -7.16015625 512 -16 c 2 - 512 -48 l 2 - 512 -56.83984375 504.83984375 -64 496 -64 c 2 - 16 -64 l 2 - 7.16015625 -64 0 -56.83984375 0 -48 c 2 - 0 -16 l 2 - 0 -7.16015625 7.16015625 0 16 0 c 2 - 496 0 l 2 -192 64 m 1 - 208 32 l 1 - 64 32 l 1 - 174.959960938 281.66015625 l 2 - 184.364257812 302.821289062 208.314453125 329.321289062 228.419921875 340.809570312 c 2 - 416 448 l 1 - 359.700195312 279.080078125 l 2 - 357.884765625 273.640625 356.412109375 264.572265625 356.412109375 258.838867188 c 0 - 356.412109375 251.587890625 358.731445312 240.293945312 361.58984375 233.629882812 c 2 - 448 32 l 1 - 240 32 l 1 - 256 64 l 1 - 320 96 l 1 - 256 128 l 1 - 224 192 l 1 - 192 128 l 1 - 128 96 l 1 - 192 64 l 1 -256 288 m 1 - 224 272 l 1 - 256 256 l 1 - 272 224 l 1 - 288 256 l 1 - 320 272 l 1 - 288 288 l 1 - 272 320 l 1 - 256 288 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" h a t hyphen w i z a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H A T hyphen W I Z A R D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H a t hyphen W i z a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H a t hyphen w i z a r d -EndChar - -StartChar: hiking -Encoding: 63212 63212 899 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -80.9501953125 -24.23046875 m 2 - 115.509765625 113.990234375 l 1 - 168.290039062 61.2099609375 l 1 - 143.049804688 -39.759765625 l 2 - 139.400390625 -54.2900390625 126.360351562 -63.990234375 112.030273438 -63.990234375 c 0 - 109.450195312 -63.990234375 106.83984375 -63.7001953125 104.23046875 -63.0400390625 c 0 - 87.08984375 -58.759765625 76.669921875 -41.3896484375 80.9501953125 -24.23046875 c 2 -95.83984375 171.889648438 m 2 - 93.650390625 163.469726562 84.759765625 158.349609375 75.9697265625 160.450195312 c 2 - 12.41015625 175.700195312 l 2 - 3.6298828125 177.809570312 -1.7001953125 186.33984375 0.490234375 194.759765625 c 2 - 25.759765625 292.889648438 l 2 - 36.73046875 334.990234375 81.2001953125 360.580078125 125.080078125 350.059570312 c 0 - 133.860351562 347.950195312 139.190429688 339.419921875 137 331 c 2 - 95.83984375 171.889648438 l 2 -368 288 m 2 - 376.83984375 288 384 280.83984375 383.990234375 272 c 2 - 383.990234375 -48.009765625 l 2 - 383.990234375 -56.849609375 376.830078125 -64.009765625 367.990234375 -64.009765625 c 2 - 351.990234375 -64.009765625 l 2 - 343.150390625 -64.009765625 335.990234375 -56.849609375 335.990234375 -48.009765625 c 2 - 335.990234375 191.990234375 l 1 - 287.990234375 191.990234375 l 2 - 279.509765625 191.990234375 271.370117188 195.370117188 265.370117188 201.370117188 c 2 - 242.940429688 223.799804688 l 1 - 223.049804688 144.23046875 l 2 - 222.919921875 143.709960938 222.580078125 143.3203125 222.4296875 142.8203125 c 2 - 269.25 96 l 2 - 281.33984375 83.91015625 288 67.83984375 288 50.75 c 2 - 288 -32 l 2 - 288 -49.669921875 273.669921875 -64 256 -64 c 0 - 238.330078125 -64 224 -49.669921875 224 -32 c 2 - 224 50.75 l 1 - 137.379882812 137.370117188 l 2 - 132.206054688 142.544921875 128.005859375 152.685546875 128.005859375 160.00390625 c 0 - 128.005859375 162.176757812 128.43359375 165.651367188 128.959960938 167.759765625 c 2 - 155.879882812 275.48046875 l 2 - 162.440429688 301.700195312 185.889648438 320 212.91015625 320 c 0 - 228.610351562 320 243.379882812 313.889648438 254.469726562 302.780273438 c 2 - 301.25 256 l 1 - 336 256 l 1 - 336 272 l 2 - 336 280.83984375 343.16015625 288 352 288 c 2 - 368 288 l 2 -240 352 m 0 - 213.490234375 352 192 373.490234375 192 400 c 0 - 192 426.509765625 213.490234375 448 240 448 c 0 - 266.509765625 448 288 426.509765625 288 400 c 0 - 288 373.490234375 266.509765625 352 240 352 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" h i k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" H i k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" H I K I N G -EndChar - -StartChar: hippo -Encoding: 63213 63213 900 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -581.120117188 351.799804688 m 0 - 615.209960938 351.610351562 640 318.110351562 640 284.01953125 c 2 - 640 192 l 2 - 640 174.330078125 625.669921875 160 608 160 c 1 - 608 128 l 2 - 608 119.16015625 600.83984375 112 592 112 c 2 - 560 112 l 2 - 551.16015625 112 544 119.16015625 544 128 c 2 - 544 160 l 1 - 416 160 l 1 - 416 -16 l 2 - 416 -24.83984375 408.83984375 -32 400 -32 c 2 - 336 -32 l 2 - 327.16015625 -32 320 -24.83984375 320 -16 c 2 - 320 54.7900390625 l 1 - 287.650390625 40.4296875 249.280273438 32 208 32 c 0 - 166.719726562 32 128.349609375 40.4296875 96 54.7900390625 c 1 - 96 -16 l 2 - 96 -24.83984375 88.83984375 -32 80 -32 c 2 - 16 -32 l 2 - 7.16015625 -32 0 -24.83984375 0 -16 c 2 - 0 224 l 2 - 0 312.360351562 85.9599609375 384 192 384 c 0 - 241.240234375 384 286.009765625 368.419921875 320 343.01953125 c 1 - 320 392 l 2 - 320 405.259765625 330.75 416 344 416 c 2 - 360 416 l 2 - 373.25 416 384 405.259765625 384 392 c 2 - 384 378.120117188 l 1 - 394.049804688 381.700195312 404.719726562 384 416 384 c 0 - 455.830078125 384 489.98046875 359.73046875 504.51953125 325.1796875 c 1 - 528.620117188 334.219726562 553.450195312 351.950195312 581.120117188 351.799804688 c 0 -448 272 m 0 - 456.83984375 272 464 279.16015625 464 288 c 0 - 464 296.83984375 456.83984375 304 448 304 c 0 - 439.16015625 304 432 296.83984375 432 288 c 0 - 432 279.16015625 439.16015625 272 448 272 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" h i p p o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" H i p p o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" H I P P O -EndChar - -StartChar: horse -Encoding: 63216 63216 901 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -575.919921875 371.400390625 m 2 - 575.98046875 293.690429688 l 1 - 575.98046875 293.661132812 l 2 - 575.98046875 281.700195312 566.965820312 268.389648438 555.860351562 263.950195312 c 2 - 523.309570312 250.9296875 l 2 - 507.870117188 244.75 490.26953125 251.4296875 482.8203125 266.299804688 c 2 - 463.919921875 304 l 1 - 447.919921875 311.110351562 l 1 - 447.919921875 208.639648438 l 2 - 447.9296875 208.419921875 448 208.219726562 448 208 c 0 - 448 177.530273438 435.740234375 149.969726562 416 129.780273438 c 1 - 416 -48 l 2 - 416 -56.83984375 408.83984375 -64 400 -64 c 2 - 336 -64 l 2 - 327.16015625 -64 320 -56.83984375 320 -48 c 2 - 320 102.400390625 l 1 - 186.030273438 124.73046875 l 1 - 162.190429688 61.1396484375 l 1 - 188.5 -44.1201171875 l 2 - 191.030273438 -54.2197265625 183.389648438 -64 172.98046875 -64 c 2 - 107.01953125 -64 l 1 - 107.018554688 -64 l 2 - 100.124023438 -64 93.17578125 -58.5703125 91.509765625 -51.8798828125 c 2 - 66.66015625 47.5302734375 l 2 - 65.603515625 51.7509765625 64.74609375 58.7080078125 64.74609375 63.0595703125 c 0 - 64.74609375 69.462890625 66.5712890625 79.5244140625 68.8203125 85.51953125 c 2 - 94.5400390625 154.120117188 l 1 - 75.83984375 171.639648438 64 196.360351562 64 224 c 0 - 64 226.629882812 64.5703125 229.099609375 64.7802734375 231.6796875 c 1 - 54.8701171875 224.389648438 48 213.219726562 48 200 c 2 - 48 144 l 2 - 48 135.16015625 40.83984375 128 32 128 c 2 - 16 128 l 2 - 7.16015625 128 0 135.16015625 0 144 c 2 - 0 200 l 2 - 0 248.530273438 39.4697265625 288 88 288 c 1 - 88 286.889648438 l 1 - 105.599609375 307.01953125 131.16015625 320 160 320 c 2 - 319.919921875 320 l 1 - 319.919921875 390.690429688 377.23046875 448 447.919921875 448 c 2 - 567.900390625 448 l 2 - 572.959960938 448 576.849609375 443.3203125 575.830078125 438.360351562 c 0 - 573.150390625 425.190429688 564.709960938 414.540039062 553.650390625 407.700195312 c 1 - 558.759765625 402.3203125 563.559570312 397.23046875 567.33984375 393.200195312 c 0 - 572.900390625 387.26953125 575.91015625 379.530273438 575.919921875 371.400390625 c 2 -511.919921875 352 m 0 - 520.759765625 352 527.919921875 359.16015625 527.919921875 368 c 0 - 527.919921875 376.83984375 520.759765625 384 511.919921875 384 c 0 - 503.080078125 384 495.919921875 376.83984375 495.919921875 368 c 0 - 495.919921875 359.16015625 503.080078125 352 511.919921875 352 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" h o r s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" H o r s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" H O R S E -EndChar - -StartChar: house-damage -Encoding: 63217 63217 902 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 333.040039062 m 1 - 506.740234375 140.099609375 l 2 - 508.280273438 138.719726562 510.299804688 138.059570312 512 136.900390625 c 2 - 512 -48 l 2 - 512 -56.83984375 504.83984375 -64 496 -64 c 2 - 319.809570312 -64 l 1 - 279.889648438 -8.75 l 1 - 384 55.25 l 1 - 235.950195312 192.030273438 l 1 - 296.110351562 72.8095703125 l 1 - 192 8.8095703125 l 1 - 229.23046875 -64 l 1 - 80 -64 l 2 - 71.16015625 -64 64 -56.83984375 64 -48 c 2 - 64 136.940429688 l 2 - 65.7802734375 138.150390625 67.849609375 138.830078125 69.4697265625 140.290039062 c 2 - 288 333.040039062 l 1 -570.690429688 211.719726562 m 2 - 577.26953125 205.8203125 577.809570312 195.700195312 571.91015625 189.129882812 c 2 - 550.509765625 165.309570312 l 2 - 544.599609375 158.740234375 534.48046875 158.200195312 527.91015625 164.099609375 c 2 - 298.58984375 366.370117188 l 2 - 292.540039062 371.700195312 283.469726562 371.700195312 277.419921875 366.370117188 c 2 - 48.099609375 164.08984375 l 2 - 41.51953125 158.1796875 31.400390625 158.73046875 25.5 165.299804688 c 2 - 4.099609375 189.120117188 l 2 - -1.8095703125 195.700195312 -1.259765625 205.809570312 5.3095703125 211.719726562 c 2 - 261.299804688 437.73046875 l 2 - 268.900390625 444.58984375 278.440429688 448.009765625 288 448 c 0 - 297.559570312 447.990234375 307.120117188 444.549804688 314.75 437.690429688 c 2 - 416 348.309570312 l 1 - 416 400 l 2 - 416 408.83984375 423.16015625 416 432 416 c 2 - 496 416 l 2 - 504.83984375 416 512 408.83984375 512 400 c 2 - 512 263.549804688 l 1 - 570.690429688 211.719726562 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" h o u s e hyphen d a m a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" H o u s e hyphen D a m a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" H o u s e hyphen d a m a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" H O U S E hyphen D A M A G E -EndChar - -StartChar: hryvnia -Encoding: 63218 63218 903 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -368 208 m 2 - 268.299804688 208 l 1 - 233.629882812 176 l 1 - 368 176 l 2 - 376.83984375 176 384 168.83984375 384 160 c 2 - 384 128 l 2 - 384 119.16015625 376.83984375 112 368 112 c 2 - 164.299804688 112 l 1 - 134.809570312 84.7802734375 l 2 - 130.48046875 80.7802734375 128 75.1103515625 128 69.2001953125 c 0 - 128 57.51953125 137.509765625 48 149.200195312 48 c 2 - 232.830078125 48 l 1 - 232.83203125 48 l 2 - 237.625976562 48 244.506835938 50.4912109375 248.190429688 53.5595703125 c 2 - 259.940429688 63.3603515625 l 2 - 270.129882812 71.849609375 285.259765625 70.48046875 293.75 60.2900390625 c 2 - 314.240234375 35.7001953125 l 2 - 322.73046875 25.51953125 321.349609375 10.3896484375 311.169921875 1.900390625 c 2 - 299.400390625 -7.91015625 l 2 - 280.719726562 -23.4697265625 257.1796875 -32 232.860351562 -32 c 2 - 154.040039062 -32 l 2 - 116.900390625 -32 80.66015625 -14.150390625 61.990234375 17.9501953125 c 0 - 44.1201171875 48.669921875 44.4501953125 83.3701171875 57.8603515625 112 c 1 - 16 112 l 2 - 7.16015625 112 0 119.16015625 0 128 c 2 - 0 160 l 2 - 0 168.83984375 7.16015625 176 16 176 c 2 - 115.700195312 176 l 1 - 150.370117188 208 l 1 - 16 208 l 2 - 7.16015625 208 0 215.16015625 0 224 c 2 - 0 256 l 2 - 0 264.83984375 7.16015625 272 16 272 c 2 - 219.700195312 272 l 1 - 249.190429688 299.209960938 l 2 - 253.51953125 303.209960938 256 308.879882812 256 314.790039062 c 0 - 256 326.469726562 246.490234375 335.990234375 234.799804688 335.990234375 c 2 - 151.1796875 335.990234375 l 2 - 145.559570312 335.990234375 140.110351562 334.01953125 135.790039062 330.419921875 c 2 - 124.059570312 320.639648438 l 2 - 113.870117188 312.150390625 98.740234375 313.51953125 90.25 323.709960938 c 2 - 69.759765625 348.299804688 l 2 - 61.26953125 358.48046875 62.650390625 373.610351562 72.830078125 382.099609375 c 2 - 84.599609375 391.91015625 l 2 - 103.280273438 407.469726562 126.8203125 416 151.139648438 416 c 2 - 229.959960938 416 l 2 - 267.099609375 416 303.33984375 398.16015625 322.009765625 366.049804688 c 0 - 339.879882812 335.330078125 339.549804688 300.629882812 326.139648438 272 c 1 - 368 272 l 2 - 376.83984375 272 384 264.83984375 384 256 c 2 - 384 224 l 2 - 384 215.16015625 376.83984375 208 368 208 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" h r y v n i a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" H r y v n i a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" H R Y V N I A -EndChar - -StartChar: mask -Encoding: 63226 63226 904 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320.669921875 384 m 0 - 769.759765625 384 668.990234375 0 479.129882812 0 c 0 - 439.23046875 0 401.66015625 20.6904296875 377.719726562 55.8603515625 c 2 - 351.990234375 93.650390625 l 2 - 336.330078125 116.639648438 305.01953125 116.639648438 289.360351562 93.650390625 c 2 - 263.629882812 55.8603515625 l 2 - 239.6796875 20.6904296875 202.110351562 0 162.209960938 0 c 0 - -36.900390625 0 -121.9296875 384 320.669921875 384 c 0 -184 139.639648438 m 0 - 225.059570312 139.639648438 251.759765625 165.290039062 264.080078125 180.690429688 c 0 - 269.309570312 187.23046875 269.309570312 196.790039062 264.080078125 203.3203125 c 0 - 251.759765625 218.709960938 225.0703125 244.370117188 184 244.370117188 c 0 - 142.9296875 244.370117188 116.240234375 218.719726562 103.919921875 203.3203125 c 0 - 98.6904296875 196.780273438 98.6904296875 187.219726562 103.919921875 180.690429688 c 0 - 116.240234375 165.299804688 142.940429688 139.639648438 184 139.639648438 c 0 -456 139.639648438 m 0 - 497.059570312 139.639648438 523.759765625 165.290039062 536.080078125 180.690429688 c 0 - 541.309570312 187.23046875 541.309570312 196.790039062 536.080078125 203.3203125 c 0 - 523.759765625 218.709960938 497.0703125 244.370117188 456 244.370117188 c 0 - 414.9296875 244.370117188 388.240234375 218.719726562 375.919921875 203.3203125 c 0 - 370.690429688 196.780273438 370.690429688 187.219726562 375.919921875 180.690429688 c 0 - 388.240234375 165.299804688 414.940429688 139.639648438 456 139.639648438 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" m a s k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" M A S K -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" M a s k -EndChar - -StartChar: mountain -Encoding: 63228 63228 905 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -634.919921875 -14.7001953125 m 2 - 637.725585938 -19.0625 640.002929688 -26.8134765625 640.002929688 -32.0009765625 c 0 - 640.002929688 -36.5068359375 638.25 -43.375 636.08984375 -47.330078125 c 0 - 630.48046875 -57.6103515625 619.709960938 -64 608 -64 c 2 - 32 -64 l 1 - 31.99609375 -64 l 2 - 21.5166015625 -64 8.9345703125 -56.5361328125 3.91015625 -47.33984375 c 0 - 1.75 -43.3837890625 -0.0029296875 -36.513671875 -0.0029296875 -32.005859375 c 0 - -0.0029296875 -26.8173828125 2.2744140625 -19.064453125 5.080078125 -14.7001953125 c 2 - 293.080078125 433.299804688 l 2 - 298.969726562 442.459960938 309.110351562 448 320 448 c 0 - 330.889648438 448 341.030273438 442.459960938 346.919921875 433.299804688 c 2 - 634.919921875 -14.7001953125 l 2 -320 356.8203125 m 1 - 217.940429688 198.059570312 l 1 - 256 160 l 1 - 320 224 l 1 - 405.389648438 224 l 1 - 320 356.8203125 l 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" m o u n t a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" M O U N T A I N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" M o u n t a i n -EndChar - -StartChar: network-wired -Encoding: 63231 63231 906 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -640 184 m 2 - 640 175.16015625 632.83984375 168 624 168 c 2 - 520 168 l 1 - 520 128 l 1 - 576 128 l 2 - 593.669921875 128 608 113.669921875 608 96 c 2 - 608 -32 l 2 - 608 -49.669921875 593.669921875 -64 576 -64 c 2 - 416 -64 l 2 - 398.330078125 -64 384 -49.669921875 384 -32 c 2 - 384 96 l 2 - 384 113.669921875 398.330078125 128 416 128 c 2 - 472 128 l 1 - 472 168 l 1 - 168 168 l 1 - 168 128 l 1 - 224 128 l 2 - 241.669921875 128 256 113.669921875 256 96 c 2 - 256 -32 l 2 - 256 -49.669921875 241.669921875 -64 224 -64 c 2 - 64 -64 l 2 - 46.330078125 -64 32 -49.669921875 32 -32 c 2 - 32 96 l 2 - 32 113.669921875 46.330078125 128 64 128 c 2 - 120 128 l 1 - 120 168 l 1 - 16 168 l 2 - 7.16015625 168 0 175.16015625 0 184 c 2 - 0 200 l 2 - 0 208.83984375 7.16015625 216 16 216 c 2 - 296 216 l 1 - 296 256 l 1 - 224 256 l 2 - 206.330078125 256 192 270.330078125 192 288 c 2 - 192 416 l 2 - 192 433.669921875 206.330078125 448 224 448 c 2 - 416 448 l 2 - 433.669921875 448 448 433.669921875 448 416 c 2 - 448 288 l 2 - 448 270.330078125 433.669921875 256 416 256 c 2 - 344 256 l 1 - 344 216 l 1 - 624 216 l 2 - 632.83984375 216 640 208.83984375 640 200 c 2 - 640 184 l 2 -256 320 m 1 - 384 320 l 1 - 384 384 l 1 - 256 384 l 1 - 256 320 l 1 -192 0 m 1 - 192 64 l 1 - 96 64 l 1 - 96 0 l 1 - 192 0 l 1 -544 0 m 1 - 544 64 l 1 - 448 64 l 1 - 448 0 l 1 - 544 0 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" n e t w o r k hyphen w i r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" N e t w o r k hyphen W i r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" N e t w o r k hyphen w i r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" N E T W O R K hyphen W I R E D -EndChar - -StartChar: otter -Encoding: 63232 63232 907 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -608 416 m 2 - 625.669921875 416 640 401.669921875 640 384 c 2 - 640 352 l 2 - 640 298.98046875 597.01953125 256 544 256 c 2 - 521.139648438 256 l 1 - 428.669921875 206.209960938 l 1 - 483.780273438 96 l 1 - 512 96 l 2 - 529.669921875 96 544 81.669921875 544 64 c 2 - 544 48 l 2 - 544 39.16015625 536.83984375 32 528 32 c 2 - 448 32 l 1 - 373.490234375 176.5 l 1 - 224 96 l 1 - 288 96 l 2 - 305.669921875 96 320 81.669921875 320 64 c 2 - 320 48 l 2 - 320 39.16015625 312.83984375 32 304 32 c 2 - 80 32 l 2 - 71.169921875 32 64 24.830078125 64 16 c 0 - 64 7.169921875 71.169921875 0 80 0 c 2 - 192 0 l 2 - 209.669921875 0 224 -14.330078125 224 -32 c 0 - 224 -49.669921875 209.669921875 -64 192 -64 c 2 - 83.5302734375 -64 l 2 - 44.150390625 -64 8.009765625 -37.099609375 1.25 1.7001953125 c 0 - -3.66015625 29.8203125 6.25 55.919921875 24.4404296875 73.5 c 0 - 48 96.25 64 125.639648438 64 158.389648438 c 2 - 64 160 l 2 - 64 266.040039062 149.959960938 352 256 352 c 2 - 312 352 l 1 - 465.25 439.5703125 l 2 - 474.919921875 445.08984375 485.860351562 448 497 448 c 2 - 517.490234375 448 l 1 - 517.502929688 448 l 2 - 532.135742188 448 552.40625 439.599609375 562.75 429.25 c 2 - 576 416 l 1 - 608 416 l 2 -512 400 m 0 - 503.16015625 400 496 392.83984375 496 384 c 0 - 496 375.16015625 503.16015625 368 512 368 c 0 - 520.83984375 368 528 375.16015625 528 384 c 0 - 528 392.83984375 520.83984375 400 512 400 c 0 -544 304 m 2 - 564.830078125 304 582.4296875 317.419921875 589.049804688 336 c 1 - 512 336 l 1 - 393.4296875 276.709960938 l 1 - 407.200195312 249.16015625 l 1 - 509.040039062 304 l 1 - 544 304 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" o t t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" O t t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" O T T E R -EndChar - -StartChar: ring -Encoding: 63243 63243 908 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 384 m 0 - 401.940429688 384 512 322.08984375 512 240 c 2 - 512 141.870117188 l 2 - 512 63.51953125 397.379882812 0 256 0 c 0 - 114.620117188 0 0 63.51953125 0 141.870117188 c 2 - 0 240 l 2 - 0 322.08984375 110.059570312 384 256 384 c 0 -256 320 m 0 - 149.959960938 320 64 284.1796875 64 240 c 0 - 64 230.740234375 67.9697265625 221.879882812 74.91015625 213.610351562 c 1 - 119.849609375 239.790039062 183.76953125 256 256 256 c 0 - 328.23046875 256 392.150390625 239.790039062 437.08984375 213.610351562 c 1 - 444.030273438 221.879882812 448 230.740234375 448 240 c 0 - 448 284.1796875 362.040039062 320 256 320 c 0 -120.4296875 183.360351562 m 1 - 155.16015625 168.9296875 203.0703125 160 256 160 c 0 - 308.9296875 160 356.83984375 168.9296875 391.5703125 183.360351562 c 1 - 356.959960938 198.0703125 310.360351562 208 256 208 c 0 - 201.639648438 208 155.040039062 198.0703125 120.4296875 183.360351562 c 1 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" r i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" R i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" R I N G -EndChar - -StartChar: running -Encoding: 63244 63244 909 -Width: 416 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -272 352 m 0 - 245.490234375 352 224 373.490234375 224 400 c 0 - 224 426.509765625 245.490234375 448 272 448 c 0 - 298.509765625 448 320 426.509765625 320 400 c 0 - 320 373.490234375 298.509765625 352 272 352 c 0 -113.690429688 130.530273438 m 1 - 121.620117188 113.290039062 134.360351562 98.150390625 151.6796875 87.919921875 c 2 - 162.349609375 81.6201171875 l 1 - 153.559570312 61.099609375 l 2 - 146.030273438 43.4501953125 128.700195312 32.009765625 109.450195312 32.009765625 c 2 - 32 32.009765625 l 2 - 14.330078125 32.009765625 0 46.33984375 0 64.009765625 c 0 - 0 81.6796875 14.330078125 96.009765625 32 96.009765625 c 2 - 98.8896484375 96.009765625 l 1 - 113.690429688 130.530273438 l 1 -384 224.009765625 m 2 - 401.669921875 224.009765625 416 209.690429688 416 192.01953125 c 0 - 416 174.349609375 401.669921875 160.01953125 384 160.01953125 c 2 - 330.009765625 160.01953125 l 2 - 311.8203125 160.01953125 294.900390625 170.5703125 286.900390625 186.91015625 c 2 - 266.629882812 228.33984375 l 1 - 235.3203125 150.059570312 l 1 - 296.559570312 113.919921875 l 2 - 315.309570312 102.610351562 324.110351562 80.2998046875 318.200195312 59.5302734375 c 2 - 286.559570312 -41.5302734375 l 2 - 282.26953125 -55.2099609375 269.650390625 -63.98046875 256.040039062 -63.98046875 c 0 - 252.870117188 -63.98046875 249.650390625 -63.5 246.459960938 -62.5 c 0 - 229.599609375 -57.2197265625 220.209960938 -39.26953125 225.490234375 -22.41015625 c 2 - 252.959960938 65.3203125 l 1 - 167.98046875 115.490234375 l 2 - 140.370117188 131.790039062 129.059570312 166.3203125 141.6796875 195.799804688 c 2 - 179.139648438 283.190429688 l 1 - 164.440429688 287.559570312 l 2 - 156.610351562 289.419921875 146.83984375 287.309570312 139.169921875 281.419921875 c 2 - 99.48046875 251.009765625 l 2 - 85.4599609375 240.26953125 65.3896484375 242.900390625 54.6201171875 256.9296875 c 0 - 43.849609375 270.959960938 46.509765625 291.040039062 60.5400390625 301.790039062 c 2 - 100.209960938 332.200195312 l 2 - 123.280273438 349.889648438 152.75 356.139648438 181.049804688 349.33984375 c 2 - 252.129882812 328.200195312 l 2 - 278.459960938 321.490234375 301.41015625 302.809570312 313.91015625 277.259765625 c 2 - 339.969726562 224.009765625 l 1 - 384 224.009765625 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" r u n n i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" R u n n i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" R U N N I N G -EndChar - -StartChar: scroll -Encoding: 63246 63246 910 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -48 448 m 0 - 74.4697265625 448 96 426.469726562 96 400 c 2 - 96 320 l 1 - 16 320 l 2 - 7.16015625 320 0 327.16015625 0 336 c 2 - 0 400 l 2 - 0 426.469726562 21.5302734375 448 48 448 c 0 -256 35.4296875 m 2 - 256 3.5400390625 234.219726562 -26 202.75 -31.1201171875 c 0 - 162.650390625 -37.650390625 128 -6.8701171875 128 32 c 2 - 128 400 l 2 - 128 418.080078125 121.740234375 434.58984375 111.58984375 448 c 1 - 448 448 l 2 - 500.940429688 448 544 404.940429688 544 352 c 2 - 544 96 l 1 - 256 96 l 1 - 256 35.4296875 l 2 -288 64 m 1 - 624 64 l 2 - 632.83984375 64 640 56.83984375 640 48 c 0 - 640 -13.8603515625 589.860351562 -64 528 -64 c 2 - 192 -64 l 2 - 244.940429688 -64 288 -20.9296875 288 32 c 2 - 288 64 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" s c r o l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" S c r o l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" S C R O L L -EndChar - -StartChar: skull-crossbones -Encoding: 63252 63252 911 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -439.150390625 -5.0595703125 m 2 - 447.049804688 -9.009765625 450.259765625 -18.6201171875 446.309570312 -26.5302734375 c 2 - 432 -55.16015625 l 2 - 428.040039062 -63.0595703125 418.4296875 -66.259765625 410.530273438 -62.3095703125 c 2 - 224 28.41015625 l 1 - 37.48046875 -62.3095703125 l 2 - 29.5703125 -66.26953125 19.9599609375 -63.0595703125 16.009765625 -55.16015625 c 2 - 1.7001953125 -26.5302734375 l 2 - -2.259765625 -18.6201171875 0.9501953125 -9.009765625 8.849609375 -5.0595703125 c 2 - 150.830078125 64 l 1 - 8.83984375 133.059570312 l 2 - 0.9404296875 137.009765625 -2.259765625 146.620117188 1.6904296875 154.51953125 c 2 - 16 183.150390625 l 2 - 19.9599609375 191.059570312 29.5703125 194.259765625 37.4697265625 190.309570312 c 2 - 224 99.58984375 l 1 - 410.530273438 190.309570312 l 2 - 418.440429688 194.259765625 428.049804688 191.049804688 432 183.150390625 c 2 - 446.309570312 154.51953125 l 2 - 450.26953125 146.620117188 447.059570312 137.009765625 439.16015625 133.059570312 c 2 - 297.169921875 64 l 1 - 439.150390625 -5.0595703125 l 2 -150 210.719726562 m 1 - 108.219726562 233.129882812 80 273.469726562 80 320 c 0 - 80 390.690429688 144.469726562 448 224 448 c 0 - 303.530273438 448 368 390.690429688 368 320 c 0 - 368 273.469726562 339.780273438 233.129882812 298 210.719726562 c 1 - 303.5 184.849609375 l 2 - 306.169921875 172.23046875 298.080078125 160 287.049804688 160 c 2 - 160.969726562 160 l 2 - 149.940429688 160 141.849609375 172.23046875 144.51953125 184.849609375 c 2 - 150 210.719726562 l 1 -280 336 m 0 - 262.349609375 336 248 321.650390625 248 304 c 0 - 248 286.349609375 262.349609375 272 280 272 c 0 - 297.650390625 272 312 286.349609375 312 304 c 0 - 312 321.650390625 297.650390625 336 280 336 c 0 -168 336 m 0 - 150.349609375 336 136 321.650390625 136 304 c 0 - 136 286.349609375 150.349609375 272 168 272 c 0 - 185.650390625 272 200 286.349609375 200 304 c 0 - 200 321.650390625 185.650390625 336 168 336 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" s k u l l hyphen c r o s s b o n e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" S k u l l hyphen C r o s s b o n e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" S k u l l hyphen c r o s s b o n e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" S K U L L hyphen C R O S S B O N E S -EndChar - -StartChar: slash -Encoding: 63253 63253 912 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -594.530273438 -60.6298828125 m 2 - 6.1796875 394.099609375 l 2 - -0.7900390625 399.51953125 -2.0498046875 409.5703125 3.3701171875 416.549804688 c 2 - 23.009765625 441.8203125 l 2 - 28.4296875 448.799804688 38.490234375 450.059570312 45.4697265625 444.629882812 c 2 - 633.8203125 -10.099609375 l 2 - 640.790039062 -15.51953125 642.049804688 -25.5703125 636.629882812 -32.5498046875 c 2 - 616.990234375 -57.8203125 l 2 - 611.5703125 -64.7998046875 601.509765625 -66.0498046875 594.530273438 -60.6298828125 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" s l a s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" S L A S H -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" S l a s h -EndChar - -StartChar: spider -Encoding: 63255 63255 913 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -151.169921875 280.650390625 m 1 - 124.01953125 334.950195312 l 2 - 122.159179688 338.6796875 120.6484375 345.088867188 120.6484375 349.256835938 c 0 - 120.6484375 352.124023438 121.383789062 356.659179688 122.290039062 359.379882812 c 2 - 148.1796875 437.059570312 l 2 - 150.969726562 445.450195312 160.040039062 449.98046875 168.419921875 447.1796875 c 2 - 183.58984375 442.120117188 l 2 - 191.98046875 439.3203125 196.5 430.259765625 193.709960938 421.879882812 c 2 - 169.91015625 350.490234375 l 1 - 190.200195312 309.91015625 l 2 - 188.790039062 305.700195312 187.709960938 301.700195312 186.990234375 298.120117188 c 2 - 181.76953125 272 l 1 - 177.099609375 272 l 1 - 151.169921875 280.650390625 l 1 -573.309570312 98.6201171875 m 2 - 578.209960938 91.26953125 576.23046875 81.33984375 568.870117188 76.4404296875 c 2 - 555.559570312 67.5595703125 l 2 - 548.209960938 62.66015625 538.26953125 64.650390625 533.370117188 72 c 2 - 485.370117188 144 l 1 - 438.309570312 144 l 1 - 499.139648438 46.669921875 l 2 - 502.309570312 41.58984375 504 35.7099609375 504 29.7099609375 c 2 - 504 -48 l 2 - 504 -56.83984375 496.83984375 -64 488 -64 c 2 - 472 -64 l 2 - 463.16015625 -64 456 -56.83984375 456 -48 c 2 - 456 25.1103515625 l 1 - 381.919921875 143.639648438 l 1 - 382.919921875 129.58984375 384 115.530273438 384 101.4296875 c 0 - 384 48.3603515625 343.240234375 0 288 0 c 0 - 232.759765625 0 192 48.3603515625 192 101.4296875 c 0 - 192 115.530273438 193.0703125 129.58984375 194.080078125 143.639648438 c 1 - 120 25.1103515625 l 1 - 120 -48 l 2 - 120 -56.83984375 112.83984375 -64 104 -64 c 2 - 88 -64 l 2 - 79.16015625 -64 72 -56.83984375 72 -48 c 2 - 72 29.7001953125 l 1 - 72 29.7099609375 l 2 - 72 34.7724609375 74.177734375 42.3662109375 76.8603515625 46.66015625 c 2 - 137.690429688 143.990234375 l 1 - 90.6298828125 143.990234375 l 1 - 42.6298828125 71.990234375 l 2 - 37.73046875 64.6396484375 27.7900390625 62.650390625 20.4404296875 67.5498046875 c 2 - 7.1298828125 76.4296875 l 2 - -0.23046875 81.330078125 -2.2099609375 91.26953125 2.6904296875 98.6201171875 c 2 - 55.4296875 177.75 l 2 - 60.6767578125 185.614257812 72.6064453125 191.998046875 82.0595703125 192 c 2 - 160 192 l 1 - 91.009765625 216.349609375 l 2 - 85.259765625 218.268554688 77.86328125 223.916992188 74.5 228.959960938 c 2 - 20.900390625 309.370117188 l 2 - 16 316.73046875 17.990234375 326.66015625 25.33984375 331.559570312 c 2 - 38.650390625 340.440429688 l 2 - 46.009765625 345.33984375 55.9404296875 343.349609375 60.83984375 336 c 2 - 111.41015625 260.169921875 l 1 - 171.900390625 240 l 1 - 208 240 l 1 - 218.370117188 291.849609375 l 2 - 220.559570312 302.8203125 235.740234375 352 288 352 c 0 - 340.259765625 352 355.440429688 302.8203125 357.629882812 291.849609375 c 2 - 368 240 l 1 - 404.099609375 240 l 1 - 464.599609375 260.169921875 l 1 - 515.16015625 336 l 2 - 520.059570312 343.349609375 530 345.33984375 537.349609375 340.440429688 c 2 - 550.66015625 331.559570312 l 2 - 558.009765625 326.66015625 560 316.719726562 555.099609375 309.370117188 c 2 - 501.5 228.959960938 l 2 - 498.13671875 223.916992188 490.740234375 218.268554688 484.990234375 216.349609375 c 2 - 416 191.990234375 l 1 - 493.940429688 191.990234375 l 2 - 503.391601562 191.98828125 515.317382812 185.603515625 520.559570312 177.740234375 c 2 - 573.309570312 98.6201171875 l 2 -406.08984375 350.490234375 m 1 - 382.290039062 421.879882812 l 2 - 379.5 430.259765625 384.030273438 439.3203125 392.41015625 442.120117188 c 2 - 407.580078125 447.1796875 l 2 - 415.959960938 449.98046875 425.030273438 445.440429688 427.8203125 437.059570312 c 2 - 453.709960938 359.379882812 l 2 - 454.618164062 356.658203125 455.35546875 352.122070312 455.35546875 349.252929688 c 0 - 455.35546875 345.0859375 453.842773438 338.677734375 451.98046875 334.950195312 c 2 - 424.830078125 280.650390625 l 1 - 398.900390625 272 l 1 - 394.23046875 272 l 1 - 389.009765625 298.120117188 l 2 - 388.290039062 301.700195312 387.209960938 305.700195312 385.799804688 309.91015625 c 2 - 406.08984375 350.490234375 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" s p i d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S p i d e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" S P I D E R -EndChar - -StartChar: toilet-paper -Encoding: 63262 63262 914 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128 448 m 2 - 412.440429688 448 l 1 - 375.669921875 409.51953125 352 339.599609375 352 256 c 2 - 352 83.9296875 l 2 - 352 30.2802734375 340.120117188 -3.6396484375 327.290039062 -42.1201171875 c 0 - 322.9296875 -55.1904296875 310.700195312 -64 296.9296875 -64 c 2 - 16.009765625 -64 l 2 - 5.08984375 -64 -2.6201171875 -53.2998046875 0.830078125 -42.9404296875 c 0 - 22.2001953125 21.16015625 32 42.8095703125 32 83.9296875 c 2 - 32 256 l 2 - 32 362.040039062 74.98046875 448 128 448 c 2 -96 224 m 0 - 104.83984375 224 112 231.16015625 112 240 c 0 - 112 248.83984375 104.83984375 256 96 256 c 0 - 87.16015625 256 80 248.83984375 80 240 c 0 - 80 231.16015625 87.16015625 224 96 224 c 0 -160 224 m 0 - 168.83984375 224 176 231.16015625 176 240 c 0 - 176 248.83984375 168.83984375 256 160 256 c 0 - 151.16015625 256 144 248.83984375 144 240 c 0 - 144 231.16015625 151.16015625 224 160 224 c 0 -224 224 m 0 - 232.83984375 224 240 231.16015625 240 240 c 0 - 240 248.83984375 232.83984375 256 224 256 c 0 - 215.16015625 256 208 248.83984375 208 240 c 0 - 208 231.16015625 215.16015625 224 224 224 c 0 -288 224 m 0 - 296.83984375 224 304 231.16015625 304 240 c 0 - 304 248.83984375 296.83984375 256 288 256 c 0 - 279.16015625 256 272 248.83984375 272 240 c 0 - 272 231.16015625 279.16015625 224 288 224 c 0 -480 448 m 0 - 533.01953125 448 576 362.040039062 576 256 c 0 - 576 149.959960938 533.01953125 64 480 64 c 0 - 426.98046875 64 384 149.959960938 384 256 c 0 - 384 362.040039062 426.98046875 448 480 448 c 0 -480 192 m 0 - 497.669921875 192 512 220.650390625 512 256 c 0 - 512 291.349609375 497.669921875 320 480 320 c 0 - 462.330078125 320 448 291.349609375 448 256 c 0 - 448 220.650390625 462.330078125 192 480 192 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" t o i l e t hyphen p a p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" T o i l e t hyphen P a p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" T o i l e t hyphen p a p e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" T O I L E T hyphen P A P E R -EndChar - -StartChar: tractor -Encoding: 63266 63266 915 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -528 112 m 0 - 576.599609375 112 616 72.599609375 616 24 c 0 - 616 -24.599609375 576.599609375 -64 528 -64 c 0 - 479.400390625 -64 440 -24.599609375 440 24 c 0 - 440 72.599609375 479.400390625 112 528 112 c 0 -528 0 m 0 - 541.23046875 0 552 10.76953125 552 24 c 0 - 552 37.23046875 541.23046875 48 528 48 c 0 - 514.76953125 48 504 37.23046875 504 24 c 0 - 504 10.76953125 514.76953125 0 528 0 c 0 -608 288 m 2 - 625.669921875 288 640 273.669921875 639.990234375 256 c 2 - 639.990234375 205.240234375 l 2 - 639.990234375 196.75 636.620117188 188.610351562 630.620117188 182.610351562 c 2 - 579.799804688 131.790039062 l 1 - 564.0703125 139.379882812 546.639648438 143.990234375 528 143.990234375 c 0 - 488.860351562 143.990234375 454.450195312 124.98046875 432.540039062 95.990234375 c 1 - 352 95.990234375 l 1 - 352 89.990234375 l 2 - 352 77.83984375 342.150390625 67.990234375 330 67.990234375 c 2 - 322.83984375 67.990234375 l 1 - 319.889648438 58.08984375 315.919921875 48.5302734375 310.9296875 39.26953125 c 1 - 315.990234375 34.2099609375 l 2 - 324.580078125 25.6201171875 324.580078125 11.6904296875 315.990234375 3.099609375 c 2 - 284.879882812 -28.009765625 l 2 - 276.290039062 -36.599609375 262.360351562 -36.599609375 253.76953125 -28.009765625 c 2 - 248.709960938 -22.9501953125 l 1 - 239.450195312 -27.9404296875 229.889648438 -31.91015625 219.990234375 -34.8603515625 c 1 - 219.990234375 -42 l 2 - 219.990234375 -54.150390625 210.139648438 -64 197.990234375 -64 c 2 - 153.990234375 -64 l 2 - 141.83984375 -64 131.990234375 -54.150390625 131.990234375 -42 c 2 - 131.990234375 -34.849609375 l 1 - 122.08984375 -31.900390625 112.530273438 -27.9296875 103.26953125 -22.9404296875 c 1 - 98.2099609375 -28 l 2 - 89.6201171875 -36.58984375 75.6904296875 -36.58984375 67.099609375 -28 c 2 - 35.990234375 3.1103515625 l 2 - 27.400390625 11.7001953125 27.400390625 25.6298828125 35.990234375 34.2197265625 c 2 - 41.0498046875 39.2802734375 l 1 - 36.0595703125 48.5498046875 32.099609375 58.099609375 29.1396484375 68.009765625 c 1 - 22 68.009765625 l 2 - 9.849609375 68.009765625 0 77.8603515625 0 90.009765625 c 2 - 0 134.009765625 l 2 - 0 146.16015625 9.849609375 156.009765625 22 156.009765625 c 2 - 29.150390625 156.009765625 l 1 - 32.099609375 165.91015625 36.0703125 175.469726562 41.0595703125 184.73046875 c 1 - 36 189.790039062 l 2 - 27.41015625 198.379882812 27.41015625 212.309570312 36 220.900390625 c 2 - 67.1103515625 252.009765625 l 2 - 75.0400390625 259.940429688 87.3701171875 260.209960938 96 253.48046875 c 1 - 96 400 l 2 - 96 426.469726562 117.530273438 448 144 448 c 2 - 277.450195312 448 l 1 - 277.497070312 448 l 2 - 294.98046875 448 314.729492188 434.9453125 321.580078125 418.860351562 c 2 - 377.669921875 288 l 1 - 480 288 l 1 - 480 328.200195312 l 2 - 480 358.190429688 490.580078125 387.099609375 509.5 409.919921875 c 0 - 515.879882812 417.620117188 527.540039062 418.150390625 534.200195312 410.700195312 c 2 - 555.830078125 386.530273438 l 2 - 560.700195312 381.099609375 561.5703125 372.83984375 557.150390625 367.040039062 c 0 - 548.700195312 355.959960938 544 342.3203125 544 328.200195312 c 2 - 544 288 l 1 - 608 288 l 2 -176 32 m 0 - 220.1796875 32 256 67.8203125 256 112 c 0 - 256 156.1796875 220.1796875 192 176 192 c 0 - 131.8203125 192 96 156.1796875 96 112 c 0 - 96 67.8203125 131.8203125 32 176 32 c 0 -198 288 m 1 - 308.040039062 288 l 1 - 266.889648438 384 l 1 - 160 384 l 1 - 160 288 l 1 - 198 288 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" t r a c t o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" T r a c t o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" T R A C T O R -EndChar - -StartChar: user-injured -Encoding: 63272 63272 916 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -277.370117188 436.01953125 m 1 - 186.6796875 368 l 1 - 105.490234375 368 l 1 - 124.5 414.870117188 170.309570312 448 224 448 c 0 - 243.110351562 448 261.080078125 443.530273438 277.370117188 436.01953125 c 1 -342.509765625 368 m 1 - 239.990234375 368 l 1 - 306.01953125 417.51953125 l 1 - 321.83984375 404.200195312 334.610351562 387.469726562 342.509765625 368 c 1 -224 192 m 0 - 153.309570312 192 96 249.309570312 96 320 c 0 - 96 325.48046875 96.9404296875 330.700195312 97.6103515625 336 c 1 - 350.389648438 336 l 1 - 351.049804688 330.700195312 352 325.48046875 352 320 c 0 - 352 249.309570312 294.690429688 192 224 192 c 0 -80 148.299804688 m 1 - 87.9267578125 151.817382812 101.28125 155.948242188 109.809570312 157.51953125 c 1 - 208.259765625 -64 l 1 - 80 -64 l 1 - 80 148.299804688 l 1 -0 -16 m 2 - 0 25.599609375 l 2 - 0 66.740234375 18.8798828125 103.110351562 48 127.759765625 c 1 - 48 -64 l 1 - 21.490234375 -64 0 -42.509765625 0 -16 c 2 -256 32 m 2 - 282.469726562 32 304 10.4697265625 304 -16 c 0 - 304 -42.4697265625 282.469726562 -64 256 -64 c 2 - 243.290039062 -64 l 1 - 200.620117188 32 l 1 - 256 32 l 2 -313.599609375 160 m 2 - 387.830078125 160 448 99.830078125 448 25.599609375 c 2 - 448 -16 l 2 - 448 -42.509765625 426.509765625 -64 400 -64 c 2 - 319.58984375 -64 l 1 - 329.740234375 -50.58984375 336 -34.080078125 336 -16 c 0 - 336 28.1103515625 300.110351562 64 256 64 c 2 - 186.41015625 64 l 1 - 143.740234375 160 l 1 - 151.110351562 160 l 1 - 173.349609375 149.8203125 197.990234375 144 224 144 c 0 - 250.009765625 144 274.650390625 149.8203125 296.889648438 160 c 1 - 313.599609375 160 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" u s e r hyphen i n j u r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" U s e r hyphen I n j u r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" U s e r hyphen i n j u r e d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" U S E R hyphen I N J U R E D -EndChar - -StartChar: vr-cardboard -Encoding: 63273 63273 917 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -608 384 m 2 - 625.669921875 384 640 369.669921875 640 352 c 2 - 640 32 l 2 - 640 14.330078125 625.669921875 0 608 0 c 2 - 447.780273438 0 l 2 - 422.599609375 0 399.75 14.76953125 389.419921875 37.740234375 c 2 - 361.6796875 99.3798828125 l 2 - 353.790039062 116.919921875 337.650390625 128 320 128 c 0 - 302.349609375 128 286.209960938 116.919921875 278.3203125 99.3798828125 c 2 - 250.580078125 37.740234375 l 2 - 240.25 14.76953125 217.41015625 0 192.219726562 0 c 2 - 32 0 l 2 - 14.330078125 0 0 14.330078125 0 32 c 2 - 0 352 l 2 - 0 369.669921875 14.330078125 384 32 384 c 2 - 608 384 l 2 -160 144 m 0 - 195.349609375 144 224 172.650390625 224 208 c 0 - 224 243.349609375 195.349609375 272 160 272 c 0 - 124.650390625 272 96 243.349609375 96 208 c 0 - 96 172.650390625 124.650390625 144 160 144 c 0 -480 144 m 0 - 515.349609375 144 544 172.650390625 544 208 c 0 - 544 243.349609375 515.349609375 272 480 272 c 0 - 444.650390625 272 416 243.349609375 416 208 c 0 - 416 172.650390625 444.650390625 144 480 144 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" v r hyphen c a r d b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" V r hyphen C a r d b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" V r hyphen c a r d b o a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" V R hyphen C A R D B O A R D -EndChar - -StartChar: wind -Encoding: 63278 63278 918 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -156.700195312 192 m 2 - 205.400390625 192 249 157 255.099609375 108.599609375 c 0 - 262.599609375 50.099609375 217 0 159.900390625 0 c 0 - 113.299804688 0 74.2998046875 33.5 65.7001953125 77.599609375 c 0 - 63.900390625 87.2001953125 71.7998046875 96 81.599609375 96 c 2 - 114.400390625 96 l 2 - 121 96 127.5 92.2001953125 129.599609375 85.900390625 c 0 - 133.900390625 73.2001953125 145.900390625 64 160 64 c 0 - 179.5 64 194.900390625 81.400390625 191.599609375 101.400390625 c 0 - 189 117.099609375 174.099609375 128 158.200195312 128 c 2 - 16 128 l 2 - 7.2001953125 128 0 135.200195312 0 144 c 2 - 0 176 l 2 - 0 184.799804688 7.2001953125 192 16 192 c 2 - 156.700195312 192 l 2 -16 224 m 2 - 7.2001953125 224 0 231.200195312 0 240 c 2 - 0 272 l 2 - 0 280.799804688 7.2001953125 288 16 288 c 2 - 350.200195312 288 l 2 - 366.200195312 288 381 298.900390625 383.599609375 314.599609375 c 0 - 386.900390625 334.599609375 371.400390625 352 352 352 c 0 - 337.900390625 352 325.900390625 342.799804688 321.599609375 330.099609375 c 0 - 319.5 323.799804688 313.099609375 320 306.400390625 320 c 2 - 273.599609375 320 l 2 - 263.900390625 320 255.900390625 328.700195312 257.799804688 338.299804688 c 0 - 267.599609375 388.900390625 317.299804688 425.400390625 372.700195312 413.799804688 c 0 - 408.900390625 406.200195312 438.200195312 376.900390625 445.799804688 340.700195312 c 0 - 458.799804688 278.799804688 411.700195312 224 352 224 c 2 - 16 224 l 2 -400 192 m 2 - 470.5 192 526 126.5 508.900390625 53.2998046875 c 0 - 499.299804688 12.2001953125 465.400390625 -20.7001953125 424.200195312 -29.400390625 c 0 - 365.299804688 -41.900390625 312.599609375 -7.7001953125 294.799804688 42.900390625 c 0 - 291.099609375 53.2001953125 299.200195312 64 310.099609375 64 c 2 - 343.900390625 64 l 2 - 349.700195312 64 355.5 61.400390625 358.400390625 56.400390625 c 0 - 366.700195312 41.900390625 382.099609375 32 400 32 c 0 - 426.5 32 448 53.5 448 80 c 0 - 448 106.5 426.5 128 400 128 c 2 - 283.5 128 l 1 - 276.900390625 153.200195312 263 175.400390625 243.700195312 192 c 1 - 400 192 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" w i n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" W i n d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" W I N D -EndChar - -StartChar: wine-bottle -Encoding: 63279 63279 919 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -507.309570312 375.4296875 m 2 - 513.559570312 369.1796875 513.559570312 359.049804688 507.3203125 352.809570312 c 2 - 484.690429688 330.1796875 l 2 - 478.440429688 323.9296875 468.309570312 323.9296875 462.059570312 330.1796875 c 1 - 385.389648438 253.509765625 l 1 - 405.08984375 206.9296875 396.120117188 151.099609375 358.16015625 113.139648438 c 2 - 199.76953125 -45.25 l 2 - 174.780273438 -70.240234375 134.25 -70.240234375 109.259765625 -45.25 c 2 - 18.75 45.259765625 l 2 - -6.240234375 70.25 -6.240234375 110.780273438 18.75 135.76953125 c 2 - 177.129882812 294.150390625 l 2 - 215.099609375 332.110351562 270.919921875 341.080078125 317.5 321.379882812 c 1 - 394.169921875 398.049804688 l 1 - 387.919921875 404.299804688 387.919921875 414.4296875 394.169921875 420.6796875 c 2 - 416.799804688 443.309570312 l 2 - 423.049804688 449.559570312 433.1796875 449.559570312 439.4296875 443.309570312 c 2 - 507.309570312 375.4296875 l 2 -179.219726562 24.7099609375 m 1 - 301.259765625 146.75 l 1 - 210.75 237.259765625 l 1 - 88.7099609375 115.219726562 l 1 - 179.219726562 24.7099609375 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" w i n e hyphen b o t t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" W i n e hyphen B o t t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" W i n e hyphen b o t t l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" W I N E hyphen B O T T L E -EndChar - -StartChar: cloud-meatball -Encoding: 63291 63291 920 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -48 96 m 0 - 74.5 96 96 74.5 96 48 c 0 - 96 21.5 74.5 0 48 0 c 0 - 21.5 0 0 21.5 0 48 c 0 - 0 74.5 21.5 96 48 96 c 0 -464 96 m 0 - 490.5 96 512 74.5 512 48 c 0 - 512 21.5 490.5 0 464 0 c 0 - 437.5 0 416 21.5 416 48 c 0 - 416 74.5 437.5 96 464 96 c 0 -345 84.900390625 m 1 - 358.5 77.900390625 368 64.2001953125 368 48 c 0 - 368 31.7998046875 358.5 18.099609375 345 11.099609375 c 1 - 349.599609375 -3.400390625 346.700195312 -19.7001953125 335.200195312 -31.2001953125 c 0 - 327 -39.400390625 316.299804688 -43.5 305.5 -43.5 c 0 - 301.200195312 -43.5 297 -42.2998046875 292.900390625 -41 c 1 - 285.900390625 -54.5 272.200195312 -64 256 -64 c 0 - 239.799804688 -64 226.099609375 -54.5 219.099609375 -41 c 1 - 215 -42.400390625 210.799804688 -43.5 206.5 -43.5 c 0 - 195.700195312 -43.5 185 -39.400390625 176.799804688 -31.2001953125 c 0 - 165.299804688 -19.7001953125 162.299804688 -3.400390625 166.900390625 11.099609375 c 1 - 153.400390625 18.099609375 143.900390625 31.7998046875 143.900390625 48 c 0 - 143.900390625 64.2001953125 153.400390625 77.900390625 166.900390625 84.900390625 c 1 - 162.400390625 99.400390625 165.299804688 115.700195312 176.799804688 127.200195312 c 0 - 188.299804688 138.700195312 204.599609375 141.700195312 219.099609375 137.099609375 c 1 - 226.099609375 150.599609375 239.799804688 160.099609375 256 160.099609375 c 0 - 272.200195312 160.099609375 285.900390625 150.599609375 292.900390625 137.099609375 c 1 - 307.400390625 141.599609375 323.700195312 138.700195312 335.200195312 127.200195312 c 0 - 346.599609375 115.700195312 349.599609375 99.400390625 345 84.900390625 c 1 -512 224 m 0 - 512 171 469 128 416 128 c 2 - 372.599609375 128 l 1 - 369.099609375 136 364.200195312 143.400390625 357.799804688 149.799804688 c 0 - 344.299804688 163.299804688 326.299804688 170.900390625 307 171.099609375 c 1 - 293.5 184.299804688 275.299804688 192 256 192 c 0 - 236.700195312 192 218.5 184.299804688 205 171.099609375 c 1 - 185.700195312 170.900390625 167.700195312 163.299804688 154.200195312 149.799804688 c 0 - 147.799804688 143.400390625 143 136 139.400390625 128 c 1 - 96 128 l 2 - 43 128 0 171 0 224 c 0 - 0 266.5 27.7998046875 302.200195312 66.099609375 314.799804688 c 1 - 64.7998046875 321.700195312 64 328.700195312 64 336 c 0 - 64 397.900390625 114.099609375 448 176 448 c 0 - 219.299804688 448 256.400390625 423.200195312 275 387.200195312 c 1 - 289.700195312 404.700195312 311.400390625 416 336 416 c 0 - 380.200195312 416 416 380.200195312 416 336 c 0 - 416 330.400390625 415.5 325 414.400390625 319.799804688 c 1 - 414.900390625 319.799804688 415.400390625 320 416 320 c 0 - 469 320 512 277 512 224 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" c l o u d hyphen m e a t b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C l o u d hyphen M e a t b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C l o u d hyphen m e a t b a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" C L O U D hyphen M E A T B A L L -EndChar - -StartChar: cloud-moon-rain -Encoding: 63292 63292 921 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -350.5 222.5 m 1 - 387.799804688 215.700195312 416 183.200195312 416 144 c 0 - 416 99.7998046875 380.200195312 64 336 64 c 2 - 80 64 l 2 - 35.7998046875 64 0 99.7998046875 0 144 c 0 - 0 182.799804688 27.599609375 215.099609375 64.2001953125 222.400390625 c 0 - 64.2001953125 222.900390625 64 223.5 64 224 c 0 - 64 277 107 320 160 320 c 0 - 192.099609375 320 220.299804688 304.099609375 237.700195312 280 c 1 - 248.099609375 285 259.700195312 288 272 288 c 0 - 311.200195312 288 343.599609375 259.700195312 350.5 222.5 c 1 -567.900390625 224.200195312 m 0 - 574.099609375 225.400390625 578.5 218.200195312 574.299804688 213.400390625 c 0 - 547.299804688 180.299804688 506.400390625 160.099609375 461.700195312 160.099609375 c 0 - 456.5 160.099609375 451.599609375 161.099609375 446.5 161.599609375 c 1 - 440.299804688 201 413.400390625 234.099609375 376.299804688 248.400390625 c 1 - 365.599609375 276.299804688 344.099609375 298.200195312 317.400390625 310.099609375 c 1 - 320.700195312 386.799804688 383.900390625 448 461.799804688 448 c 0 - 470.700195312 448 479.599609375 447.200195312 488.299804688 445.599609375 c 0 - 494.5 444.5 495.900390625 436.200195312 490.400390625 433.099609375 c 0 - 454.799804688 413 432.900390625 375.599609375 432.900390625 335 c 0 - 432.900390625 264.5 497.5 210.900390625 567.900390625 224.200195312 c 0 -364.5 29.900390625 m 0 - 372.200195312 25.5 374.799804688 15.7998046875 370.5 8.099609375 c 2 - 333.900390625 -55.900390625 l 2 - 330.900390625 -61.099609375 325.5 -64 320 -64 c 0 - 317.299804688 -64 314.599609375 -63.2998046875 312.099609375 -61.900390625 c 0 - 304.400390625 -57.5 301.700195312 -47.7998046875 306.099609375 -40.099609375 c 2 - 342.700195312 23.900390625 l 2 - 347.099609375 31.7001953125 356.900390625 34.2001953125 364.5 29.900390625 c 0 -268.5 29.900390625 m 0 - 276.200195312 25.5 278.799804688 15.7998046875 274.5 8.099609375 c 2 - 237.900390625 -55.900390625 l 2 - 234.900390625 -61.099609375 229.5 -64 224 -64 c 0 - 221.299804688 -64 218.599609375 -63.2998046875 216.099609375 -61.900390625 c 0 - 208.400390625 -57.5 205.700195312 -47.7998046875 210.099609375 -40.099609375 c 2 - 246.700195312 23.900390625 l 2 - 251.099609375 31.7001953125 260.900390625 34.2001953125 268.5 29.900390625 c 0 -172.5 29.900390625 m 0 - 180.200195312 25.5 182.799804688 15.7998046875 178.5 8.099609375 c 2 - 141.900390625 -55.900390625 l 2 - 138.900390625 -61.099609375 133.5 -64 128 -64 c 0 - 125.299804688 -64 122.599609375 -63.2998046875 120.099609375 -61.900390625 c 0 - 112.400390625 -57.5 109.700195312 -47.7998046875 114.099609375 -40.099609375 c 2 - 150.700195312 23.900390625 l 2 - 155.099609375 31.7001953125 164.900390625 34.2001953125 172.5 29.900390625 c 0 -76.5 29.900390625 m 0 - 84.2001953125 25.5 86.7998046875 15.7998046875 82.5 8.099609375 c 2 - 45.900390625 -55.900390625 l 2 - 42.900390625 -61.099609375 37.5 -64 32 -64 c 0 - 29.2998046875 -64 26.599609375 -63.2998046875 24.099609375 -61.900390625 c 0 - 16.400390625 -57.5 13.7001953125 -47.7998046875 18.099609375 -40.099609375 c 2 - 54.7001953125 23.900390625 l 2 - 59.099609375 31.7001953125 68.900390625 34.2001953125 76.5 29.900390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" c l o u d hyphen m o o n hyphen r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" C l o u d hyphen M o o n hyphen R a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" C l o u d hyphen m o o n hyphen r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 24" C L O U D hyphen M O O N hyphen R A I N -EndChar - -StartChar: cloud-rain -Encoding: 63293 63293 922 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 320 m 0 - 469 320 512 277 512 224 c 0 - 512 171 469 128 416 128 c 2 - 96 128 l 2 - 43 128 0 171 0 224 c 0 - 0 266.5 27.7998046875 302.200195312 66.099609375 314.799804688 c 1 - 64.7998046875 321.700195312 64 328.700195312 64 336 c 0 - 64 397.900390625 114.099609375 448 176 448 c 0 - 219.299804688 448 256.400390625 423.200195312 275 387.200195312 c 1 - 289.700195312 404.700195312 311.400390625 416 336 416 c 0 - 380.200195312 416 416 380.200195312 416 336 c 0 - 416 330.400390625 415.5 325 414.400390625 319.799804688 c 1 - 414.900390625 319.799804688 415.400390625 320 416 320 c 0 -88 73.7998046875 m 0 - 90.5 82.2998046875 101.799804688 81.900390625 104 73.7998046875 c 0 - 116.799804688 29.2001953125 144 17.5 144 -13.900390625 c 0 - 144 -41.599609375 122.5 -64 96 -64 c 0 - 69.5 -64 48 -41.599609375 48 -13.900390625 c 0 - 48 17.400390625 75.2001953125 29.400390625 88 73.7998046875 c 0 -248 73.7998046875 m 0 - 250.5 82.2998046875 261.799804688 81.900390625 264 73.7998046875 c 0 - 276.799804688 29.2001953125 304 17.5 304 -13.900390625 c 0 - 304 -41.599609375 282.5 -64 256 -64 c 0 - 229.5 -64 208 -41.599609375 208 -13.900390625 c 0 - 208 17.400390625 235.200195312 29.400390625 248 73.7998046875 c 0 -408 73.7998046875 m 0 - 410.5 82.2998046875 421.799804688 81.900390625 424 73.7998046875 c 0 - 436.799804688 29.2001953125 464 17.5 464 -13.900390625 c 0 - 464 -41.599609375 442.5 -64 416 -64 c 0 - 389.5 -64 368 -41.599609375 368 -13.900390625 c 0 - 368 17.400390625 395.200195312 29.400390625 408 73.7998046875 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" c l o u d hyphen r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C l o u d hyphen R a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C l o u d hyphen r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" C L O U D hyphen R A I N -EndChar - -StartChar: cloud-showers-heavy -Encoding: 63296 63296 923 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -183.900390625 77.900390625 m 0 - 191.599609375 73.5 194.299804688 63.7001953125 189.900390625 56.099609375 c 2 - 125.900390625 -55.900390625 l 2 - 122.900390625 -61.099609375 117.5 -64 112 -64 c 0 - 109.299804688 -64 106.599609375 -63.2998046875 104.099609375 -61.900390625 c 0 - 96.400390625 -57.599609375 93.7001953125 -47.7998046875 98.099609375 -40.099609375 c 2 - 162.099609375 71.900390625 l 2 - 166.5 79.7001953125 176.299804688 82.2998046875 183.900390625 77.900390625 c 0 -279.900390625 77.900390625 m 0 - 287.599609375 73.5 290.299804688 63.7001953125 285.900390625 56.099609375 c 2 - 221.900390625 -55.900390625 l 2 - 218.900390625 -61.099609375 213.5 -64 208 -64 c 0 - 205.299804688 -64 202.599609375 -63.2998046875 200.099609375 -61.900390625 c 0 - 192.400390625 -57.599609375 189.700195312 -47.7998046875 194.099609375 -40.099609375 c 2 - 258.099609375 71.900390625 l 2 - 262.5 79.7001953125 272.299804688 82.2998046875 279.900390625 77.900390625 c 0 -87.900390625 77.900390625 m 0 - 95.599609375 73.5 98.2998046875 63.7001953125 93.900390625 56.099609375 c 2 - 29.900390625 -55.900390625 l 2 - 26.900390625 -61.099609375 21.5 -64 16 -64 c 0 - 13.2998046875 -64 10.599609375 -63.2998046875 8.099609375 -61.900390625 c 0 - 0.400390625 -57.599609375 -2.2998046875 -47.7998046875 2.099609375 -40.099609375 c 2 - 66.099609375 71.900390625 l 2 - 70.5 79.7001953125 80.2998046875 82.2998046875 87.900390625 77.900390625 c 0 -471.900390625 77.900390625 m 0 - 479.599609375 73.5 482.299804688 63.7001953125 477.900390625 56.099609375 c 2 - 413.900390625 -55.900390625 l 2 - 410.900390625 -61.099609375 405.5 -64 400 -64 c 0 - 397.299804688 -64 394.599609375 -63.2998046875 392.099609375 -61.900390625 c 0 - 384.400390625 -57.599609375 381.700195312 -47.7998046875 386.099609375 -40.099609375 c 2 - 450.099609375 71.900390625 l 2 - 454.5 79.7001953125 464.299804688 82.2998046875 471.900390625 77.900390625 c 0 -375.900390625 77.900390625 m 0 - 383.599609375 73.5 386.299804688 63.7001953125 381.900390625 56.099609375 c 2 - 317.900390625 -55.900390625 l 2 - 314.900390625 -61.099609375 309.5 -64 304 -64 c 0 - 301.299804688 -64 298.599609375 -63.2998046875 296.099609375 -61.900390625 c 0 - 288.400390625 -57.599609375 285.700195312 -47.7998046875 290.099609375 -40.099609375 c 2 - 354.099609375 71.900390625 l 2 - 358.5 79.7001953125 368.299804688 82.2998046875 375.900390625 77.900390625 c 0 -416 320 m 0 - 469 320 512 277 512 224 c 0 - 512 171 469 128 416 128 c 2 - 96 128 l 2 - 43 128 0 171 0 224 c 0 - 0 266.5 27.7998046875 302.200195312 66.099609375 314.799804688 c 1 - 64.7998046875 321.700195312 64 328.700195312 64 336 c 0 - 64 397.900390625 114.200195312 448 176 448 c 0 - 219.299804688 448 256.400390625 423.200195312 275 387.200195312 c 1 - 289.700195312 404.700195312 311.400390625 416 336 416 c 0 - 380.200195312 416 416 380.200195312 416 336 c 0 - 416 330.400390625 415.5 325 414.400390625 319.799804688 c 1 - 414.900390625 319.799804688 415.400390625 320 416 320 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" c l o u d hyphen s h o w e r s hyphen h e a v y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C l o u d hyphen S h o w e r s hyphen H e a v y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C l o u d hyphen s h o w e r s hyphen h e a v y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C L O U D hyphen S H O W E R S hyphen H E A V Y -EndChar - -StartChar: cloud-sun-rain -Encoding: 63299 63299 924 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -510.5 222.5 m 1 - 547.799804688 215.700195312 576 183.200195312 576 144 c 0 - 576 99.7998046875 540.200195312 64 496 64 c 2 - 240 64 l 2 - 195.799804688 64 160 99.7998046875 160 144 c 0 - 160 182.799804688 187.599609375 215 224.200195312 222.400390625 c 0 - 224.200195312 222.900390625 224 223.5 224 224 c 0 - 224 277 267 320 320 320 c 0 - 352.099609375 320 380.299804688 304.099609375 397.700195312 280 c 1 - 408.099609375 285 419.700195312 288 432 288 c 0 - 471.200195312 288 503.599609375 259.700195312 510.5 222.5 c 1 -124.099609375 188.099609375 m 0 - 127.200195312 185 130.700195312 182.5 134.299804688 179.799804688 c 1 - 130.400390625 168.400390625 128.099609375 156.400390625 128.099609375 143.900390625 c 0 - 128.099609375 141.400390625 128.599609375 139.099609375 128.799804688 136.700195312 c 2 - 69.599609375 117 l 2 - 59.400390625 113.700195312 49.7001953125 123.299804688 53.099609375 133.5 c 2 - 78.2001953125 208.799804688 l 1 - 7.2001953125 244.299804688 l 2 - -2.400390625 249.099609375 -2.400390625 262.799804688 7.2001953125 267.599609375 c 2 - 78.2001953125 303.099609375 l 1 - 53.099609375 378.400390625 l 2 - 49.7001953125 388.599609375 59.2998046875 398.299804688 69.5 394.900390625 c 2 - 144.799804688 369.799804688 l 1 - 180.299804688 440.799804688 l 2 - 185.099609375 450.400390625 198.799804688 450.400390625 203.599609375 440.799804688 c 2 - 239.099609375 369.799804688 l 1 - 314.400390625 394.900390625 l 2 - 324.599609375 398.299804688 334.299804688 388.700195312 330.900390625 378.5 c 2 - 322 351.799804688 l 2 - 321.299804688 351.799804688 320.700195312 352 320 352 c 0 - 294.400390625 352 270.799804688 344.200195312 250.799804688 331.299804688 c 1 - 213.200195312 360.700195312 158.700195312 358.5 124.099609375 323.900390625 c 0 - 86.7001953125 286.400390625 86.7001953125 225.5 124.099609375 188.099609375 c 0 -193.900390625 246.099609375 m 1 - 175.700195312 237.799804688 160.400390625 224.799804688 149.099609375 208.900390625 c 1 - 136.200195312 220.599609375 128 237.299804688 128 256 c 0 - 128 291.299804688 156.700195312 320 192 320 c 0 - 204.400390625 320 216 316.299804688 225.799804688 310.099609375 c 1 - 209.700195312 292.5 198.200195312 270.599609375 193.900390625 246.099609375 c 1 -524.5 29.900390625 m 0 - 532.200195312 25.5 534.799804688 15.7998046875 530.5 8.099609375 c 2 - 493.900390625 -55.900390625 l 2 - 490.900390625 -61.099609375 485.5 -64 480 -64 c 0 - 477.299804688 -64 474.599609375 -63.2998046875 472.099609375 -61.900390625 c 0 - 464.400390625 -57.5 461.700195312 -47.7998046875 466.099609375 -40.099609375 c 2 - 502.700195312 23.900390625 l 2 - 507.099609375 31.7001953125 516.900390625 34.2001953125 524.5 29.900390625 c 0 -428.5 29.900390625 m 0 - 436.200195312 25.5 438.799804688 15.7998046875 434.5 8.099609375 c 2 - 397.900390625 -55.900390625 l 2 - 394.900390625 -61.099609375 389.5 -64 384 -64 c 0 - 381.299804688 -64 378.599609375 -63.2998046875 376.099609375 -61.900390625 c 0 - 368.400390625 -57.5 365.700195312 -47.7998046875 370.099609375 -40.099609375 c 2 - 406.700195312 23.900390625 l 2 - 411.099609375 31.7001953125 420.900390625 34.2001953125 428.5 29.900390625 c 0 -332.5 29.900390625 m 0 - 340.200195312 25.5 342.799804688 15.7998046875 338.5 8.099609375 c 2 - 301.900390625 -55.900390625 l 2 - 298.900390625 -61.099609375 293.5 -64 288 -64 c 0 - 285.299804688 -64 282.599609375 -63.2998046875 280.099609375 -61.900390625 c 0 - 272.400390625 -57.5 269.700195312 -47.7998046875 274.099609375 -40.099609375 c 2 - 310.700195312 23.900390625 l 2 - 315.099609375 31.7001953125 324.900390625 34.2001953125 332.5 29.900390625 c 0 -236.5 29.900390625 m 0 - 244.200195312 25.5 246.799804688 15.7998046875 242.5 8.099609375 c 2 - 205.900390625 -55.900390625 l 2 - 202.900390625 -61.099609375 197.5 -64 192 -64 c 0 - 189.299804688 -64 186.599609375 -63.2998046875 184.099609375 -61.900390625 c 0 - 176.400390625 -57.5 173.700195312 -47.7998046875 178.099609375 -40.099609375 c 2 - 214.700195312 23.900390625 l 2 - 219.099609375 31.7001953125 228.900390625 34.2001953125 236.5 29.900390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" c l o u d hyphen s u n hyphen r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" C l o u d hyphen S u n hyphen R a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" C l o u d hyphen s u n hyphen r a i n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 28" C L O U D hyphen S U N hyphen R A I N -EndChar - -StartChar: democrat -Encoding: 63303 63303 925 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -637.299804688 191.099609375 m 2 - 642.200195312 183.700195312 640.200195312 173.799804688 632.900390625 168.799804688 c 2 - 606.299804688 151.099609375 l 2 - 598.900390625 146.200195312 589 148.099609375 584.099609375 155.5 c 0 - 562.299804688 188.200195312 560.200195312 193.599609375 544 205.799804688 c 1 - 544 128 l 1 - 192 128 l 1 - 138 236 l 1 - 99.900390625 201.400390625 l 2 - 93.900390625 195.400390625 85.7998046875 192 77.2998046875 192 c 2 - 46.2998046875 192 l 2 - 34.2001953125 192 23.099609375 198.900390625 17.7001953125 209.700195312 c 2 - 3.400390625 238.299804688 l 2 - -2 249.099609375 -0.900390625 262.099609375 6.400390625 271.799804688 c 2 - 81 371.099609375 l 2 - 82.7001953125 373.400390625 85.2001953125 374.799804688 87.400390625 376.5 c 1 - 83.400390625 378.700195312 79.400390625 380.700195312 76.099609375 384 c 0 - 59.7001953125 400.400390625 57.7001953125 425.799804688 70 444.400390625 c 0 - 72.7998046875 448.599609375 78.7998046875 449.200195312 82.400390625 445.599609375 c 2 - 125.299804688 402.799804688 l 1 - 167.099609375 444.599609375 l 2 - 171.5 449 178.900390625 448.299804688 182.299804688 443.099609375 c 0 - 197.400390625 420.299804688 194.900390625 389.299804688 174.799804688 369.200195312 c 1 - 256 288 l 1 - 491.599609375 288 l 2 - 542.400390625 288 589.5 262.799804688 617.700195312 220.5 c 2 - 637.299804688 191.099609375 l 2 -296.200195312 204.700195312 m 2 - 299.200195312 207.599609375 297.599609375 212.599609375 293.599609375 213.200195312 c 2 - 270.799804688 216.5 l 1 - 260.599609375 237.200195312 l 2 - 258.700195312 240.900390625 253.400390625 240.900390625 251.599609375 237.200195312 c 2 - 241.400390625 216.5 l 1 - 218.599609375 213.200195312 l 2 - 214.5 212.599609375 212.799804688 207.599609375 215.799804688 204.700195312 c 2 - 232.299804688 188.599609375 l 1 - 228.400390625 165.900390625 l 2 - 227.700195312 161.799804688 232 158.700195312 235.599609375 160.599609375 c 2 - 256 171.299804688 l 1 - 276.400390625 160.599609375 l 2 - 280 158.700195312 284.299804688 161.799804688 283.599609375 165.900390625 c 2 - 279.700195312 188.599609375 l 1 - 296.200195312 204.700195312 l 2 -408.200195312 204.700195312 m 2 - 411.200195312 207.599609375 409.599609375 212.599609375 405.599609375 213.200195312 c 2 - 382.799804688 216.5 l 1 - 372.599609375 237.200195312 l 2 - 370.700195312 240.900390625 365.400390625 240.900390625 363.599609375 237.200195312 c 2 - 353.400390625 216.5 l 1 - 330.599609375 213.200195312 l 2 - 326.5 212.599609375 324.799804688 207.599609375 327.799804688 204.700195312 c 2 - 344.299804688 188.599609375 l 1 - 340.400390625 165.900390625 l 2 - 339.700195312 161.799804688 344 158.700195312 347.599609375 160.599609375 c 2 - 368 171.299804688 l 1 - 388.400390625 160.599609375 l 2 - 392 158.700195312 396.299804688 161.799804688 395.599609375 165.900390625 c 2 - 391.700195312 188.599609375 l 1 - 408.200195312 204.700195312 l 2 -520.200195312 204.700195312 m 2 - 523.200195312 207.599609375 521.599609375 212.599609375 517.599609375 213.200195312 c 2 - 494.799804688 216.5 l 1 - 484.599609375 237.200195312 l 2 - 482.700195312 240.900390625 477.400390625 240.900390625 475.599609375 237.200195312 c 2 - 465.400390625 216.5 l 1 - 442.599609375 213.200195312 l 2 - 438.5 212.599609375 436.799804688 207.599609375 439.799804688 204.700195312 c 2 - 456.299804688 188.599609375 l 1 - 452.400390625 165.900390625 l 2 - 451.700195312 161.799804688 456 158.700195312 459.599609375 160.599609375 c 2 - 480 171.299804688 l 1 - 500.400390625 160.599609375 l 2 - 504 158.700195312 508.299804688 161.799804688 507.599609375 165.900390625 c 2 - 503.700195312 188.599609375 l 1 - 520.200195312 204.700195312 l 2 -192 -48 m 2 - 192 96 l 1 - 544 96 l 1 - 544 -48 l 2 - 544 -56.7998046875 536.799804688 -64 528 -64 c 2 - 464 -64 l 2 - 455.200195312 -64 448 -56.7998046875 448 -48 c 2 - 448 32 l 1 - 288 32 l 1 - 288 -48 l 2 - 288 -56.7998046875 280.799804688 -64 272 -64 c 2 - 208 -64 l 2 - 199.200195312 -64 192 -56.7998046875 192 -48 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" d e m o c r a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" D e m o c r a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" D E M O C R A T -EndChar - -StartChar: flag-usa -Encoding: 63309 63309 926 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 448 m 0 - 49.7001953125 448 64 433.700195312 64 416 c 2 - 64 -48 l 2 - 64 -56.7998046875 56.7998046875 -64 48 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 416 l 2 - 0 433.700195312 14.2998046875 448 32 448 c 0 -299.900390625 144.400390625 m 0 - 331 136.200195312 362.5 127.900390625 399.900390625 127.799804688 c 0 - 431.799804688 127.799804688 468.400390625 134.599609375 512 151.900390625 c 1 - 512 115.900390625 l 2 - 512 103.599609375 504.900390625 92.099609375 493.5 87.099609375 c 0 - 317.700195312 10.7001953125 281.700195312 156.200195312 96 64 c 1 - 96 133.299804688 l 1 - 188.200195312 173.200195312 242.700195312 159.5 299.900390625 144.400390625 c 0 -299.900390625 240.400390625 m 0 - 331 232.200195312 362.5 223.900390625 399.900390625 223.900390625 c 0 - 431.799804688 223.900390625 468.400390625 230.700195312 512 248 c 1 - 512 186.5 l 1 - 419.799804688 146.599609375 365.299804688 160.299804688 308.099609375 175.400390625 c 0 - 250.599609375 190.5 190.799804688 205.400390625 96 167.799804688 c 1 - 96 229.299804688 l 1 - 188.200195312 269.200195312 242.700195312 255.5 299.900390625 240.400390625 c 0 -309.400390625 366.299804688 m 0 - 302.400390625 368.400390625 295.299804688 370.5 288.099609375 372.5 c 1 - 288.099609375 339.299804688 l 1 - 292.099609375 338.200195312 296.200195312 337 300.200195312 335.799804688 c 0 - 326.900390625 327.700195312 353.099609375 319.900390625 385.900390625 319.900390625 c 0 - 418.700195312 319.900390625 458.400390625 327.799804688 512 351.299804688 c 1 - 512 282.400390625 l 1 - 419.799804688 242.599609375 365.299804688 256.299804688 308.099609375 271.299804688 c 0 - 250.599609375 286.400390625 190.799804688 301.200195312 96 263.700195312 c 1 - 96 415.599609375 l 1 - 305.400390625 510.200195312 291.299804688 356.5 462.599609375 443.799804688 c 0 - 485.200195312 455.299804688 512 442.299804688 512 417.200195312 c 2 - 512 386.400390625 l 1 - 406.799804688 337.299804688 361.200195312 350.700195312 309.400390625 366.299804688 c 0 -160 319.900390625 m 0 - 168.799804688 319.900390625 176 327 176 335.900390625 c 0 - 176 344.799804688 168.799804688 351.900390625 160 351.900390625 c 0 - 151.200195312 351.900390625 144 344.700195312 144 335.900390625 c 0 - 144 327 151.200195312 319.900390625 160 319.900390625 c 0 -160 375.700195312 m 0 - 168.799804688 375.700195312 176 382.900390625 176 391.700195312 c 0 - 176 400.599609375 168.799804688 407.700195312 160 407.700195312 c 0 - 151.200195312 407.700195312 144 400.5 144 391.700195312 c 0 - 144 382.799804688 151.200195312 375.700195312 160 375.700195312 c 0 -224 327.799804688 m 0 - 232.799804688 327.799804688 240 335 240 343.799804688 c 0 - 240 352.700195312 232.799804688 359.799804688 224 359.799804688 c 0 - 215.200195312 359.799804688 208 352.599609375 208 343.799804688 c 0 - 208 334.900390625 215.200195312 327.799804688 224 327.799804688 c 0 -224 383.700195312 m 0 - 232.799804688 383.700195312 240 390.900390625 240 399.700195312 c 0 - 240 408.599609375 232.799804688 415.700195312 224 415.700195312 c 0 - 215.200195312 415.700195312 208 408.5 208 399.700195312 c 0 - 208 390.799804688 215.200195312 383.700195312 224 383.700195312 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" f l a g hyphen u s a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" F l a g hyphen U s a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" F l a g hyphen u s a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" F L A G hyphen U S A -EndChar - -StartChar: meteor -Encoding: 63315 63315 927 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -491.200195312 447.299804688 m 0 - 503.599609375 451 515 439.599609375 511.400390625 427.200195312 c 0 - 499.799804688 388.5 477.099609375 315.5 450.099609375 239.5 c 1 - 457.099609375 237.400390625 463.5 235.5 468.700195312 233.900390625 c 0 - 478.400390625 230.900390625 482.900390625 220 478.200195312 211 c 0 - 456.099609375 168.700195312 395.5 58.2001953125 335.700195312 -3.400390625 c 0 - 334.700195312 -4.5 333.700195312 -5.900390625 332.700195312 -6.900390625 c 0 - 294.599609375 -45 244.700195312 -64 194.799804688 -64 c 0 - 144.900390625 -64.099609375 95 -45 57 -7 c 0 - 19 31.099609375 0 81 0 130.799804688 c 0 - 0 180.700195312 19 230.599609375 57.099609375 268.599609375 c 0 - 58.099609375 269.599609375 59.5 270.599609375 60.599609375 271.599609375 c 0 - 122.200195312 331.5 232.599609375 392 275 414.099609375 c 0 - 284 418.799804688 294.900390625 414.299804688 297.900390625 404.599609375 c 0 - 299.5 399.5 301.400390625 393 303.5 386 c 1 - 379.400390625 413 452.5 435.700195312 491.200195312 447.299804688 c 0 -192 0 m 0 - 262.700195312 0 320 57.2998046875 320 128 c 0 - 320 198.700195312 262.700195312 256 192 256 c 0 - 121.299804688 256 64 198.700195312 64 128 c 0 - 64 57.2998046875 121.299804688 0 192 0 c 0 -160 192 m 0 - 177.700195312 192 192 177.700195312 192 160 c 0 - 192 142.299804688 177.700195312 128 160 128 c 0 - 142.299804688 128 128 142.299804688 128 160 c 0 - 128 177.700195312 142.299804688 192 160 192 c 0 -208 96 m 0 - 216.799804688 96 224 88.7998046875 224 80 c 0 - 224 71.2001953125 216.799804688 64 208 64 c 0 - 199.200195312 64 192 71.2001953125 192 80 c 0 - 192 88.7998046875 199.200195312 96 208 96 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" m e t e o r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" M E T E O R -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" M e t e o r -EndChar - -StartChar: person-booth -Encoding: 63318 63318 928 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 -48 m 2 - 192 128 l 1 - 256 128 l 1 - 256 -48 l 2 - 256 -56.7998046875 248.799804688 -64 240 -64 c 2 - 208 -64 l 2 - 199.200195312 -64 192 -56.7998046875 192 -48 c 2 -224 224 m 2 - 241.700195312 224 256 209.700195312 256 192 c 0 - 256 174.299804688 241.700195312 160 224 160 c 2 - 166.5 160 l 2 - 153.700195312 160 141.700195312 165 132.599609375 174.099609375 c 2 - 111.700195312 195 l 1 - 111.700195312 114.400390625 l 1 - 152.900390625 53.099609375 l 2 - 157.299804688 44.2998046875 159.599609375 34.400390625 159.599609375 24.5 c 2 - 159.599609375 -32 l 2 - 159.599609375 -49.7001953125 145.299804688 -64 127.599609375 -64 c 0 - 109.900390625 -64 95.599609375 -49.7001953125 95.599609375 -32 c 2 - 95.599609375 24 l 1 - 66.5 67 l 2 - 65.599609375 67.400390625 64.900390625 68.2001953125 64 68.7001953125 c 2 - 63.900390625 -32 l 2 - 63.900390625 -49.7001953125 49.5 -64 31.900390625 -64 c 0 - 14.2998046875 -64 0 -49.7001953125 0 -32 c 2 - 0.2001953125 128 l 1 - 0 223.900390625 l 2 - 0 241 6.7001953125 257.099609375 18.7001953125 269.200195312 c 0 - 30.7998046875 281.299804688 46.900390625 288 64 288 c 2 - 82.7001953125 288 l 2 - 99.7001953125 288 115.799804688 281.400390625 127.900390625 269.299804688 c 2 - 173.099609375 224 l 1 - 224 224 l 2 -64 320 m 0 - 37.5 320 16 341.5 16 368 c 0 - 16 394.5 37.5 416 64 416 c 0 - 90.5 416 112 394.5 112 368 c 0 - 112 341.5 90.5 320 64 320 c 0 -288 416 m 1 - 288 448 l 1 - 480 448 l 1 - 480 32 l 2 - 480 14.2998046875 465.700195312 0 448 0 c 0 - 430.299804688 0 416 14.2998046875 416 32 c 1 - 416 14.2998046875 401.700195312 0 384 0 c 0 - 366.900390625 0 353.200195312 13.5 352.299804688 30.400390625 c 1 - 348 9.099609375 335.200195312 0 320 0 c 0 - 301.599609375 0 284.299804688 16.7001953125 288.599609375 38.2998046875 c 2 - 319.5 192.900390625 l 1 - 288 416 l 1 -192 416 m 2 - 192 433.700195312 206.299804688 448 224 448 c 2 - 256 448 l 1 - 256 256 l 1 - 192 256 l 1 - 192 416 l 2 -544 448 m 2 - 561.700195312 448 576 433.700195312 576 416 c 2 - 576 -48 l 2 - 576 -56.7998046875 568.799804688 -64 560 -64 c 2 - 528 -64 l 2 - 519.200195312 -64 512 -56.7998046875 512 -48 c 2 - 512 448 l 1 - 544 448 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" p e r s o n hyphen b o o t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" P e r s o n hyphen B o o t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" P e r s o n hyphen b o o t h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" P E R S O N hyphen B O O T H -EndChar - -StartChar: poo-storm -Encoding: 63322 63322 929 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -308 112 m 2 - 317.200195312 112 323 102 318.400390625 94 c 2 - 230.400390625 -58 l 2 - 228.200195312 -61.7998046875 224.200195312 -64 220 -64 c 0 - 212.299804688 -64 206.5 -56.7998046875 208.299804688 -49.2001953125 c 2 - 231.299804688 48 l 1 - 172 48 l 2 - 164.700195312 48 159.099609375 54.400390625 160.099609375 61.599609375 c 2 - 176.099609375 181.599609375 l 2 - 176.900390625 187.5 182 192 188 192 c 2 - 256 192 l 2 - 263.900390625 192 269.599609375 184.5 267.599609375 176.900390625 c 2 - 250.299804688 112 l 1 - 308 112 l 2 -374.400390625 223.299804688 m 1 - 415.400390625 220 448 185.799804688 447.900390625 144 c 0 - 447.900390625 100 411.900390625 64 367.900390625 64 c 2 - 337.900390625 64 l 1 - 346 78 l 2 - 353.799804688 91.5 353.799804688 108.400390625 346 122 c 0 - 338.200195312 135.599609375 323.599609375 144 307.900390625 144 c 2 - 291.900390625 144 l 1 - 298.5 168.700195312 l 2 - 302.099609375 182 299.299804688 195.900390625 290.900390625 206.799804688 c 0 - 282.5 217.700195312 269.799804688 224 256 224 c 2 - 188 224 l 2 - 166 224 147.299804688 207.599609375 144.299804688 185.799804688 c 2 - 128.299804688 65.7998046875 l 2 - 128.299804688 65.2001953125 128.400390625 64.599609375 128.299804688 64 c 2 - 80 64 l 2 - 36 64 0 100 0 144 c 0 - 0 185.799804688 32.599609375 220 73.599609375 223.299804688 c 1 - 67.7001953125 232.900390625 64 243.900390625 64 256 c 0 - 64 291.299804688 92.7001953125 320 128 320 c 2 - 144 320 l 2 - 188.200195312 320 224 355.799804688 224 400 c 0 - 224 417.400390625 218.299804688 433.400390625 208.900390625 446.5 c 1 - 213.799804688 447.299804688 218.799804688 448 224 448 c 0 - 277 448 320 405 320 352 c 0 - 320 340.700195312 317.700195312 330.099609375 314.099609375 320 c 1 - 320 320 l 2 - 355.299804688 320 384 291.299804688 384 256 c 0 - 384 243.900390625 380.299804688 232.900390625 374.400390625 223.299804688 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" p o o hyphen s t o r m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" P o o hyphen S t o r m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" P o o hyphen s t o r m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" P O O hyphen S T O R M -EndChar - -StartChar: rainbow -Encoding: 63323 63323 930 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -268.299804688 415.299804688 m 0 - 436 426.599609375 576 293.299804688 576 128 c 2 - 576 -16 l 2 - 576 -24.7998046875 568.799804688 -32 560 -32 c 2 - 528 -32 l 2 - 519.200195312 -32 512 -24.7998046875 512 -16 c 2 - 512 120.200195312 l 2 - 512 234 430.400390625 335.599609375 317.5 350.099609375 c 0 - 180.900390625 367.700195312 64 261.200195312 64 128 c 2 - 64 -16 l 2 - 64 -24.7998046875 56.7998046875 -32 48 -32 c 2 - 16 -32 l 2 - 7.2001953125 -32 0 -24.7998046875 0 -16 c 2 - 0 117.799804688 l 2 - 0 271.099609375 115.400390625 405.099609375 268.299804688 415.299804688 c 0 -262.700195312 318.400390625 m 0 - 379.799804688 333.400390625 480 242.200195312 480 128 c 2 - 480 -16 l 2 - 480 -24.7998046875 472.799804688 -32 464 -32 c 2 - 432 -32 l 2 - 423.200195312 -32 416 -24.7998046875 416 -16 c 2 - 416 122.299804688 l 2 - 416 189.200195312 367.299804688 248.900390625 300.799804688 255.400390625 c 0 - 224.5 262.799804688 160 202.799804688 160 128 c 2 - 160 -16 l 2 - 160 -24.7998046875 152.799804688 -32 144 -32 c 2 - 112 -32 l 2 - 103.200195312 -32 96 -24.7998046875 96 -16 c 2 - 96 121.299804688 l 2 - 96 218.900390625 166 306 262.700195312 318.400390625 c 0 -268.900390625 222.099609375 m 0 - 330.200195312 234 384 187.200195312 384 128 c 2 - 384 -16 l 2 - 384 -24.7998046875 376.799804688 -32 368 -32 c 2 - 336 -32 l 2 - 327.200195312 -32 320 -24.7998046875 320 -16 c 2 - 320 128 l 2 - 320 145.599609375 305.700195312 160 288 160 c 0 - 270.299804688 160 256 145.599609375 256 128 c 2 - 256 -16 l 2 - 256 -24.7998046875 248.799804688 -32 240 -32 c 2 - 208 -32 l 2 - 199.200195312 -32 192 -24.7998046875 192 -16 c 2 - 192 124.200195312 l 2 - 192 170.599609375 223.299804688 213.200195312 268.900390625 222.099609375 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" r a i n b o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" R a i n b o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" R A I N B O W -EndChar - -StartChar: republican -Encoding: 63326 63326 931 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -544 256 m 2 - 544 192 l 1 - 0 192 l 1 - 0 256 l 2 - 0 344.400390625 71.599609375 416 160 416 c 2 - 384 416 l 2 - 472.400390625 416 544 344.400390625 544 256 c 2 -176.299804688 277.599609375 m 2 - 179.799804688 281.099609375 177.900390625 287.099609375 172.900390625 287.799804688 c 2 - 145.5 291.799804688 l 1 - 133.299804688 316.599609375 l 2 - 131.200195312 321 124.799804688 321.099609375 122.599609375 316.599609375 c 2 - 110.400390625 291.799804688 l 1 - 83 287.799804688 l 2 - 78.099609375 287.099609375 76.099609375 281.099609375 79.7001953125 277.599609375 c 2 - 99.5 258.299804688 l 1 - 94.7998046875 231 l 2 - 94 226.099609375 99.2001953125 222.400390625 103.5 224.700195312 c 2 - 128 237.599609375 l 1 - 152.5 224.700195312 l 2 - 156.900390625 222.400390625 162 226.099609375 161.200195312 231 c 2 - 156.5 258.299804688 l 1 - 176.299804688 277.599609375 l 2 -320.299804688 277.599609375 m 2 - 323.799804688 281.099609375 321.900390625 287.099609375 316.900390625 287.799804688 c 2 - 289.5 291.799804688 l 1 - 277.299804688 316.599609375 l 2 - 275.200195312 321 268.799804688 321.099609375 266.599609375 316.599609375 c 2 - 254.400390625 291.799804688 l 1 - 227 287.799804688 l 2 - 222.099609375 287.099609375 220.099609375 281.099609375 223.700195312 277.599609375 c 2 - 243.5 258.299804688 l 1 - 238.799804688 231 l 2 - 238 226.099609375 243.200195312 222.400390625 247.5 224.700195312 c 2 - 272 237.599609375 l 1 - 296.5 224.700195312 l 2 - 300.900390625 222.400390625 306 226.099609375 305.200195312 231 c 2 - 300.5 258.299804688 l 1 - 320.299804688 277.599609375 l 2 -464.299804688 277.599609375 m 2 - 467.799804688 281.099609375 465.900390625 287.099609375 460.900390625 287.799804688 c 2 - 433.5 291.799804688 l 1 - 421.299804688 316.599609375 l 2 - 419.200195312 321 412.799804688 321.099609375 410.599609375 316.599609375 c 2 - 398.400390625 291.799804688 l 1 - 371 287.799804688 l 2 - 366.099609375 287.099609375 364.099609375 281.099609375 367.700195312 277.599609375 c 2 - 387.5 258.299804688 l 1 - 382.799804688 231 l 2 - 382 226.099609375 387.200195312 222.400390625 391.5 224.700195312 c 2 - 416 237.599609375 l 1 - 440.5 224.700195312 l 2 - 444.900390625 222.400390625 450 226.099609375 449.200195312 231 c 2 - 444.5 258.299804688 l 1 - 464.299804688 277.599609375 l 2 -624 128 m 2 - 632.799804688 128 640 120.799804688 640 112 c 2 - 640 48 l 2 - 640 1.099609375 599.400390625 -36.5 551.599609375 -31.599609375 c 0 - 510 -27.400390625 480 10.900390625 480 52.7001953125 c 2 - 480 96 l 1 - 448 96 l 1 - 448 -16 l 2 - 448 -24.7998046875 440.799804688 -32 432 -32 c 2 - 336 -32 l 2 - 327.200195312 -32 320 -24.7998046875 320 -16 c 2 - 320 64 l 1 - 128 64 l 1 - 128 -16 l 2 - 128 -24.7998046875 120.799804688 -32 112 -32 c 2 - 16 -32 l 2 - 7.2001953125 -32 0 -24.7998046875 0 -16 c 2 - 0 160 l 1 - 544 160 l 1 - 544 48 l 2 - 544 39.2001953125 551.200195312 32 560 32 c 0 - 568.799804688 32 576 39.2001953125 576 48 c 2 - 576 112 l 2 - 576 120.799804688 583.200195312 128 592 128 c 2 - 624 128 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" r e p u b l i c a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" R e p u b l i c a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" R E P U B L I C A N -EndChar - -StartChar: smog -Encoding: 63327 63327 932 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -624 80 m 2 - 632.799804688 80 640 72.7998046875 640 64 c 2 - 640 48 l 2 - 640 39.2001953125 632.799804688 32 624 32 c 2 - 80 32 l 2 - 71.2001953125 32 64 39.2001953125 64 48 c 2 - 64 64 l 2 - 64 72.7998046875 71.2001953125 80 80 80 c 2 - 624 80 l 2 -144 -16 m 2 - 152.799804688 -16 160 -23.2001953125 160 -32 c 2 - 160 -48 l 2 - 160 -56.7998046875 152.799804688 -64 144 -64 c 2 - 16 -64 l 2 - 7.2001953125 -64 0 -56.7998046875 0 -48 c 2 - 0 -32 l 2 - 0 -23.2001953125 7.2001953125 -16 16 -16 c 2 - 144 -16 l 2 -560 -16 m 2 - 568.799804688 -16 576 -23.2001953125 576 -32 c 2 - 576 -48 l 2 - 576 -56.7998046875 568.799804688 -64 560 -64 c 2 - 224 -64 l 2 - 215.200195312 -64 208 -56.7998046875 208 -48 c 2 - 208 -32 l 2 - 208 -23.2001953125 215.200195312 -16 224 -16 c 2 - 560 -16 l 2 -144 160 m 2 - 64.5 160 0 224.5 0 304 c 0 - 0 383.5 64.5 448 144 448 c 0 - 185 448 221.799804688 430.700195312 248 403.200195312 c 1 - 274.200195312 430.700195312 311 448 352 448 c 0 - 406.799804688 448 454 417 478.299804688 371.900390625 c 1 - 493.299804688 379.400390625 510 384 528 384 c 0 - 589.900390625 384 640 333.900390625 640 272 c 0 - 640 210.099609375 589.900390625 160 528 160 c 2 - 467.900390625 160 l 1 - 445.299804688 140.299804688 416.299804688 128 384 128 c 0 - 351.700195312 128 322.599609375 140.299804688 300.099609375 160 c 1 - 144 160 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" s m o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S m o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 56" S M O G -EndChar - -StartChar: temperature-high -Encoding: 63337 63337 933 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 448 m 0 - 468.900390625 448 512 404.900390625 512 352 c 0 - 512 299.099609375 468.900390625 256 416 256 c 0 - 363.099609375 256 320 299.099609375 320 352 c 0 - 320 404.900390625 363.099609375 448 416 448 c 0 -416 320 m 0 - 433.700195312 320 448 334.299804688 448 352 c 0 - 448 369.700195312 433.700195312 384 416 384 c 0 - 398.299804688 384 384 369.700195312 384 352 c 0 - 384 334.299804688 398.299804688 320 416 320 c 0 -256 336 m 2 - 256 169.5 l 1 - 275.700195312 144.900390625 288 114 288 80 c 0 - 288 0.5 223.5 -64 144 -64 c 0 - 64.5 -64 0 0.5 0 80 c 0 - 0 114 12.2998046875 144.799804688 32 169.5 c 1 - 32 336 l 2 - 32 397.900390625 82.099609375 448 144 448 c 0 - 205.900390625 448 256 397.900390625 256 336 c 2 -144 0 m 0 - 188.099609375 0 224 35.900390625 224 80 c 0 - 224 105.5 211.799804688 129 192 143.799804688 c 1 - 192 336 l 2 - 192 362.5 170.5 384 144 384 c 0 - 117.5 384 96 362.5 96 336 c 2 - 96 143.799804688 l 1 - 76.2001953125 128.900390625 64 105.5 64 80 c 0 - 64 35.900390625 99.900390625 0 144 0 c 0 -160 125.099609375 m 1 - 178.599609375 118.5 192 100.900390625 192 80 c 0 - 192 53.5 170.5 32 144 32 c 0 - 117.5 32 96 53.5 96 80 c 0 - 96 100.900390625 109.400390625 118.5 128 125.099609375 c 1 - 128 336 l 2 - 128 344.799804688 135.200195312 352 144 352 c 0 - 152.799804688 352 160 344.799804688 160 336 c 2 - 160 125.099609375 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" t e m p e r a t u r e hyphen h i g h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" T e m p e r a t u r e hyphen H i g h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" T e m p e r a t u r e hyphen h i g h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 21" T E M P E R A T U R E hyphen H I G H -EndChar - -StartChar: temperature-low -Encoding: 63339 63339 934 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 448 m 0 - 468.900390625 448 512 404.900390625 512 352 c 0 - 512 299.099609375 468.900390625 256 416 256 c 0 - 363.099609375 256 320 299.099609375 320 352 c 0 - 320 404.900390625 363.099609375 448 416 448 c 0 -416 320 m 0 - 433.700195312 320 448 334.299804688 448 352 c 0 - 448 369.700195312 433.700195312 384 416 384 c 0 - 398.299804688 384 384 369.700195312 384 352 c 0 - 384 334.299804688 398.299804688 320 416 320 c 0 -256 336 m 2 - 256 169.5 l 1 - 275.700195312 144.900390625 288 114 288 80 c 0 - 288 0.5 223.5 -64 144 -64 c 0 - 64.5 -64 0 0.5 0 80 c 0 - 0 114 12.2998046875 144.799804688 32 169.5 c 1 - 32 336 l 2 - 32 397.900390625 82.099609375 448 144 448 c 0 - 205.900390625 448 256 397.900390625 256 336 c 2 -144 0 m 0 - 188.099609375 0 224 35.900390625 224 80 c 0 - 224 105.5 211.799804688 129 192 143.799804688 c 1 - 192 336 l 2 - 192 362.5 170.5 384 144 384 c 0 - 117.5 384 96 362.5 96 336 c 2 - 96 143.799804688 l 1 - 76.2001953125 128.900390625 64 105.5 64 80 c 0 - 64 35.900390625 99.900390625 0 144 0 c 0 -160 125.099609375 m 1 - 178.599609375 118.5 192 100.900390625 192 80 c 0 - 192 53.5 170.5 32 144 32 c 0 - 117.5 32 96 53.5 96 80 c 0 - 96 100.900390625 109.400390625 118.5 128 125.099609375 c 1 - 128 144 l 2 - 128 152.799804688 135.200195312 160 144 160 c 0 - 152.799804688 160 160 152.799804688 160 144 c 2 - 160 125.099609375 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" t e m p e r a t u r e hyphen l o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" T e m p e r a t u r e hyphen L o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" T e m p e r a t u r e hyphen l o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" T E M P E R A T U R E hyphen L O W -EndChar - -StartChar: vote-yea -Encoding: 63346 63346 935 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -608 128 m 2 - 625.700195312 128 640 113.700195312 640 96 c 2 - 640 0 l 2 - 640 -17.7001953125 625.700195312 -32 608 -32 c 2 - 32 -32 l 2 - 14.2998046875 -32 0 -17.7001953125 0 0 c 2 - 0 96 l 2 - 0 113.700195312 14.2998046875 128 32 128 c 2 - 96 128 l 1 - 96 64 l 1 - 73.599609375 64 l 2 - 68.2998046875 64 64 60.400390625 64 56 c 2 - 64 40 l 2 - 64 35.599609375 68.2998046875 32 73.599609375 32 c 2 - 566.400390625 32 l 2 - 571.700195312 32 576 35.599609375 576 40 c 2 - 576 56 l 2 - 576 60.400390625 571.700195312 64 566.400390625 64 c 2 - 544 64 l 1 - 544 128 l 1 - 608 128 l 2 -512 64 m 1 - 128 64 l 1 - 128 383.700195312 l 2 - 128 401.5 142.5 416 160.400390625 416 c 2 - 479.700195312 416 l 2 - 497.5 416 512 401.599609375 512 383.700195312 c 2 - 512 64 l 1 -211.200195312 246 m 2 - 207 241.799804688 206.900390625 235 211.200195312 230.799804688 c 2 - 285.299804688 156.099609375 l 2 - 289.5 151.799804688 296.299804688 151.799804688 300.5 156 c 2 - 428.799804688 283.200195312 l 2 - 433.099609375 287.400390625 433.099609375 294.200195312 428.900390625 298.400390625 c 2 - 403.599609375 323.900390625 l 2 - 399.400390625 328.200195312 392.599609375 328.200195312 388.400390625 324 c 2 - 293.200195312 229.599609375 l 1 - 251.900390625 271.200195312 l 2 - 247.700195312 275.5 240.900390625 275.5 236.700195312 271.299804688 c 2 - 211.200195312 246 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" v o t e hyphen y e a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" V o t e hyphen Y e a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" V o t e hyphen y e a -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" V O T E hyphen Y E A -EndChar - -StartChar: water -Encoding: 63347 63347 936 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -562.099609375 64.099609375 m 0 - 570.200195312 63.2001953125 576 55.7998046875 575.900390625 47.7998046875 c 2 - 575.900390625 16.2001953125 l 2 - 575.900390625 7.099609375 568.299804688 -0.599609375 559.200195312 0.2001953125 c 0 - 531 2.7001953125 503.400390625 11.7998046875 480.099609375 26 c 1 - 425.099609375 -8.099609375 344.599609375 -8.599609375 288.099609375 26 c 1 - 233.099609375 -8.099609375 152.599609375 -8.599609375 96.099609375 26 c 1 - 72.7998046875 11.5 45.5 2.599609375 16.7001953125 0.099609375 c 0 - 7.599609375 -0.7001953125 0 7 0 16.099609375 c 2 - 0 48.2998046875 l 2 - 0 56.2001953125 5.7001953125 63.2001953125 13.599609375 64 c 0 - 35.2998046875 66.2998046875 55.7998046875 74.2001953125 71.2998046875 86.400390625 c 0 - 85.099609375 97.2998046875 104.900390625 99.599609375 118.400390625 88.400390625 c 0 - 156.700195312 56.7001953125 225.599609375 56.599609375 263.599609375 86.7001953125 c 0 - 277.299804688 97.599609375 296.799804688 99.7001953125 310.299804688 88.5 c 0 - 348.799804688 56.599609375 418.099609375 56.599609375 456 87 c 0 - 470 98.2998046875 490.099609375 98.099609375 504.200195312 87 c 0 - 520 74.599609375 540.599609375 66.5 562.099609375 64.099609375 c 0 -562.099609375 208.099609375 m 0 - 570.200195312 207.200195312 576 199.799804688 575.900390625 191.799804688 c 2 - 575.900390625 160.200195312 l 2 - 575.900390625 151.099609375 568.299804688 143.400390625 559.200195312 144.200195312 c 0 - 531 146.700195312 503.400390625 155.799804688 480.099609375 170 c 1 - 425.099609375 135.900390625 344.599609375 135.400390625 288.099609375 170 c 1 - 233.099609375 135.900390625 152.599609375 135.400390625 96.099609375 170 c 1 - 72.7998046875 155.5 45.5 146.599609375 16.7001953125 144.099609375 c 0 - 7.599609375 143.299804688 0 151 0 160.099609375 c 2 - 0 192.299804688 l 2 - 0 200.200195312 5.7001953125 207.200195312 13.599609375 208 c 0 - 35.2998046875 210.299804688 55.7998046875 218.200195312 71.2998046875 230.400390625 c 0 - 85.099609375 241.299804688 104.900390625 243.599609375 118.400390625 232.400390625 c 0 - 156.700195312 200.700195312 225.599609375 200.599609375 263.599609375 230.700195312 c 0 - 277.299804688 241.599609375 296.799804688 243.700195312 310.299804688 232.5 c 0 - 348.799804688 200.599609375 418.099609375 200.599609375 456 231 c 0 - 470 242.299804688 490.099609375 242.099609375 504.200195312 231 c 0 - 520 218.599609375 540.599609375 210.5 562.099609375 208.099609375 c 0 -562.099609375 352.099609375 m 0 - 570.200195312 351.200195312 576 343.799804688 575.900390625 335.799804688 c 2 - 575.900390625 304.200195312 l 2 - 575.900390625 295.099609375 568.299804688 287.400390625 559.200195312 288.200195312 c 0 - 531 290.700195312 503.400390625 299.799804688 480.099609375 314 c 1 - 425.099609375 279.900390625 344.599609375 279.400390625 288.099609375 314 c 1 - 233.099609375 279.900390625 152.599609375 279.400390625 96.099609375 314 c 1 - 72.7998046875 299.5 45.5 290.599609375 16.7001953125 288.099609375 c 0 - 7.599609375 287.299804688 0 295 0 304.099609375 c 2 - 0 336.299804688 l 2 - 0 344.200195312 5.7001953125 351.200195312 13.599609375 352 c 0 - 35.2998046875 354.299804688 55.7998046875 362.200195312 71.2998046875 374.400390625 c 0 - 85.099609375 385.299804688 104.900390625 387.599609375 118.400390625 376.400390625 c 0 - 156.700195312 344.700195312 225.599609375 344.599609375 263.599609375 374.700195312 c 0 - 277.299804688 385.599609375 296.799804688 387.700195312 310.299804688 376.5 c 0 - 348.799804688 344.599609375 418.099609375 344.599609375 456 375 c 0 - 470 386.299804688 490.099609375 386.099609375 504.200195312 375 c 0 - 520 362.599609375 540.599609375 354.599609375 562.099609375 352.099609375 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" w a t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" W a t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" W A T E R -EndChar - -StartChar: baby -Encoding: 63356 63356 937 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 288 m 0 - 147.799804688 288 112 323.799804688 112 368 c 0 - 112 412.200195312 147.799804688 448 192 448 c 0 - 236.200195312 448 272 412.200195312 272 368 c 0 - 272 323.799804688 236.200195312 288 192 288 c 0 -138.599609375 39.2001953125 m 1 - 168 0 l 2 - 181.200195312 -17.7001953125 177.700195312 -42.7998046875 160 -56 c 0 - 152.799804688 -61.400390625 144.299804688 -64 136 -64 c 0 - 123.900390625 -64 111.900390625 -58.5 104 -48 c 2 - 56 16 l 2 - 45.099609375 30.599609375 45.400390625 50.7998046875 56.7998046875 65 c 2 - 102.700195312 122.400390625 l 1 - 164.200195312 71.2001953125 l 1 - 138.599609375 39.2001953125 l 1 -281.299804688 122.400390625 m 1 - 327.200195312 65 l 2 - 338.599609375 50.7998046875 338.900390625 30.599609375 328 16 c 2 - 280 -48 l 2 - 272.200195312 -58.5 260.200195312 -64 248 -64 c 0 - 239.599609375 -64 231.200195312 -61.400390625 224 -56 c 0 - 206.299804688 -42.7998046875 202.799804688 -17.7001953125 216 0 c 2 - 245.400390625 39.2001953125 l 1 - 219.799804688 71.2001953125 l 1 - 281.299804688 122.400390625 l 1 -376.700195312 303 m 0 - 389.400390625 284.900390625 385.099609375 260 367 247.200195312 c 2 - 326.400390625 218.700195312 l 2 - 309.400390625 206.799804688 291 197.799804688 272 190.799804688 c 1 - 272 160 l 1 - 112 160 l 1 - 112 190.900390625 l 1 - 93 197.900390625 74.599609375 206.900390625 57.599609375 218.799804688 c 2 - 17 247.299804688 l 2 - -1 260 -5.400390625 284.900390625 7.2998046875 303 c 0 - 20 321 44.900390625 325.400390625 63 312.700195312 c 2 - 103.599609375 284.299804688 l 2 - 156.200195312 247.299804688 227.700195312 247.299804688 280.400390625 284.299804688 c 2 - 321 312.799804688 l 2 - 339.099609375 325.400390625 364 321.099609375 376.700195312 303 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" b a b y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" B a b y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" B A B Y -EndChar - -StartChar: baby-carriage -Encoding: 63357 63357 938 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -144.799804688 431 m 2 - 256 256 l 1 - 0 256 l 1 - 0 330 35.2998046875 396.099609375 90.7998046875 440.400390625 c 0 - 107.599609375 453.799804688 133.5 448.799804688 144.799804688 431 c 2 -496 352 m 2 - 504.799804688 352 512 344.799804688 512 336 c 2 - 512 304 l 2 - 512 295.200195312 504.799804688 288 496 288 c 2 - 448 288 l 1 - 448 224 l 2 - 448 173.400390625 425 127.599609375 387.700195312 93.2998046875 c 1 - 422.299804688 84.400390625 448 53.2998046875 448 16 c 0 - 448 -28.2001953125 412.200195312 -64 368 -64 c 0 - 323.799804688 -64 288 -28.2001953125 288 16 c 0 - 288 24.900390625 289.700195312 33.2001953125 292.400390625 41.2001953125 c 1 - 270.900390625 35.2998046875 247.799804688 32 224 32 c 0 - 200.200195312 32 177.200195312 35.2998046875 155.599609375 41.2001953125 c 1 - 158.200195312 33.2001953125 160 24.900390625 160 16 c 0 - 160 -28.2001953125 124.200195312 -64 80 -64 c 0 - 35.7998046875 -64 0 -28.2001953125 0 16 c 0 - 0 53.2998046875 25.7001953125 84.400390625 60.2998046875 93.2998046875 c 1 - 23 127.599609375 0 173.400390625 0 224 c 1 - 384 224 l 1 - 384 288 l 2 - 384 323.299804688 412.700195312 352 448 352 c 2 - 496 352 l 2 -80 -16 m 0 - 97.599609375 -16 112 -1.599609375 112 16 c 0 - 112 33.599609375 97.599609375 48 80 48 c 0 - 62.400390625 48 48 33.599609375 48 16 c 0 - 48 -1.599609375 62.400390625 -16 80 -16 c 0 -400 16 m 0 - 400 33.599609375 385.599609375 48 368 48 c 0 - 350.400390625 48 336 33.599609375 336 16 c 0 - 336 -1.599609375 350.400390625 -16 368 -16 c 0 - 385.599609375 -16 400 -1.599609375 400 16 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" b a b y hyphen c a r r i a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B a b y hyphen C a r r i a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B a b y hyphen c a r r i a g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" B A B Y hyphen C A R R I A G E -EndChar - -StartChar: biohazard -Encoding: 63360 63360 939 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -287.900390625 336 m 0 - 269.400390625 336 251.900390625 332.200195312 235.400390625 326.5 c 1 - 222.099609375 336.799804688 211.799804688 350.799804688 205.900390625 367.200195312 c 1 - 231.099609375 378.099609375 258.900390625 384.099609375 288 384.099609375 c 0 - 317.200195312 384.099609375 345 378 370.200195312 367.099609375 c 1 - 364.299804688 350.700195312 354 336.700195312 340.700195312 326.400390625 c 1 - 324.099609375 332.200195312 306.5 336 287.900390625 336 c 0 -163.599609375 9.2998046875 m 1 - 116.099609375 44.7998046875 84.400390625 100 80.2998046875 162.799804688 c 1 - 87.599609375 164.900390625 95.2001953125 165.900390625 102.799804688 165.900390625 c 0 - 112 165.900390625 120.700195312 164.099609375 129.200195312 161.299804688 c 1 - 133.299804688 117 155.200195312 78.099609375 188.099609375 51.7001953125 c 1 - 184 35.7001953125 175.599609375 21.099609375 163.599609375 9.2998046875 c 1 -387.799804688 51.900390625 m 1 - 420.5 78.2998046875 442.400390625 117 446.5 161.200195312 c 1 - 455.099609375 164 463.900390625 165.900390625 473.099609375 165.900390625 c 0 - 480.599609375 165.900390625 488.099609375 164.900390625 495.299804688 162.900390625 c 1 - 491.400390625 100.099609375 459.700195312 44.900390625 412.299804688 9.400390625 c 1 - 400.299804688 21.2001953125 391.900390625 35.900390625 387.799804688 51.900390625 c 1 -501.299804688 256.900390625 m 0 - 535.900390625 236.5 562.299804688 203.599609375 575.400390625 164.5 c 0 - 576.700195312 160.799804688 575.200195312 156.700195312 571.900390625 154.700195312 c 0 - 568.599609375 152.700195312 564.400390625 153.400390625 561.900390625 156.299804688 c 0 - 552.5 167.099609375 542.900390625 175.299804688 532.700195312 181.400390625 c 0 - 475.400390625 215.299804688 401.900390625 195.099609375 368.799804688 136.400390625 c 0 - 335.700195312 77.7001953125 355.400390625 2.400390625 412.700195312 -31.5 c 0 - 422.900390625 -37.599609375 434.599609375 -42 448.5 -44.900390625 c 0 - 452.299804688 -45.7001953125 454.900390625 -49.099609375 454.900390625 -53 c 0 - 454.799804688 -57 452.200195312 -60.2998046875 448.400390625 -61 c 0 - 408.700195312 -68.7998046875 367.799804688 -61.7998046875 333.200195312 -41.2998046875 c 0 - 315.200195312 -30.7001953125 300.299804688 -16.7998046875 287.900390625 -1.2001953125 c 1 - 275.5 -16.7998046875 260.599609375 -30.7001953125 242.599609375 -41.2998046875 c 0 - 208 -61.7998046875 167.099609375 -68.7998046875 127.400390625 -61 c 0 - 123.599609375 -60.2998046875 121 -57 120.900390625 -53 c 0 - 120.900390625 -49.099609375 123.599609375 -45.7001953125 127.299804688 -44.900390625 c 0 - 141.099609375 -41.900390625 152.900390625 -37.599609375 163.099609375 -31.5 c 0 - 220.400390625 2.400390625 240.099609375 77.7001953125 207 136.400390625 c 0 - 173.900390625 195.099609375 100.400390625 215.299804688 43.099609375 181.400390625 c 0 - 32.900390625 175.400390625 23.2998046875 167.099609375 13.900390625 156.299804688 c 0 - 11.400390625 153.400390625 7.2001953125 152.700195312 3.900390625 154.700195312 c 0 - 0.599609375 156.799804688 -0.900390625 160.799804688 0.400390625 164.5 c 0 - 13.7001953125 203.599609375 40.099609375 236.400390625 74.7001953125 256.900390625 c 0 - 92.2998046875 267.299804688 111.099609375 273.5 130 276.799804688 c 1 - 123.900390625 294.5 120 313.200195312 120 333 c 0 - 120 374 134.599609375 413.799804688 161 445.200195312 c 0 - 163.5 448.200195312 167.599609375 448.900390625 171 447 c 0 - 174.299804688 445.099609375 175.799804688 441 174.599609375 437.299804688 c 0 - 170.200195312 423.5 168 410.900390625 168 398.799804688 c 0 - 168 331 221.799804688 275.900390625 288 275.900390625 c 0 - 354.200195312 275.900390625 408 331 408 398.799804688 c 0 - 408 411 405.900390625 423.5 401.400390625 437.299804688 c 0 - 400.200195312 441 401.700195312 445.099609375 405 447 c 0 - 408.400390625 448.900390625 412.5 448.200195312 415 445.200195312 c 0 - 441.5 413.799804688 456 374 456 333 c 0 - 456 313.200195312 452 294.5 446 276.799804688 c 1 - 465 273.5 483.700195312 267.299804688 501.299804688 256.900390625 c 0 -287.900390625 127.900390625 m 0 - 314.400390625 127.900390625 335.900390625 149.400390625 335.900390625 175.900390625 c 0 - 335.900390625 202.400390625 314.400390625 223.900390625 287.900390625 223.900390625 c 0 - 261.400390625 223.900390625 239.900390625 202.400390625 239.900390625 175.900390625 c 0 - 239.900390625 149.400390625 261.400390625 127.900390625 287.900390625 127.900390625 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" b i o h a z a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" B i o h a z a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" B I O H A Z A R D -EndChar - -StartChar: blog -Encoding: 63361 63361 940 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -172.200195312 221.200195312 m 0 - 247.700195312 206.200195312 302.099609375 131.900390625 284.700195312 49 c 0 - 273.299804688 -5.2998046875 229.400390625 -49.2998046875 175 -60.7001953125 c 0 - 82.099609375 -80.2001953125 0 -9.5 0 80 c 2 - 0 328 l 2 - 0 341.299804688 10.7001953125 352 24 352 c 2 - 72 352 l 2 - 85.2998046875 352 96 341.299804688 96 328 c 2 - 96 80 l 2 - 96 53.5 117.5 32 144 32 c 0 - 170.5 32 192 53.5 192 80 c 0 - 192 100.599609375 178.900390625 118.200195312 160.700195312 125 c 0 - 151.099609375 128.599609375 144 136.799804688 144 147 c 2 - 144 197.400390625 l 2 - 144 212.299804688 157.599609375 224.099609375 172.200195312 221.200195312 c 0 -209 448 m 0 - 372.200195312 439.400390625 503.400390625 308.200195312 511.900390625 145 c 0 - 512.400390625 135.799804688 505.099609375 128 495.900390625 128 c 2 - 463.799804688 128 l 2 - 455.400390625 128 448.400390625 134.599609375 447.900390625 143 c 0 - 440.400390625 272.5 336.400390625 377.5 207 384.5 c 0 - 198.599609375 384.900390625 192 391.900390625 192 400.400390625 c 2 - 192 432 l 2 - 192 441.200195312 199.799804688 448.5 209 448 c 0 -209.299804688 352 m 0 - 319.400390625 343.5 407.5 255.400390625 415.900390625 145.299804688 c 0 - 416.599609375 136 409.099609375 128 399.799804688 128 c 2 - 367.599609375 128 l 2 - 359.299804688 128 352.5 134.400390625 351.700195312 142.700195312 c 0 - 344.799804688 219.700195312 283.599609375 281.599609375 206.799804688 287.900390625 c 0 - 198.5 288.5 192 295.400390625 192 303.799804688 c 2 - 192 335.900390625 l 2 - 192 345.299804688 200 352.700195312 209.299804688 352 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" b l o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" B l o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 57" B L O G -EndChar - -StartChar: calendar-day -Encoding: 63363 63363 941 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 -16 m 2 - 0 256 l 1 - 448 256 l 1 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 -64 176 m 2 - 64 80 l 2 - 64 71.2001953125 71.2001953125 64 80 64 c 2 - 176 64 l 2 - 184.799804688 64 192 71.2001953125 192 80 c 2 - 192 176 l 2 - 192 184.799804688 184.799804688 192 176 192 c 2 - 80 192 l 2 - 71.2001953125 192 64 184.799804688 64 176 c 2 -400 384 m 2 - 426.5 384 448 362.5 448 336 c 2 - 448 288 l 1 - 0 288 l 1 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 96 384 l 1 - 96 432 l 2 - 96 440.799804688 103.200195312 448 112 448 c 2 - 144 448 l 2 - 152.799804688 448 160 440.799804688 160 432 c 2 - 160 384 l 1 - 288 384 l 1 - 288 432 l 2 - 288 440.799804688 295.200195312 448 304 448 c 2 - 336 448 l 2 - 344.799804688 448 352 440.799804688 352 432 c 2 - 352 384 l 1 - 400 384 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" c a l e n d a r hyphen d a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C a l e n d a r hyphen D a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C a l e n d a r hyphen d a y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" C A L E N D A R hyphen D A Y -EndChar - -StartChar: calendar-week -Encoding: 63364 63364 942 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 -16 m 2 - 0 256 l 1 - 448 256 l 1 - 448 -16 l 2 - 448 -42.5 426.5 -64 400 -64 c 2 - 48 -64 l 2 - 21.5 -64 0 -42.5 0 -16 c 2 -64 176 m 2 - 64 112 l 2 - 64 103.200195312 71.2001953125 96 80 96 c 2 - 368 96 l 2 - 376.799804688 96 384 103.200195312 384 112 c 2 - 384 176 l 2 - 384 184.799804688 376.799804688 192 368 192 c 2 - 80 192 l 2 - 71.2001953125 192 64 184.799804688 64 176 c 2 -400 384 m 2 - 426.5 384 448 362.5 448 336 c 2 - 448 288 l 1 - 0 288 l 1 - 0 336 l 2 - 0 362.5 21.5 384 48 384 c 2 - 96 384 l 1 - 96 432 l 2 - 96 440.799804688 103.200195312 448 112 448 c 2 - 144 448 l 2 - 152.799804688 448 160 440.799804688 160 432 c 2 - 160 384 l 1 - 288 384 l 1 - 288 432 l 2 - 288 440.799804688 295.200195312 448 304 448 c 2 - 336 448 l 2 - 344.799804688 448 352 440.799804688 352 432 c 2 - 352 384 l 1 - 400 384 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" c a l e n d a r hyphen w e e k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" C a l e n d a r hyphen W e e k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" C a l e n d a r hyphen w e e k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" C A L E N D A R hyphen W E E K -EndChar - -StartChar: candy-cane -Encoding: 63366 63366 943 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -497.5 356 m 0 - 533.200195312 280.5 500.299804688 189.900390625 428.599609375 147 c 2 - 81.2998046875 -59.5 l 2 - 76.099609375 -62.5 70.5 -64 64.900390625 -64 c 0 - 54 -64 43.400390625 -58.400390625 37.400390625 -48.400390625 c 2 - 4.599609375 6.5 l 2 - -4.5 21.7001953125 0.400390625 41.2998046875 15.599609375 50.400390625 c 2 - 369.200195312 260.5 l 2 - 384.299804688 269.599609375 389.299804688 289.299804688 380.200195312 304.400390625 c 0 - 374.200195312 314.400390625 363.599609375 320 352.700195312 320 c 0 - 347.099609375 320 341.400390625 318.599609375 336.299804688 315.5 c 2 - 308.799804688 299.099609375 l 2 - 303.599609375 296.099609375 298 294.599609375 292.400390625 294.599609375 c 0 - 281.5 294.599609375 270.900390625 300.200195312 264.900390625 310.200195312 c 2 - 232.099609375 365.099609375 l 2 - 223 380.299804688 227.900390625 399.900390625 243.099609375 409 c 2 - 270.599609375 425.400390625 l 2 - 296.200195312 440.700195312 324.5 448 352.400390625 448 c 0 - 411.799804688 448 469.599609375 414.900390625 497.5 356 c 0 -319.799804688 343 m 2 - 328.299804688 348.099609375 337.900390625 350.599609375 347.700195312 351.400390625 c 1 - 327.099609375 413.200195312 l 1 - 316.599609375 411.099609375 306.5 407.700195312 296.799804688 403 c 1 - 317.299804688 341.5 l 1 - 319.799804688 343 l 2 -145.900390625 16.2001953125 m 1 - 176.700195312 34.5 l 1 - 116.200195312 73 l 1 - 85.400390625 54.7001953125 l 1 - 145.900390625 16.2001953125 l 1 -253.400390625 80.099609375 m 1 - 284.200195312 98.400390625 l 1 - 223.700195312 136.900390625 l 1 - 192.900390625 118.599609375 l 1 - 253.400390625 80.099609375 l 1 -364.299804688 146 m 1 - 395.099609375 164.299804688 l 1 - 334.599609375 202.799804688 l 1 - 303.799804688 184.5 l 1 - 364.299804688 146 l 1 -384.700195312 343.299804688 m 1 - 393.900390625 337.900390625 401.900390625 330.299804688 407.599609375 321 c 1 - 453.299804688 366.700195312 l 1 - 446.700195312 375.200195312 439.099609375 382.799804688 430.700195312 389.299804688 c 1 - 384.700195312 343.299804688 l 1 -466.799804688 235.5 m 1 - 471.400390625 245.299804688 474.799804688 255.5 476.900390625 265.900390625 c 1 - 416.5 286 l 1 - 416.400390625 281.5 415.799804688 276.900390625 414.700195312 272.400390625 c 0 - 413.099609375 266.200195312 410.5 260.599609375 407.299804688 255.299804688 c 1 - 466.799804688 235.5 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" c a n d y hyphen c a n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" C a n d y hyphen c a n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" C A N D Y hyphen C A N E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" C a n d y hyphen C a n e -EndChar - -StartChar: carrot -Encoding: 63367 63367 944 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -298.200195312 291.400390625 m 0 - 359.900390625 261.299804688 385.5 186.900390625 355.400390625 125.200195312 c 0 - 342.799804688 99.400390625 322.299804688 79.7998046875 298.299804688 68.099609375 c 2 - 196.299804688 18.2998046875 l 1 - 139.299804688 75.2998046875 l 2 - 133.099609375 81.5 123 81.5 116.700195312 75.2998046875 c 0 - 110.400390625 69.099609375 110.400390625 58.900390625 116.700195312 52.7001953125 c 2 - 165.900390625 3.5 l 1 - 32.2998046875 -61.7001953125 l 2 - 21.2001953125 -67.099609375 7.7001953125 -62.5 2.2998046875 -51.400390625 c 0 - -0.7998046875 -45 -0.599609375 -37.7001953125 2.2998046875 -31.7001953125 c 2 - 130.400390625 231 l 1 - 180.599609375 180.799804688 l 2 - 183.700195312 177.700195312 187.799804688 176.099609375 191.900390625 176.099609375 c 0 - 196 176.099609375 200.099609375 177.700195312 203.200195312 180.799804688 c 0 - 209.5 187 209.5 197.099609375 203.200195312 203.400390625 c 2 - 148 258.599609375 l 1 - 183.700195312 301.900390625 245.5 317.099609375 298.200195312 291.400390625 c 0 -390.299804688 326.299804688 m 1 - 431 345.799804688 479.099609375 335.700195312 512 296 c 1 - 470.400390625 245.700195312 404.5 243.5 360.099609375 288.099609375 c 2 - 352.099609375 296.099609375 l 2 - 307.5 340.5 309.700195312 406.299804688 360 448 c 1 - 399.700195312 415.099609375 409.799804688 367 390.299804688 326.299804688 c 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" c a r r o t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C A R R O T -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C a r r o t -EndChar - -StartChar: cash-register -Encoding: 63368 63368 945 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -511.099609375 69.2001953125 m 2 - 511.700195312 65.7001953125 512 62.2001953125 511.900390625 58.7001953125 c 2 - 511.900390625 -32 l 2 - 511.900390625 -49.7001953125 497.599609375 -64 479.900390625 -64 c 2 - 31.900390625 -64 l 2 - 14.2001953125 -64 -0.099609375 -49.7001953125 -0.099609375 -32 c 2 - -0.099609375 58.7998046875 l 2 - -0.099609375 62.2998046875 0.2001953125 65.7998046875 0.7998046875 69.2998046875 c 2 - 27.5 229.299804688 l 2 - 30.099609375 244.700195312 43.5 256 59.099609375 256 c 2 - 144 256 l 1 - 144 320 l 1 - 48 320 l 2 - 39.2001953125 320 32 327.200195312 32 336 c 2 - 32 432 l 2 - 32 440.799804688 39.2001953125 448 48 448 c 2 - 304 448 l 2 - 312.799804688 448 320 440.799804688 320 432 c 2 - 320 335.900390625 l 2 - 320 327.099609375 312.799804688 319.900390625 304 319.900390625 c 2 - 208 319.900390625 l 1 - 208 255.900390625 l 1 - 452.799804688 255.900390625 l 2 - 468.5 255.900390625 481.799804688 244.599609375 484.400390625 229.200195312 c 2 - 511.099609375 69.2001953125 l 2 -280 200 m 2 - 280 184 l 2 - 280 175.200195312 287.200195312 168 296 168 c 2 - 312 168 l 2 - 320.799804688 168 328 175.200195312 328 184 c 2 - 328 200 l 2 - 328 208.799804688 320.799804688 216 312 216 c 2 - 296 216 l 2 - 287.200195312 216 280 208.799804688 280 200 c 2 -248 136 m 2 - 239.200195312 136 232 128.799804688 232 120 c 2 - 232 104 l 2 - 232 95.2001953125 239.200195312 88 248 88 c 2 - 264 88 l 2 - 272.799804688 88 280 95.2001953125 280 104 c 2 - 280 120 l 2 - 280 128.799804688 272.799804688 136 264 136 c 2 - 248 136 l 2 -216 216 m 2 - 200 216 l 2 - 191.200195312 216 184 208.799804688 184 200 c 2 - 184 184 l 2 - 184 175.200195312 191.200195312 168 200 168 c 2 - 216 168 l 2 - 224.799804688 168 232 175.200195312 232 184 c 2 - 232 200 l 2 - 232 208.799804688 224.799804688 216 216 216 c 2 -80 368 m 1 - 272 368 l 1 - 272 400 l 1 - 80 400 l 1 - 80 368 l 1 -120 168 m 2 - 128.799804688 168 136 175.200195312 136 184 c 2 - 136 200 l 2 - 136 208.799804688 128.799804688 216 120 216 c 2 - 104 216 l 2 - 95.2001953125 216 88 208.799804688 88 200 c 2 - 88 184 l 2 - 88 175.200195312 95.2001953125 168 104 168 c 2 - 120 168 l 2 -136 104 m 2 - 136 95.2001953125 143.200195312 88 152 88 c 2 - 168 88 l 2 - 176.799804688 88 184 95.2001953125 184 104 c 2 - 184 120 l 2 - 184 128.799804688 176.799804688 136 168 136 c 2 - 152 136 l 2 - 143.200195312 136 136 128.799804688 136 120 c 2 - 136 104 l 2 -352 -8 m 2 - 352 8 l 2 - 352 12.400390625 348.400390625 16 344 16 c 2 - 168 16 l 2 - 163.599609375 16 160 12.400390625 160 8 c 2 - 160 -8 l 2 - 160 -12.400390625 163.599609375 -16 168 -16 c 2 - 344 -16 l 2 - 348.400390625 -16 352 -12.400390625 352 -8 c 2 -376 104 m 2 - 376 120 l 2 - 376 128.799804688 368.799804688 136 360 136 c 2 - 344 136 l 2 - 335.200195312 136 328 128.799804688 328 120 c 2 - 328 104 l 2 - 328 95.2001953125 335.200195312 88 344 88 c 2 - 360 88 l 2 - 368.799804688 88 376 95.2001953125 376 104 c 2 -424 184 m 2 - 424 200 l 2 - 424 208.799804688 416.799804688 216 408 216 c 2 - 392 216 l 2 - 383.200195312 216 376 208.799804688 376 200 c 2 - 376 184 l 2 - 376 175.200195312 383.200195312 168 392 168 c 2 - 408 168 l 2 - 416.799804688 168 424 175.200195312 424 184 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" c a s h hyphen r e g i s t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" C a s h hyphen R e g i s t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" C a s h hyphen r e g i s t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" C A S H hyphen R E G I S T E R -EndChar - -StartChar: compress-arrows-alt -Encoding: 63372 63372 946 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -200 160 m 2 - 213.299804688 160 224 149.299804688 224 136 c 2 - 224 24 l 2 - 224 2.599609375 198.200195312 -8.099609375 183.099609375 7 c 2 - 152 40 l 1 - 52.7001953125 -59.2998046875 l 2 - 46.5 -65.5 36.2998046875 -65.5 30.099609375 -59.2998046875 c 2 - 4.7001953125 -33.900390625 l 2 - -1.5 -27.7001953125 -1.5 -17.5 4.7001953125 -11.2998046875 c 2 - 103.900390625 88 l 1 - 71 119 l 2 - 55.900390625 134.200195312 66.599609375 160 88 160 c 2 - 200 160 l 2 -312 224 m 2 - 298.700195312 224 288 234.700195312 288 248 c 2 - 288 360 l 2 - 288 381.400390625 313.799804688 392.099609375 328.900390625 377 c 2 - 360 344 l 1 - 459.299804688 443.299804688 l 2 - 465.5 449.5 475.700195312 449.5 481.900390625 443.299804688 c 2 - 507.299804688 417.900390625 l 2 - 513.5 411.700195312 513.5 401.5 507.299804688 395.299804688 c 2 - 408 296 l 1 - 441 265 l 2 - 456.099609375 249.900390625 445.400390625 224 424 224 c 2 - 312 224 l 2 -408 88 m 1 - 507.299804688 -11.400390625 l 2 - 513.5 -17.599609375 513.5 -27.7998046875 507.299804688 -34 c 2 - 481.900390625 -59.400390625 l 2 - 475.700195312 -65.599609375 465.5 -65.599609375 459.299804688 -59.400390625 c 2 - 360 39.900390625 l 1 - 329 7 l 2 - 313.900390625 -8.099609375 288 2.599609375 288 24 c 2 - 288 136 l 2 - 288 149.299804688 298.700195312 160 312 160 c 2 - 424 160 l 2 - 445.400390625 160 456.099609375 134.200195312 441 119.099609375 c 2 - 408 88 l 1 -183 376.900390625 m 2 - 198.099609375 392 224 381.299804688 224 360 c 2 - 224 248 l 2 - 224 234.700195312 213.299804688 224 200 224 c 2 - 88 224 l 2 - 66.599609375 224 55.900390625 249.799804688 71 264.900390625 c 2 - 104 296 l 1 - 4.7001953125 395.299804688 l 2 - -1.5 401.5 -1.5 411.700195312 4.7001953125 417.900390625 c 2 - 30.099609375 443.299804688 l 2 - 36.2998046875 449.5 46.5 449.5 52.7001953125 443.299804688 c 2 - 152 344 l 1 - 183 376.900390625 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" c o m p r e s s hyphen a r r o w s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C o m p r e s s hyphen A r r o w s hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C o m p r e s s hyphen a r r o w s hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" C O M P R E S S hyphen A R R O W S hyphen A L T -EndChar - -StartChar: dumpster -Encoding: 63379 63379 947 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -560 288 m 2 - 462.700195312 288 l 1 - 437.099609375 416 l 1 - 536 416 l 2 - 543.299804688 416 549.700195312 411 551.5 403.900390625 c 2 - 575.5 307.900390625 l 2 - 578 297.799804688 570.400390625 288 560 288 c 2 -272 416 m 1 - 272 288 l 1 - 145.900390625 288 l 1 - 171.5 416 l 1 - 272 416 l 1 -404.5 416 m 1 - 430.099609375 288 l 1 - 304 288 l 1 - 304 416 l 1 - 404.5 416 l 1 -16 288 m 2 - 5.599609375 288 -2 297.799804688 0.5 307.900390625 c 2 - 24.5 403.900390625 l 2 - 26.2998046875 411 32.7001953125 416 40 416 c 2 - 138.900390625 416 l 1 - 113.299804688 288 l 1 - 16 288 l 2 -560 224 m 2 - 568.799804688 224 576 216.799804688 576 208 c 2 - 576 176 l 2 - 576 167.200195312 568.799804688 160 560 160 c 2 - 532 160 l 1 - 512 0 l 1 - 512 -16 l 2 - 512 -24.7998046875 504.799804688 -32 496 -32 c 2 - 464 -32 l 2 - 455.200195312 -32 448 -24.7998046875 448 -16 c 2 - 448 0 l 1 - 128 0 l 1 - 128 -16 l 2 - 128 -24.7998046875 120.799804688 -32 112 -32 c 2 - 80 -32 l 2 - 71.2001953125 -32 64 -24.7998046875 64 -16 c 2 - 64 0 l 1 - 44 160 l 1 - 16 160 l 2 - 7.2001953125 160 0 167.200195312 0 176 c 2 - 0 208 l 2 - 0 216.799804688 7.2001953125 224 16 224 c 2 - 36 224 l 1 - 32 256 l 1 - 544 256 l 1 - 540 224 l 1 - 560 224 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" d u m p s t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D u m p s t e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" D U M P S T E R -EndChar - -StartChar: dumpster-fire -Encoding: 63380 63380 948 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -418.700195312 343.900390625 m 2 - 399 326.299804688 381 307.400390625 364.799804688 288.099609375 c 1 - 304 288.099609375 l 1 - 304 416.099609375 l 1 - 404.5 416.099609375 l 1 - 418.900390625 344.099609375 l 1 - 418.700195312 343.900390625 l 2 -272 416 m 1 - 272 288 l 1 - 145.900390625 288 l 1 - 171.5 416 l 1 - 272 416 l 1 -461.299804688 343.900390625 m 2 - 449.400390625 354.5 l 1 - 437.099609375 416 l 1 - 536 416 l 2 - 543.299804688 416 549.700195312 411 551.400390625 403.900390625 c 2 - 575.400390625 307.900390625 l 2 - 575.599609375 307.099609375 575.299804688 306.400390625 575.400390625 305.599609375 c 1 - 574.400390625 306.599609375 573.400390625 307.799804688 572.299804688 308.700195312 c 2 - 551 327.700195312 l 1 - 529.700195312 308.700195312 l 2 - 523.799804688 303.5 518.099609375 298 512.400390625 292.400390625 c 1 - 496.799804688 310.200195312 479.5 327.599609375 461.299804688 343.900390625 c 2 -16 288 m 2 - 5.599609375 288 -2 297.799804688 0.5 307.900390625 c 2 - 24.5 403.900390625 l 2 - 26.2998046875 411 32.7001953125 416 40 416 c 2 - 138.900390625 416 l 1 - 113.299804688 288 l 1 - 16 288 l 2 -340.599609375 256 m 1 - 307.900390625 209.299804688 288 162.299804688 288 126.400390625 c 0 - 288 77.900390625 306.599609375 33.7001953125 336.799804688 0 c 1 - 128 0 l 1 - 128 -16 l 2 - 128 -24.7998046875 120.799804688 -32 112 -32 c 2 - 80 -32 l 2 - 71.2001953125 -32 64 -24.7998046875 64 -16 c 2 - 64 0 l 1 - 44 160 l 1 - 16 160 l 2 - 7.2001953125 160 0 167.200195312 0 176 c 2 - 0 208 l 2 - 0 216.799804688 7.2001953125 224 16 224 c 2 - 36 224 l 1 - 32 256 l 1 - 340.599609375 256 l 1 -551.099609375 284.799804688 m 1 - 602.900390625 238.599609375 640 163 639.900390625 126.400390625 c 0 - 639.900390625 38.900390625 568.299804688 -32 479.900390625 -32 c 0 - 391.5 -32 319.900390625 38.900390625 319.900390625 126.400390625 c 0 - 319.900390625 175.700195312 369.700195312 257.299804688 439.900390625 320 c 1 - 467.299804688 295.599609375 491.400390625 269.400390625 510.900390625 243.599609375 c 1 - 522.799804688 257.599609375 536.200195312 271.5 551.099609375 284.799804688 c 1 -532.5 55.400390625 m 0 - 565.900390625 79.599609375 573.700195312 126.5 555.099609375 163.200195312 c 0 - 552.799804688 167.700195312 550.200195312 172.400390625 547.400390625 177.200195312 c 1 - 507.599609375 130.200195312 l 1 - 507.599609375 130.200195312 445.200195312 212.700195312 440.5 218.299804688 c 1 - 407.599609375 177.400390625 391.099609375 153.5 391.099609375 126.400390625 c 0 - 391.099609375 71.900390625 431 38.400390625 480 38.400390625 c 0 - 499.599609375 38.400390625 517.799804688 44.7001953125 532.5 55.400390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" d u m p s t e r hyphen f i r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" D u m p s t e r hyphen F i r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" D u m p s t e r hyphen f i r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" D U M P S T E R hyphen F I R E -EndChar - -StartChar: ethernet -Encoding: 63382 63382 949 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 256 m 2 - 504.799804688 256 512 248.799804688 512 240 c 2 - 512 16 l 2 - 512 7.2001953125 504.799804688 0 496 0 c 2 - 416 0 l 1 - 416 128 l 1 - 384 128 l 1 - 384 0 l 1 - 320 0 l 1 - 320 128 l 1 - 288 128 l 1 - 288 0 l 1 - 224 0 l 1 - 224 128 l 1 - 192 128 l 1 - 192 0 l 1 - 128 0 l 1 - 128 128 l 1 - 96 128 l 1 - 96 0 l 1 - 16 0 l 2 - 7.2001953125 0 0 7.2001953125 0 16 c 2 - 0 240 l 2 - 0 248.799804688 7.2001953125 256 16 256 c 2 - 64 256 l 1 - 64 304 l 2 - 64 312.799804688 71.2001953125 320 80 320 c 2 - 128 320 l 1 - 128 368 l 2 - 128 376.799804688 135.200195312 384 144 384 c 2 - 368 384 l 2 - 376.799804688 384 384 376.799804688 384 368 c 2 - 384 320 l 1 - 432 320 l 2 - 440.799804688 320 448 312.799804688 448 304 c 2 - 448 256 l 1 - 496 256 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" e t h e r n e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" E t h e r n e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" E T H E R N E T -EndChar - -StartChar: gifts -Encoding: 63388 63388 950 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -240.599609375 253.900390625 m 1 - 212.799804688 247 192 221.900390625 192 192 c 2 - 192 -32 l 2 - 192 -43.7001953125 195.400390625 -54.5 200.900390625 -64 c 1 - 32 -64 l 2 - 14.2998046875 -64 0 -49.7001953125 0 -32 c 2 - 0 320 l 2 - 0 337.700195312 14.2998046875 352 32 352 c 2 - 61.400390625 352 l 1 - 30.7001953125 374 l 2 - 23.5 379.099609375 21.900390625 389.099609375 27 396.299804688 c 2 - 36.2998046875 409.299804688 l 2 - 41.400390625 416.5 51.400390625 418.099609375 58.599609375 413 c 2 - 90.7001953125 390.200195312 l 1 - 79.2001953125 420.799804688 l 2 - 76 429 80.2001953125 438.299804688 88.5 441.400390625 c 2 - 103.5 447 l 2 - 111.799804688 450.099609375 121 445.900390625 124.099609375 437.599609375 c 2 - 144 384.5 l 1 - 163.900390625 437.5 l 2 - 167 445.799804688 176.200195312 450 184.5 446.900390625 c 2 - 199.5 441.299804688 l 2 - 207.799804688 438.200195312 212 429 208.900390625 420.700195312 c 2 - 197.400390625 390.099609375 l 1 - 229.400390625 413 l 2 - 236.599609375 418.200195312 246.599609375 416.5 251.700195312 409.299804688 c 2 - 261 396.299804688 l 2 - 266.200195312 389.099609375 264.5 379.099609375 257.299804688 374 c 2 - 226.599609375 352 l 1 - 256 352 l 2 - 268.700195312 352 279.400390625 344.5 284.599609375 333.700195312 c 1 - 257.900390625 315.099609375 242.5 284.700195312 240.599609375 253.900390625 c 1 -224 -32 m 2 - 224 64 l 1 - 416 64 l 1 - 416 -64 l 1 - 256 -64 l 2 - 238.299804688 -64 224 -49.7001953125 224 -32 c 2 -448 -64 m 1 - 448 64 l 1 - 640 64 l 1 - 640 -32 l 2 - 640 -49.7001953125 625.700195312 -64 608 -64 c 2 - 448 -64 l 1 -608 224 m 2 - 625.700195312 224 640 209.700195312 640 192 c 2 - 640 96 l 1 - 448 96 l 1 - 448 224 l 1 - 432.700195312 224 l 1 - 432 224.200195312 l 1 - 431.299804688 224 l 1 - 416 224 l 1 - 416 96 l 1 - 224 96 l 1 - 224 192 l 2 - 224 209.700195312 238.299804688 224 256 224 c 2 - 276.400390625 224 l 1 - 273.700195312 231.599609375 272 239.5 272 247.799804688 c 0 - 272 283.299804688 299 320 344.099609375 320 c 0 - 392.099609375 320 419.900390625 272.299804688 432 244.700195312 c 1 - 444 272.299804688 471.799804688 320 519.900390625 320 c 0 - 565 320 592 283.299804688 592 247.799804688 c 0 - 592 239.5 590.200195312 231.599609375 587.599609375 224 c 1 - 608 224 l 2 -336 224 m 2 - 388.599609375 224 l 1 - 379.700195312 244.599609375 362.799804688 272 344.099609375 272 c 0 - 326.400390625 272 320 257.5 320 247.799804688 c 0 - 320 242.599609375 321.5 235.200195312 328.799804688 228.799804688 c 0 - 330.900390625 227 333.299804688 225.400390625 336 224 c 2 -535.200195312 228.799804688 m 0 - 542.5 235.200195312 544 242.599609375 544 247.799804688 c 0 - 544 257.5 537.599609375 272 519.900390625 272 c 0 - 501.200195312 272 484.200195312 244.299804688 475.400390625 224 c 1 - 528 224 l 2 - 530.700195312 225.400390625 533.099609375 227 535.200195312 228.799804688 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" g i f t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" G i f t s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" G I F T S -EndChar - -StartChar: glass-cheers -Encoding: 63391 63391 951 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -639.400390625 14.400390625 m 0 - 641.099609375 10.2998046875 639.099609375 5.7001953125 635.099609375 4 c 2 - 472.700195312 -63.400390625 l 2 - 468.700195312 -65.099609375 464 -63.2001953125 462.299804688 -59.099609375 c 0 - 453.799804688 -38.7001953125 463.5 -15.2998046875 483.900390625 -6.7998046875 c 2 - 506 2.400390625 l 1 - 466.700195312 106 l 1 - 462.299804688 105.5 457.900390625 104.700195312 453.599609375 104.700195312 c 0 - 401.900390625 104.700195312 354.200195312 137.799804688 340.200195312 190 c 2 - 320 265.400390625 l 1 - 299.799804688 190 l 2 - 285.799804688 137.799804688 238.099609375 104.700195312 186.400390625 104.700195312 c 0 - 182.099609375 104.700195312 177.700195312 105.5 173.299804688 106 c 1 - 133.900390625 2.400390625 l 1 - 156 -6.7998046875 l 2 - 176.400390625 -15.2998046875 186 -38.7001953125 177.599609375 -59.099609375 c 0 - 175.900390625 -63.2001953125 171.299804688 -65.099609375 167.200195312 -63.400390625 c 2 - 4.900390625 4 l 2 - 0.7998046875 5.7001953125 -1.099609375 10.400390625 0.599609375 14.5 c 0 - 9.099609375 34.900390625 32.400390625 44.599609375 52.7998046875 36.099609375 c 2 - 74.900390625 26.900390625 l 1 - 113.599609375 128.799804688 l 1 - 65.7001953125 163.700195312 48.900390625 229 79.099609375 281.5 c 2 - 165.700195312 432 l 2 - 173.700195312 445.900390625 190.799804688 451.799804688 205.700195312 445.599609375 c 2 - 320 398.200195312 l 1 - 434.299804688 445.599609375 l 2 - 449.200195312 451.700195312 466.299804688 445.900390625 474.299804688 432 c 2 - 560.900390625 281.5 l 2 - 591.200195312 229 574.299804688 163.700195312 526.400390625 128.700195312 c 1 - 565.099609375 26.7998046875 l 1 - 587.200195312 36 l 2 - 607.599609375 44.5 631 34.7998046875 639.400390625 14.400390625 c 0 -275.900390625 285.900390625 m 1 - 294.799804688 356.599609375 l 1 - 200.299804688 395.799804688 l 1 - 163.799804688 332.400390625 l 1 - 275.900390625 285.900390625 l 1 -364.099609375 285.900390625 m 1 - 476.200195312 332.400390625 l 1 - 439.700195312 395.799804688 l 1 - 345.200195312 356.599609375 l 1 - 364.099609375 285.900390625 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" g l a s s hyphen c h e e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" G l a s s hyphen C h e e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" G l a s s hyphen c h e e r s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" G L A S S hyphen C H E E R S -EndChar - -StartChar: glass-whiskey -Encoding: 63392 63392 952 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480 416 m 2 - 499.5 416 514.400390625 398.799804688 511.700195312 379.5 c 2 - 456.099609375 23 l 2 - 451.599609375 -8.5 424.5 -31.900390625 392.700195312 -31.900390625 c 2 - 119.700195312 -31.900390625 l 2 - 87.7998046875 -31.900390625 60.7998046875 -8.5 56.2998046875 23 c 2 - 0.2998046875 379.5 l 2 - -2.400390625 398.799804688 12.5 416 32 416 c 2 - 480 416 l 2 -442.599609375 352 m 1 - 69.400390625 352 l 1 - 99.599609375 160 l 1 - 412.599609375 160 l 1 - 442.599609375 352 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" g l a s s hyphen w h i s k e y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" G l a s s hyphen W h i s k e y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" G l a s s hyphen w h i s k e y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" G L A S S hyphen W H I S K E Y -EndChar - -StartChar: globe-europe -Encoding: 63394 63394 953 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -248 440 m 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 -448 192 m 0 - 448 302.299804688 358.299804688 392 247.799804688 392 c 0 - 245.900390625 392 244 391.799804688 242.099609375 391.700195312 c 2 - 213.200195312 370 l 2 - 211.200195312 368.5 210 366.099609375 210 363.599609375 c 2 - 210 343.599609375 l 2 - 210 339.200195312 213.599609375 335.599609375 218 335.599609375 c 2 - 234 335.599609375 l 2 - 238.400390625 335.599609375 242 339.200195312 242 343.599609375 c 2 - 242 351.599609375 l 1 - 258 367.599609375 l 1 - 278.700195312 367.599609375 l 2 - 284.900390625 367.599609375 290 362.5 290 356.299804688 c 0 - 290 353.299804688 288.799804688 350.400390625 286.700195312 348.299804688 c 2 - 259.900390625 321.5 l 2 - 258.700195312 320.299804688 257.200195312 319.400390625 255.5 318.799804688 c 2 - 215.5 305.5 l 2 - 212.200195312 304.400390625 210 301.299804688 210 297.900390625 c 0 - 210 291.299804688 207.400390625 285 202.799804688 280.400390625 c 2 - 182.700195312 260.299804688 l 2 - 179.700195312 257.299804688 178 253.200195312 178 249 c 2 - 178 223.700195312 l 2 - 178 214.900390625 185.200195312 207.700195312 194 207.700195312 c 2 - 216.099609375 207.700195312 l 2 - 222.200195312 207.700195312 227.700195312 211.099609375 230.400390625 216.5 c 2 - 239.799804688 235.200195312 l 2 - 241.200195312 237.900390625 244 239.599609375 247 239.599609375 c 2 - 250.099609375 239.599609375 l 2 - 254.5 239.599609375 258.099609375 236 258.099609375 231.599609375 c 0 - 258.099609375 227.200195312 261.700195312 223.599609375 266.099609375 223.599609375 c 2 - 282.099609375 223.599609375 l 2 - 286.5 223.599609375 290.099609375 227.200195312 290.099609375 231.599609375 c 2 - 290.099609375 233.799804688 l 2 - 290.099609375 237.299804688 292.299804688 240.299804688 295.599609375 241.400390625 c 2 - 327.200195312 251.900390625 l 2 - 333.700195312 254.099609375 338.099609375 260.200195312 338.099609375 267.099609375 c 2 - 338.099609375 271.599609375 l 2 - 338.099609375 280.400390625 345.299804688 287.599609375 354.099609375 287.599609375 c 2 - 390.799804688 287.599609375 l 2 - 397 287.599609375 402.099609375 282.5 402.099609375 276.299804688 c 2 - 402.099609375 266.900390625 l 2 - 402.099609375 260.700195312 397 255.599609375 390.799804688 255.599609375 c 2 - 358.799804688 255.599609375 l 2 - 355.799804688 255.599609375 352.900390625 254.400390625 350.799804688 252.299804688 c 2 - 341.400390625 242.900390625 l 2 - 339.299804688 240.799804688 338.099609375 237.900390625 338.099609375 234.900390625 c 0 - 338.099609375 228.700195312 343.200195312 223.599609375 349.400390625 223.599609375 c 2 - 365.400390625 223.599609375 l 2 - 368.400390625 223.599609375 371.299804688 222.400390625 373.400390625 220.299804688 c 2 - 382.799804688 210.900390625 l 2 - 384.900390625 208.799804688 386.099609375 205.900390625 386.099609375 202.900390625 c 2 - 386.099609375 194.200195312 l 1 - 373.599609375 181.700195312 l 2 - 369 177.099609375 369 169.599609375 373.5 165 c 2 - 405.5 132.400390625 l 2 - 408.5 129.299804688 412.599609375 127.599609375 416.900390625 127.599609375 c 2 - 437.200195312 127.599609375 l 1 - 444.099609375 147.799804688 448 169.5 448 192 c 0 -130.099609375 298.900390625 m 0 - 130.099609375 292.700195312 135.200195312 287.599609375 141.400390625 287.599609375 c 2 - 157.400390625 287.599609375 l 2 - 160.400390625 287.599609375 163.299804688 288.799804688 165.400390625 290.900390625 c 2 - 174.799804688 300.299804688 l 2 - 176.900390625 302.400390625 178.099609375 305.299804688 178.099609375 308.299804688 c 2 - 178.099609375 324.299804688 l 2 - 178.099609375 330.5 173 335.599609375 166.799804688 335.599609375 c 0 - 163.799804688 335.599609375 160.900390625 334.400390625 158.799804688 332.299804688 c 2 - 133.400390625 306.900390625 l 2 - 131.299804688 304.799804688 130.099609375 301.900390625 130.099609375 298.900390625 c 0 -258.099609375 -7.5 m 1 - 329.200195312 -3.900390625 390.599609375 36.7001953125 423 95.599609375 c 1 - 409.599609375 95.599609375 l 2 - 404.799804688 95.599609375 400.099609375 97.5 396.700195312 100.900390625 c 2 - 379.400390625 118.200195312 l 2 - 373.400390625 124.200195312 365.299804688 127.599609375 356.799804688 127.599609375 c 2 - 338.5 127.599609375 l 1 - 295.299804688 164.700195312 l 2 - 287.099609375 171.700195312 276.599609375 175.599609375 265.700195312 175.599609375 c 2 - 234.5 175.599609375 l 2 - 226.299804688 175.599609375 218.200195312 173.299804688 211.099609375 169.099609375 c 2 - 168.200195312 143.400390625 l 2 - 154.5 135.200195312 146.099609375 120.400390625 146.099609375 104.400390625 c 2 - 146.099609375 80.5 l 2 - 146.099609375 66.2001953125 152.799804688 52.7001953125 164.299804688 44.099609375 c 2 - 186.5 27.400390625 l 2 - 195.200195312 20.900390625 211.099609375 15.599609375 221.900390625 15.599609375 c 2 - 242.099609375 15.599609375 l 2 - 250.900390625 15.599609375 258.099609375 8.400390625 258.099609375 -0.400390625 c 2 - 258.099609375 -7.5 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" g l o b e hyphen e u r o p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" G l o b e hyphen E u r o p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" G l o b e hyphen e u r o p e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" G L O B E hyphen E U R O P E -EndChar - -StartChar: grip-lines -Encoding: 63396 63396 954 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 160 m 2 - 504.799804688 160 512 152.799804688 512 144 c 2 - 512 112 l 2 - 512 103.200195312 504.799804688 96 496 96 c 2 - 16 96 l 2 - 7.2001953125 96 0 103.200195312 0 112 c 2 - 0 144 l 2 - 0 152.799804688 7.2001953125 160 16 160 c 2 - 496 160 l 2 -496 288 m 2 - 504.799804688 288 512 280.799804688 512 272 c 2 - 512 240 l 2 - 512 231.200195312 504.799804688 224 496 224 c 2 - 16 224 l 2 - 7.2001953125 224 0 231.200195312 0 240 c 2 - 0 272 l 2 - 0 280.799804688 7.2001953125 288 16 288 c 2 - 496 288 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" g r i p hyphen l i n e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" G r i p hyphen L i n e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" G r i p hyphen l i n e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" G R I P hyphen L I N E S -EndChar - -StartChar: grip-lines-vertical -Encoding: 63397 63397 955 -Width: 256 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -96 -48 m 2 - 96 -56.7998046875 88.7998046875 -64 80 -64 c 2 - 48 -64 l 2 - 39.2001953125 -64 32 -56.7998046875 32 -48 c 2 - 32 432 l 2 - 32 440.799804688 39.2001953125 448 48 448 c 2 - 80 448 l 2 - 88.7998046875 448 96 440.799804688 96 432 c 2 - 96 -48 l 2 -224 -48 m 2 - 224 -56.7998046875 216.799804688 -64 208 -64 c 2 - 176 -64 l 2 - 167.200195312 -64 160 -56.7998046875 160 -48 c 2 - 160 432 l 2 - 160 440.799804688 167.200195312 448 176 448 c 2 - 208 448 l 2 - 216.799804688 448 224 440.799804688 224 432 c 2 - 224 -48 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" g r i p hyphen l i n e s hyphen v e r t i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" G r i p hyphen L i n e s hyphen V e r t i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" G r i p hyphen l i n e s hyphen v e r t i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 12" G R I P hyphen L I N E S hyphen V E R T I C A L -EndChar - -StartChar: guitar -Encoding: 63398 63398 956 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -502.629882812 409 m 2 - 507.786132812 403.829101562 511.969726562 393.70703125 511.969726562 386.405273438 c 0 - 511.969726562 379.08984375 507.772460938 368.953125 502.599609375 363.780273438 c 2 - 456.26953125 317.459960938 l 2 - 453.022460938 314.203125 446.844726562 310.381835938 442.48046875 308.9296875 c 2 - 406 296.76953125 l 1 - 329.759765625 220.530273438 l 1 - 338.549804688 208.330078125 345.530273438 194.969726562 348.919921875 180.330078125 c 0 - 356.66015625 146.940429688 349.790039062 113.459960938 326.919921875 90.580078125 c 0 - 319.041992188 82.73828125 304.04296875 73.666015625 293.440429688 70.330078125 c 0 - 274.900390625 64.3203125 260.76953125 47.0400390625 259.009765625 28.1904296875 c 0 - 256.719726562 4.3798828125 247.559570312 -17.6396484375 230.559570312 -34.51953125 c 0 - 185 -80 103.059570312 -71.900390625 47.580078125 -16.4501953125 c 0 - -7.900390625 39 -16.1103515625 121 29.5302734375 166.509765625 c 0 - 46.41015625 183.5 68.4404296875 192.6796875 92.1396484375 194.950195312 c 0 - 111.080078125 196.719726562 128.290039062 210.849609375 134.290039062 229.41015625 c 0 - 137.62109375 240.01171875 146.688476562 255.005859375 154.530273438 262.879882812 c 0 - 177.41015625 285.759765625 210.959960938 292.66015625 244.41015625 284.879882812 c 0 - 259.009765625 281.48046875 272.349609375 274.5 284.509765625 265.740234375 c 1 - 360.76953125 342 l 1 - 372.9296875 378.509765625 l 2 - 374.381835938 382.874023438 378.203125 389.051757812 381.459960938 392.299804688 c 2 - 427.740234375 438.629882812 l 2 - 432.9140625 443.8046875 443.051757812 448.004882812 450.370117188 448.004882812 c 0 - 457.6875 448.004882812 467.826171875 443.8046875 473 438.629882812 c 2 - 502.629882812 409 l 2 -208 96 m 0 - 234.49609375 96 256 117.50390625 256 144 c 0 - 256 170.49609375 234.49609375 192 208 192 c 0 - 181.50390625 192 160 170.49609375 160 144 c 0 - 160 117.50390625 181.50390625 96 208 96 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" g u i t a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" G u i t a r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" G U I T A R -EndChar - -StartChar: heart-broken -Encoding: 63401 63401 957 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -473.700195312 374.200195312 m 2 - 522.400390625 324.400390625 524.5 245.099609375 481 192.099609375 c 1 - 268.799804688 -26.599609375 l 2 - 261.700195312 -33.900390625 250.200195312 -33.900390625 243.099609375 -26.599609375 c 2 - 31 192 l 1 - -12.5 245.099609375 -10.400390625 324.400390625 38.2998046875 374.200195312 c 2 - 40.7001953125 376.599609375 l 2 - 87 424 159.700195312 428.400390625 211.400390625 390.599609375 c 1 - 240 304.099609375 l 1 - 144 240.099609375 l 1 - 288 96.099609375 l 1 - 240 224.099609375 l 1 - 336 288.099609375 l 1 - 301.700195312 391.5 l 1 - 353.299804688 428.400390625 425.299804688 423.700195312 471.299804688 376.700195312 c 2 - 473.700195312 374.200195312 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" h e a r t hyphen b r o k e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" H e a r t hyphen B r o k e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" H e a r t hyphen b r o k e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" H E A R T hyphen B R O K E N -EndChar - -StartChar: holly-berry -Encoding: 63402 63402 958 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -144 256 m 0 - 117.5 256 96 277.5 96 304 c 0 - 96 330.5 117.5 352 144 352 c 0 - 170.5 352 192 330.5 192 304 c 0 - 192 277.5 170.5 256 144 256 c 0 -256 304 m 0 - 256 330.5 277.5 352 304 352 c 0 - 330.5 352 352 330.5 352 304 c 0 - 352 277.5 330.5 256 304 256 c 0 - 277.5 256 256 277.5 256 304 c 0 -224 352 m 0 - 197.5 352 176 373.5 176 400 c 0 - 176 426.5 197.5 448 224 448 c 0 - 250.5 448 272 426.5 272 400 c 0 - 272 373.5 250.5 352 224 352 c 0 -207.799804688 212.900390625 m 0 - 207.400390625 173.099609375 215.200195312 134.799804688 230.700195312 100.599609375 c 0 - 234.700195312 91.7001953125 228.700195312 81.400390625 219 80.400390625 c 0 - 203.799804688 78.900390625 188.599609375 75.7998046875 173.700195312 71.2998046875 c 0 - 158.799804688 66.7998046875 149.900390625 51.400390625 153.5 36.2001953125 c 0 - 157.099609375 21 162 6.2998046875 168.200195312 -7.599609375 c 0 - 172.200195312 -16.5 166.299804688 -26.900390625 156.599609375 -27.7998046875 c 0 - 120.700195312 -31.2001953125 85 -42.7001953125 51.7998046875 -61.7001953125 c 0 - 39.400390625 -68.7998046875 24.2998046875 -60.099609375 24.2001953125 -45.7001953125 c 0 - 24.099609375 -7.5 16.2001953125 29.2001953125 1.2001953125 62 c 0 - -2.7998046875 70.900390625 3.2001953125 81.2001953125 12.900390625 82.2001953125 c 0 - 28.099609375 83.7001953125 43.2998046875 86.7998046875 58.2001953125 91.2998046875 c 0 - 73.099609375 95.7998046875 82 111.200195312 78.400390625 126.400390625 c 0 - 74.7998046875 141.599609375 69.900390625 156.299804688 63.7001953125 170.200195312 c 0 - 59.7001953125 179.099609375 65.599609375 189.5 75.2998046875 190.400390625 c 0 - 112.599609375 193.900390625 149.700195312 206.299804688 184 226.599609375 c 0 - 194.700195312 233 207.900390625 225.299804688 207.799804688 212.900390625 c 0 -435 82.400390625 m 0 - 444.700195312 81.400390625 450.799804688 71 446.5 62.2998046875 c 0 - 431.5 29.599609375 423.700195312 -7.2001953125 423.5 -45.400390625 c 0 - 423.5 -59.7998046875 408.400390625 -68.5 395.900390625 -61.400390625 c 0 - 362.700195312 -42.400390625 327 -30.900390625 291.099609375 -27.5 c 0 - 281.400390625 -26.599609375 275.5 -16.2001953125 279.5 -7.2998046875 c 0 - 285.700195312 6.7001953125 290.599609375 21.2998046875 294.200195312 36.5 c 0 - 297.799804688 51.7001953125 288.900390625 67.099609375 274 71.599609375 c 0 - 269.099609375 73.099609375 264.099609375 74.099609375 259.200195312 75.2998046875 c 1 - 265 87.599609375 265.5 101.799804688 259.799804688 114.200195312 c 0 - 246.900390625 142.5 240.099609375 174.900390625 239.900390625 208.200195312 c 0 - 239.900390625 209.900390625 240.099609375 211.5 240.099609375 213.099609375 c 0 - 240 225.400390625 253.200195312 233.099609375 263.900390625 226.799804688 c 0 - 298.200195312 206.5 335.299804688 194.099609375 372.599609375 190.599609375 c 0 - 382.299804688 189.700195312 388.200195312 179.299804688 384.200195312 170.400390625 c 0 - 378 156.400390625 373.099609375 141.799804688 369.5 126.599609375 c 0 - 365.900390625 111.400390625 374.799804688 96 389.700195312 91.5 c 0 - 404.700195312 87.099609375 419.799804688 84 435 82.400390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" h o l l y hyphen b e r r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" H o l l y hyphen B e r r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" H o l l y hyphen b e r r y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" H O L L Y hyphen B E R R Y -EndChar - -StartChar: horse-head -Encoding: 63403 63403 959 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -509.799804688 115.5 m 2 - 514.400390625 103.700195312 511.599609375 90.2001953125 502.700195312 81.099609375 c 2 - 457.400390625 41.2998046875 l 2 - 451.400390625 35.2998046875 443.299804688 31.900390625 434.799804688 31.900390625 c 2 - 384.5 31.900390625 l 2 - 374.200195312 31.900390625 364.5 36.7998046875 358.5 45.2001953125 c 2 - 312.5 109.099609375 l 1 - 298.700195312 101 282.900390625 95.900390625 265.700195312 95.900390625 c 0 - 226.5 95.900390625 193.099609375 119.599609375 178.299804688 153.299804688 c 0 - 176 158.400390625 169.299804688 159.599609375 165.400390625 155.700195312 c 2 - 153.299804688 143.599609375 l 2 - 150.799804688 141.200195312 150.099609375 137.400390625 151.700195312 134.299804688 c 0 - 171.400390625 95.400390625 210.400390625 68.2001953125 256 64.7001953125 c 1 - 256 64 l 1 - 296.799804688 -17.7001953125 l 2 - 307.5 -39 292 -64 268.200195312 -64 c 2 - 32 -64 l 2 - 14.2998046875 -64 0 -49.7001953125 0 -32 c 2 - 0 49.2001953125 l 2 - 0 209.099609375 35.900390625 324.599609375 166.900390625 371.700195312 c 2 - 369.099609375 447.400390625 l 2 - 374 449.200195312 379.799804688 446.299804688 381.099609375 441.299804688 c 0 - 393.200195312 394.900390625 364.900390625 369.599609375 346.900390625 359 c 1 - 389.5 350.799804688 425 321 439.900390625 279.799804688 c 2 - 509.799804688 115.5 l 2 -328 224 m 0 - 341.299804688 224 352 234.700195312 352 248 c 0 - 352 261.299804688 341.299804688 272 328 272 c 0 - 314.700195312 272 304 261.299804688 304 248 c 0 - 304 234.700195312 314.700195312 224 328 224 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" h o r s e hyphen h e a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" H o r s e hyphen H e a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" H o r s e hyphen h e a d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 38" H O R S E hyphen H E A D -EndChar - -StartChar: icicles -Encoding: 63405 63405 960 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -511.400390625 410.099609375 m 2 - 423.900390625 -57.599609375 l 2 - 422.200195312 -66.2001953125 409.900390625 -66.2001953125 408.200195312 -57.599609375 c 2 - 341.5 306.200195312 l 1 - 295.700195312 133.700195312 l 2 - 293.400390625 126.099609375 282.700195312 126.099609375 280.400390625 133.700195312 c 2 - 246.299804688 267.099609375 l 1 - 199.799804688 70.2001953125 l 2 - 197.900390625 61.900390625 186.099609375 61.900390625 184.200195312 70.2001953125 c 2 - 140 257.5 l 1 - 103.599609375 133.400390625 l 2 - 101.200195312 126.200195312 91 126.200195312 88.5 133.400390625 c 2 - 1.400390625 406.799804688 l 2 - -4.7998046875 427.299804688 10.599609375 448 32 448 c 2 - 480 448 l 2 - 500 448 515.099609375 429.799804688 511.400390625 410.099609375 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" i c i c l e s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" I C I C L E S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" I c i c l e s -EndChar - -StartChar: igloo -Encoding: 63406 63406 961 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320 414.099609375 m 1 - 320 288 l 1 - 48.599609375 288 l 1 - 100.200195312 365.200195312 188.200195312 416 288 416 c 0 - 298.799804688 416 309.5 415.299804688 320 414.099609375 c 1 -96 256 m 1 - 96 128 l 1 - 0 128 l 1 - 0 174 11.099609375 217.400390625 30.2998046875 256 c 1 - 96 256 l 1 -352 408.599609375 m 1 - 424.799804688 392.099609375 487.200195312 348.099609375 527.400390625 288 c 1 - 352 288 l 1 - 352 408.599609375 l 1 -480 128 m 1 - 480 256 l 1 - 545.700195312 256 l 1 - 564.900390625 217.400390625 576 174 576 128 c 1 - 480 128 l 1 -416 64 m 2 - 416 75.099609375 414.099609375 85.7001953125 411.5 96 c 1 - 576 96 l 1 - 576 0 l 2 - 576 -17.7001953125 561.700195312 -32 544 -32 c 2 - 416 -32 l 1 - 416 64 l 2 -448 256 m 1 - 448 128 l 1 - 398.200195312 128 l 1 - 376 166.099609375 335.200195312 192 288 192 c 0 - 240.799804688 192 200 166.099609375 177.799804688 128 c 1 - 128 128 l 1 - 128 256 l 1 - 448 256 l 1 -0 0 m 2 - 0 96 l 1 - 164.5 96 l 1 - 161.900390625 85.7001953125 160 75.099609375 160 64 c 2 - 160 -32 l 1 - 32 -32 l 2 - 14.2998046875 -32 0 -17.7001953125 0 0 c 2 -288 160 m 0 - 341 160 384 117 384 64 c 2 - 384 -32 l 1 - 192 -32 l 1 - 192 64 l 2 - 192 117 235 160 288 160 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" i g l o o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" I g l o o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" I G L O O -EndChar - -StartChar: mitten -Encoding: 63413 63413 962 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -368 32 m 2 - 376.799804688 32 384 24.7998046875 384 16 c 2 - 384 -48 l 2 - 384 -56.7998046875 376.799804688 -64 368 -64 c 2 - 48 -64 l 2 - 39.2001953125 -64 32 -56.7998046875 32 -48 c 2 - 32 16 l 2 - 32 24.7998046875 39.2001953125 32 48 32 c 2 - 368 32 l 2 -425 241.099609375 m 0 - 452.099609375 218.5 455.799804688 178.200195312 433.099609375 151 c 2 - 360.599609375 64 l 1 - 51.599609375 64 l 1 - 3.7001953125 271.599609375 l 2 - -14.2001953125 349.099609375 34.2001953125 426.400390625 111.599609375 444.299804688 c 0 - 189 462.200195312 266.400390625 413.799804688 284.400390625 336.299804688 c 2 - 314 207.900390625 l 1 - 334.900390625 232.900390625 l 2 - 357.5 260.099609375 397.799804688 263.700195312 425 241.099609375 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" m i t t e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" M i t t e n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" M I T T E N -EndChar - -StartChar: mug-hot -Encoding: 63414 63414 963 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -127.099609375 301.5 m 0 - 124.400390625 318.099609375 116.700195312 333.400390625 104.700195312 345.599609375 c 0 - 82.099609375 368.700195312 68 398.099609375 64.099609375 430 c 0 - 63 439.5 70.599609375 448 80.400390625 448 c 2 - 96.7998046875 448 l 2 - 105 448 111.799804688 442.099609375 112.900390625 434.200195312 c 0 - 115.700195312 414 124.900390625 395.400390625 139.299804688 380.700195312 c 0 - 159.5 360.200195312 172.099609375 334.200195312 175.900390625 306 c 0 - 177.200195312 296.5 169.400390625 288 159.599609375 288 c 2 - 143.099609375 288 l 2 - 135.099609375 288 128.400390625 293.799804688 127.099609375 301.5 c 0 -239.099609375 301.5 m 0 - 236.400390625 318.099609375 228.700195312 333.400390625 216.700195312 345.599609375 c 0 - 194.099609375 368.700195312 180 398.099609375 176.099609375 430 c 0 - 174.900390625 439.5 182.599609375 448 192.400390625 448 c 2 - 208.799804688 448 l 2 - 217 448 223.799804688 442.099609375 224.900390625 434.200195312 c 0 - 227.700195312 414 236.900390625 395.400390625 251.299804688 380.700195312 c 0 - 271.5 360.200195312 284.099609375 334.200195312 287.900390625 306 c 0 - 289.200195312 296.5 281.400390625 288 271.599609375 288 c 2 - 255.099609375 288 l 2 - 247.099609375 288 240.400390625 293.799804688 239.099609375 301.5 c 0 -400 256 m 2 - 461.799804688 256 512 205.799804688 512 144 c 0 - 512 82.2001953125 461.799804688 32 400 32 c 2 - 384 32 l 1 - 384 -21 341 -64 288 -64 c 2 - 96 -64 l 2 - 43 -64 0 -21 0 32 c 2 - 0 224 l 2 - 0 241.700195312 14.2998046875 256 32 256 c 2 - 400 256 l 2 -400 96 m 2 - 426.5 96 448 117.5 448 144 c 0 - 448 170.5 426.5 192 400 192 c 2 - 384 192 l 1 - 384 96 l 1 - 400 96 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" m u g hyphen h o t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" M u g hyphen H o t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" M u g hyphen h o t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 49" M U G hyphen H O T -EndChar - -StartChar: radiation -Encoding: 63417 63417 964 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -328.200195312 192.200195312 m 1 - 328.200195312 220.799804688 313 245.700195312 290.400390625 260 c 1 - 370.799804688 388.400390625 l 2 - 375.599609375 396.099609375 386.099609375 398.5 393.5 393.200195312 c 0 - 451.599609375 351.200195312 490.900390625 284.799804688 496 209 c 0 - 496.599609375 199.900390625 488.900390625 192.200195312 479.799804688 192.200195312 c 2 - 328.200195312 192.200195312 l 1 -290.400390625 124.5 m 1 - 370.799804688 -4 l 2 - 375.599609375 -11.599609375 373.200195312 -22.099609375 365.200195312 -26.400390625 c 0 - 330.299804688 -45.2001953125 290.400390625 -56 248 -56 c 0 - 205.599609375 -56 165.700195312 -45.2001953125 130.799804688 -26.400390625 c 0 - 122.799804688 -22.099609375 120.400390625 -11.7001953125 125.200195312 -4 c 2 - 205.599609375 124.5 l 1 - 218 116.799804688 232.400390625 112.099609375 248 112.099609375 c 0 - 263.599609375 112.099609375 278.099609375 116.799804688 290.400390625 124.5 c 1 -248 144.200195312 m 0 - 221.5 144.200195312 200 165.700195312 200 192.200195312 c 0 - 200 218.700195312 221.5 240.200195312 248 240.200195312 c 0 - 274.5 240.200195312 296 218.700195312 296 192.200195312 c 0 - 296 165.700195312 274.5 144.200195312 248 144.200195312 c 0 -16.2001953125 192.200195312 m 2 - 7.099609375 192.200195312 -0.599609375 199.900390625 0 208.900390625 c 0 - 5.099609375 284.700195312 44.400390625 351.099609375 102.5 393.099609375 c 0 - 109.900390625 398.5 120.400390625 396 125.200195312 388.299804688 c 2 - 205.599609375 259.900390625 l 1 - 183 245.700195312 167.799804688 220.799804688 167.799804688 192.200195312 c 1 - 16.2001953125 192.200195312 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" r a d i a t i o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" R A D I A T I O N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" R a d i a t i o n -EndChar - -StartChar: radiation-alt -Encoding: 63418 63418 965 -Width: 496 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -312 192 m 1 - 312 214.799804688 299.900390625 234.799804688 281.900390625 246 c 1 - 323.599609375 312.799804688 l 2 - 328.799804688 321.099609375 340 322.700195312 347.599609375 316.599609375 c 0 - 380.099609375 290.599609375 402.5 252.400390625 407.099609375 208.799804688 c 0 - 408 199.700195312 400.299804688 192 391.099609375 192 c 2 - 312 192 l 1 -214.200195312 137.900390625 m 1 - 224 131.700195312 235.700195312 128 248.099609375 128 c 0 - 260.5 128 272.099609375 131.700195312 281.900390625 137.900390625 c 1 - 323.700195312 71 l 2 - 328.5 63.2001953125 326.099609375 52.599609375 317.900390625 48.5 c 0 - 296.700195312 38.099609375 273.099609375 32 248 32 c 0 - 222.900390625 32 199.299804688 38.099609375 178.200195312 48.5 c 0 - 170 52.599609375 167.5 63.2001953125 172.400390625 71 c 2 - 214.200195312 137.900390625 l 1 -104.900390625 192 m 2 - 95.7001953125 192 87.900390625 199.700195312 89 208.900390625 c 0 - 93.599609375 252.5 115.900390625 290.700195312 148.5 316.700195312 c 0 - 156.099609375 322.799804688 167.299804688 321.200195312 172.5 312.900390625 c 2 - 214.200195312 246.099609375 l 1 - 196.099609375 234.799804688 184 214.799804688 184 192 c 1 - 104.900390625 192 l 2 -248 -56 m 0 - 111 -56 0 55 0 192 c 0 - 0 329 111 440 248 440 c 0 - 385 440 496 329 496 192 c 0 - 496 55 385 -56 248 -56 c 0 -248 376 m 0 - 146.5 376 64 293.5 64 192 c 0 - 64 90.5 146.5 8 248 8 c 0 - 349.5 8 432 90.5 432 192 c 0 - 432 293.5 349.5 376 248 376 c 0 -248 160 m 0 - 230.299804688 160 216 174.299804688 216 192 c 0 - 216 209.700195312 230.299804688 224 248 224 c 0 - 265.700195312 224 280 209.700195312 280 192 c 0 - 280 174.299804688 265.700195312 160 248 160 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" r a d i a t i o n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" R a d i a t i o n hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" R a d i a t i o n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 29" R A D I A T I O N hyphen A L T -EndChar - -StartChar: restroom -Encoding: 63421 63421 966 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -128 320 m 0 - 92.7001953125 320 64 348.700195312 64 384 c 0 - 64 419.299804688 92.7001953125 448 128 448 c 0 - 163.299804688 448 192 419.299804688 192 384 c 0 - 192 348.700195312 163.299804688 320 128 320 c 0 -512 320 m 0 - 476.700195312 320 448 348.700195312 448 384 c 0 - 448 419.299804688 476.700195312 448 512 448 c 0 - 547.299804688 448 576 419.299804688 576 384 c 0 - 576 348.700195312 547.299804688 320 512 320 c 0 -639.299804688 93.5 m 2 - 643 78.400390625 631 64 614.799804688 64 c 2 - 560 64 l 1 - 560 -40 l 2 - 560 -53.2998046875 549.299804688 -64 536 -64 c 2 - 488 -64 l 2 - 474.700195312 -64 464 -53.2998046875 464 -40 c 2 - 464 64 l 1 - 409.200195312 64 l 2 - 393 64 381 78.400390625 384.5 93.5 c 2 - 430.099609375 279.299804688 l 2 - 433.400390625 292.799804688 445.599609375 302.299804688 459.900390625 303.5 c 1 - 474.900390625 293.799804688 492.700195312 288 511.900390625 288 c 0 - 531.099609375 288 548.900390625 293.799804688 563.900390625 303.5 c 1 - 578.200195312 302.299804688 590.400390625 292.799804688 593.700195312 279.299804688 c 2 - 639.299804688 93.5 l 2 -336 448 m 2 - 344.799804688 448 352 440.799804688 352 432 c 2 - 352 -48 l 2 - 352 -56.7998046875 344.799804688 -64 336 -64 c 2 - 304 -64 l 2 - 295.200195312 -64 288 -56.7998046875 288 -48 c 2 - 288 432 l 2 - 288 440.799804688 295.200195312 448 304 448 c 2 - 336 448 l 2 -180.099609375 303.599609375 m 1 - 204.700195312 301.5 224 281.099609375 224 256 c 2 - 224 120 l 2 - 224 106.700195312 213.299804688 96 200 96 c 2 - 192 96 l 1 - 192 -40 l 2 - 192 -53.2998046875 181.299804688 -64 168 -64 c 2 - 88 -64 l 2 - 74.7001953125 -64 64 -53.2998046875 64 -40 c 2 - 64 96 l 1 - 56 96 l 2 - 42.7001953125 96 32 106.700195312 32 120 c 2 - 32 256 l 2 - 32 281.099609375 51.2998046875 301.5 75.900390625 303.599609375 c 1 - 90.900390625 293.799804688 108.799804688 288 128 288 c 0 - 147.200195312 288 165.099609375 293.799804688 180.099609375 303.599609375 c 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" r e s t r o o m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" R e s t r o o m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" R E S T R O O M -EndChar - -StartChar: satellite -Encoding: 63423 63423 967 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -502.700195312 183 m 2 - 515.099609375 170.599609375 515.099609375 150.400390625 502.599609375 138 c 2 - 405.900390625 41.2998046875 l 2 - 399.700195312 35.099609375 391.5 32 383.400390625 32 c 0 - 375.299804688 32 367.099609375 35.099609375 360.900390625 41.2998046875 c 2 - 280.599609375 121.700195312 l 1 - 270.700195312 111.799804688 l 1 - 295 58.099609375 293.400390625 -4.400390625 265.299804688 -56.7001953125 c 0 - 260.799804688 -65.2001953125 248.900390625 -66.2998046875 242.099609375 -59.5 c 2 - 134.599609375 48 l 1 - 116.799804688 30.2001953125 l 2 - 117.5 27.599609375 118.400390625 25.2001953125 118.400390625 22.400390625 c 0 - 118.400390625 4.7001953125 104.099609375 -9.599609375 86.400390625 -9.599609375 c 0 - 68.7001953125 -9.599609375 54.400390625 4.7001953125 54.400390625 22.400390625 c 0 - 54.400390625 40.099609375 68.7001953125 54.400390625 86.400390625 54.400390625 c 0 - 89.2001953125 54.400390625 91.599609375 53.5 94.2001953125 52.7998046875 c 2 - 112 70.599609375 l 1 - 4.5 178.099609375 l 2 - -2.2998046875 184.900390625 -1.2001953125 196.700195312 7.2998046875 201.299804688 c 0 - 59.599609375 229.400390625 122.099609375 231 175.799804688 206.700195312 c 1 - 185.599609375 216.5 l 1 - 105.299804688 296.900390625 l 2 - 92.900390625 309.400390625 92.900390625 329.599609375 105.299804688 342 c 2 - 202 438.700195312 l 2 - 208.200195312 444.900390625 216.299804688 448 224.5 448 c 0 - 232.700195312 448 240.799804688 444.900390625 247.099609375 438.700195312 c 2 - 327.400390625 358.400390625 l 1 - 375.200195312 406.299804688 l 2 - 388.299804688 419.400390625 409.599609375 419.400390625 422.700195312 406.299804688 c 2 - 470.200195312 358.799804688 l 2 - 483.299804688 345.700195312 483.299804688 324.400390625 470.200195312 311.299804688 c 2 - 422.400390625 263.400390625 l 1 - 502.700195312 183 l 2 -150.700195312 319.5 m 1 - 219.599609375 250.599609375 l 1 - 293.400390625 324.400390625 l 1 - 224.5 393.299804688 l 1 - 150.700195312 319.5 l 1 -383.5 86.7001953125 m 1 - 457.299804688 160.5 l 1 - 388.400390625 229.400390625 l 1 - 314.599609375 155.599609375 l 1 - 383.5 86.7001953125 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" s a t e l l i t e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S A T E L L I T E -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 43" S a t e l l i t e -EndChar - -StartChar: satellite-dish -Encoding: 63424 63424 968 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -188.799804688 102.099609375 m 1 - 305.400390625 -14.5 l 2 - 312.799804688 -21.7998046875 311.599609375 -34.599609375 302.400390625 -39.5 c 0 - 224.700195312 -81.2998046875 125.700195312 -69.400390625 60.099609375 -3.7998046875 c 0 - -5.5 61.7998046875 -17.400390625 160.700195312 24.400390625 238.5 c 0 - 29.2998046875 247.599609375 42.099609375 248.799804688 49.400390625 241.5 c 2 - 166.200195312 124.700195312 l 1 - 193.599609375 152.099609375 l 2 - 192.900390625 154.700195312 192 157.099609375 192 159.900390625 c 0 - 192 177.599609375 206.299804688 191.900390625 224 191.900390625 c 0 - 241.700195312 191.900390625 256 177.599609375 256 159.900390625 c 0 - 256 142.200195312 241.700195312 127.900390625 224 127.900390625 c 0 - 221.200195312 127.900390625 218.799804688 128.799804688 216.200195312 129.5 c 2 - 188.799804688 102.099609375 l 1 -209 448 m 0 - 372.200195312 439.400390625 503.400390625 308.200195312 511.900390625 145 c 0 - 512.400390625 135.799804688 505.099609375 128 495.900390625 128 c 2 - 463.799804688 128 l 2 - 455.400390625 128 448.400390625 134.599609375 447.900390625 143 c 0 - 440.400390625 272.5 336.400390625 377.5 207 384.5 c 0 - 198.599609375 384.900390625 192 391.900390625 192 400.400390625 c 2 - 192 432 l 2 - 192 441.200195312 199.799804688 448.5 209 448 c 0 -209.299804688 352 m 0 - 319.400390625 343.5 407.5 255.400390625 415.900390625 145.299804688 c 0 - 416.599609375 136 409.099609375 128 399.799804688 128 c 2 - 367.599609375 128 l 2 - 359.299804688 128 352.5 134.400390625 351.700195312 142.700195312 c 0 - 344.799804688 219.700195312 283.599609375 281.599609375 206.799804688 287.900390625 c 0 - 198.5 288.5 192 295.400390625 192 303.799804688 c 2 - 192 335.900390625 l 2 - 192 345.299804688 200 352.700195312 209.299804688 352 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" s a t e l l i t e hyphen d i s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" S a t e l l i t e hyphen D i s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" S a t e l l i t e hyphen d i s h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" S A T E L L I T E hyphen D I S H -EndChar - -StartChar: sd-card -Encoding: 63426 63426 969 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -320 448 m 2 - 355.299804688 448 384 419.299804688 384 384 c 2 - 384 0 l 2 - 384 -35.2998046875 355.299804688 -64 320 -64 c 2 - 64 -64 l 2 - 28.7001953125 -64 0 -35.2998046875 0 0 c 2 - 0 320 l 1 - 128 448 l 1 - 320 448 l 2 -160 288 m 1 - 160 384 l 1 - 112 384 l 1 - 112 288 l 1 - 160 288 l 1 -240 288 m 1 - 240 384 l 1 - 192 384 l 1 - 192 288 l 1 - 240 288 l 1 -320 288 m 1 - 320 384 l 1 - 272 384 l 1 - 272 288 l 1 - 320 288 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" s d hyphen c a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" S d hyphen c a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" S D hyphen C A R D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" S d hyphen C a r d -EndChar - -StartChar: sim-card -Encoding: 63428 63428 970 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 384 m 2 - 0 419.299804688 28.7001953125 448 64 448 c 2 - 256 448 l 1 - 384 320 l 1 - 384 0 l 2 - 384 -35.2998046875 355.299804688 -64 320 -64 c 2 - 64 -64 l 2 - 28.7001953125 -64 0 -35.2998046875 0 0 c 2 - 0 384 l 2 -224 192 m 1 - 224 256 l 1 - 160 256 l 1 - 160 192 l 1 - 224 192 l 1 -320 192 m 1 - 320 224 l 2 - 320 241.700195312 305.700195312 256 288 256 c 2 - 256 256 l 1 - 256 192 l 1 - 320 192 l 1 -256 64 m 1 - 256 0 l 1 - 288 0 l 2 - 305.700195312 0 320 14.2998046875 320 32 c 2 - 320 64 l 1 - 256 64 l 1 -160 64 m 1 - 160 0 l 1 - 224 0 l 1 - 224 64 l 1 - 160 64 l 1 -64 64 m 1 - 64 32 l 2 - 64 14.2998046875 78.2998046875 0 96 0 c 2 - 128 0 l 1 - 128 64 l 1 - 64 64 l 1 -64 160 m 1 - 64 96 l 1 - 320 96 l 1 - 320 160 l 1 - 64 160 l 1 -64 224 m 2 - 64 192 l 1 - 128 192 l 1 - 128 256 l 1 - 96 256 l 2 - 78.2998046875 256 64 241.700195312 64 224 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" s i m hyphen c a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" S I M hyphen C A R D -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" S i m hyphen C a r d -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 44" S i m hyphen c a r d -EndChar - -StartChar: skating -Encoding: 63429 63429 971 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 448 m 0 - 426.5 448 448 426.5 448 400 c 0 - 448 373.5 426.5 352 400 352 c 0 - 373.5 352 352 373.5 352 400 c 0 - 352 426.5 373.5 448 400 448 c 0 -400 0 m 0 - 408.799804688 0 416 -7.2001953125 416 -16 c 0 - 416 -42.5 394.5 -64 368 -64 c 2 - 272 -64 l 2 - 263.200195312 -64 256 -56.7998046875 256 -48 c 0 - 256 -39.2001953125 263.200195312 -32 272 -32 c 2 - 368 -32 l 2 - 376.799804688 -32 384 -24.7998046875 384 -16 c 0 - 384 -7.2001953125 391.200195312 0 400 0 c 0 -117.799804688 -8.599609375 m 0 - 124.099609375 -2.2998046875 134.299804688 -2.400390625 140.5 -8.599609375 c 0 - 146.700195312 -14.7998046875 146.700195312 -25 140.5 -31.2001953125 c 0 - 131.200195312 -40.5 118.900390625 -45.2001953125 106.599609375 -45.2001953125 c 0 - 94.2998046875 -45.2001953125 82 -40.599609375 72.599609375 -31.2001953125 c 2 - 4.7001953125 36.7001953125 l 2 - -1.5 42.900390625 -1.5 53.099609375 4.7001953125 59.2998046875 c 0 - 10.900390625 65.5 21.099609375 65.5 27.2998046875 59.2998046875 c 2 - 95.2001953125 -8.599609375 l 2 - 101.400390625 -14.900390625 111.599609375 -14.7998046875 117.799804688 -8.599609375 c 0 -173.900390625 171.200195312 m 1 - 177.700195312 165.099609375 182.099609375 159.400390625 187.099609375 154.400390625 c 2 - 217.299804688 124.200195312 l 1 - 125.400390625 32.2998046875 l 2 - 119.200195312 26 111 22.900390625 102.799804688 22.900390625 c 0 - 94.599609375 22.900390625 86.400390625 26.099609375 80.2001953125 32.2998046875 c 0 - 67.7001953125 44.7001953125 67.7001953125 65 80.2001953125 77.5 c 2 - 173.900390625 171.200195312 l 1 -128 288 m 2 - 110.299804688 288 96 302.299804688 96 320 c 0 - 96 337.700195312 110.299804688 352 128 352 c 2 - 332.599609375 352 l 2 - 348.900390625 352 363.400390625 342.299804688 369.599609375 327.299804688 c 0 - 375.799804688 312.299804688 372.400390625 295.200195312 360.900390625 283.700195312 c 2 - 278.599609375 201.400390625 l 2 - 278.099609375 200.900390625 277.400390625 200.700195312 276.900390625 200.299804688 c 2 - 337.900390625 139.299804688 l 2 - 346.900390625 130.400390625 352 118 352 105.400390625 c 2 - 352 16 l 2 - 352 -1.7001953125 337.700195312 -16 320 -16 c 0 - 302.299804688 -16 288 -1.7001953125 288 16 c 2 - 288 98.7998046875 l 1 - 209.799804688 177 l 2 - 197.200195312 189.5 190.400390625 206.900390625 191.099609375 224.700195312 c 0 - 191.799804688 242.400390625 199.900390625 259.299804688 213.400390625 270.799804688 c 2 - 233.5 288 l 1 - 128 288 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" s k a t i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" S k a t i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 47" S K A T I N G -EndChar - -StartChar: skiing -Encoding: 63433 63433 972 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -432 352 m 0 - 405.5 352 384 373.5 384 400 c 0 - 384 426.5 405.5 448 432 448 c 0 - 458.5 448 480 426.5 480 400 c 0 - 480 373.5 458.5 352 432 352 c 0 -505 -4.099609375 m 0 - 514.299804688 -13.400390625 514.299804688 -28.599609375 505 -37.900390625 c 0 - 488 -54.900390625 465.200195312 -63.900390625 442 -63.900390625 c 0 - 429.400390625 -63.900390625 416.799804688 -61.2998046875 404.900390625 -55.7998046875 c 2 - 13 146.700195312 l 2 - 1.2001953125 152.700195312 -3.400390625 167.200195312 2.7001953125 179 c 0 - 8.7998046875 190.799804688 23.2998046875 195.299804688 35 189.299804688 c 2 - 232.900390625 87 l 1 - 278.799804688 155.799804688 l 1 - 203.700195312 231 l 2 - 189.400390625 245.400390625 183.099609375 265.5 186 285.400390625 c 1 - 293 232.299804688 l 1 - 333.400390625 191.799804688 l 2 - 349.599609375 175.700195312 352.099609375 150.200195312 339.400390625 131.200195312 c 2 - 290.200195312 57.400390625 l 1 - 426 -12.7998046875 l 2 - 440.599609375 -19.5 459 -16.2001953125 471.099609375 -4.099609375 c 0 - 480.400390625 5.2998046875 495.599609375 5.2998046875 505 -4.099609375 c 0 -120 356.400390625 m 1 - 93.7998046875 379.400390625 l 2 - 91.599609375 381.299804688 91.400390625 384.599609375 93.2998046875 386.799804688 c 0 - 94.599609375 388.299804688 96.5 388.900390625 98.2998046875 388.5 c 2 - 132.700195312 381.5 l 1 - 132.900390625 381.5 l 1 - 144 403.200195312 l 1 - 157.700195312 396.200195312 165.200195312 382.099609375 164.900390625 367.599609375 c 1 - 227.400390625 336.599609375 l 1 - 308.599609375 369.099609375 l 2 - 352.200195312 386.5 385 354.099609375 393.099609375 329.900390625 c 2 - 410.200195312 278.700195312 l 1 - 462.299804688 252.599609375 l 2 - 478.099609375 244.700195312 484.5 225.5 476.599609375 209.700195312 c 0 - 468.700195312 193.900390625 449.599609375 187.5 433.700195312 195.400390625 c 2 - 375.599609375 224.400390625 l 2 - 364.200195312 230.099609375 355.599609375 240 351.599609375 252.099609375 c 2 - 345.200195312 271.200195312 l 1 - 312.799804688 258.200195312 l 1 - 198.299804688 315 l 2 - 198.400390625 315.099609375 198.400390625 315.200195312 198.5 315.299804688 c 2 - 151.299804688 338.700195312 l 1 - 139.700195312 329 122.900390625 326.599609375 108.5 333.900390625 c 1 - 120 356.400390625 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" s k i i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S k i i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S K I I N G -EndChar - -StartChar: skiing-nordic -Encoding: 63434 63434 973 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 352 m 0 - 309.5 352 288 373.5 288 400 c 0 - 288 426.5 309.5 448 336 448 c 0 - 362.5 448 384 426.5 384 400 c 0 - 384 373.5 362.5 352 336 352 c 0 -552 32 m 0 - 565.200195312 32 576 21.2001953125 576 8 c 0 - 576 -31.7001953125 543.700195312 -64 504 -64 c 2 - 24 -64 l 2 - 10.7998046875 -64 0 -53.2998046875 0 -40 c 0 - 0 -26.7001953125 10.7998046875 -16 24 -16 c 2 - 66.900390625 -16 l 1 - 121 254.799804688 l 2 - 120.299804688 255.599609375 119.299804688 256 118.599609375 256.900390625 c 0 - 107.799804688 271 110.5 291.099609375 124.5 301.799804688 c 2 - 164.200195312 332.200195312 l 2 - 187.200195312 349.799804688 216.700195312 356.099609375 245 349.299804688 c 2 - 316.200195312 328.099609375 l 2 - 342.5 321.400390625 365.5 302.700195312 378 277.200195312 c 2 - 404.099609375 224 l 1 - 448.099609375 224 l 2 - 465.799804688 224 480.099609375 209.700195312 480.099609375 192 c 0 - 480.099609375 178.599609375 471.700195312 167.099609375 460 162.400390625 c 1 - 434.5 -16 l 1 - 504 -16 l 2 - 517.200195312 -16 528 -5.2001953125 528 8 c 0 - 528 21.2998046875 538.799804688 32 552 32 c 0 -291.5 -16 m 1 - 317 65.2001953125 l 1 - 232 115.400390625 l 2 - 204.400390625 131.700195312 193.099609375 166.200195312 205.700195312 195.700195312 c 2 - 243.200195312 283.099609375 l 1 - 228.5 287.5 l 2 - 220.599609375 289.400390625 210.900390625 287.299804688 203.200195312 281.400390625 c 2 - 163.5 251 l 2 - 159.900390625 248.299804688 155.900390625 246.400390625 151.799804688 245.400390625 c 2 - 99.5 -16 l 1 - 123.700195312 -16 l 1 - 186.200195312 115.799804688 l 1 - 193.799804688 104.900390625 203.599609375 95.2001953125 215.700195312 88 c 2 - 237.700195312 75 l 1 - 194.599609375 -16 l 1 - 291.5 -16 l 1 -402.099609375 -16 m 1 - 427.299804688 160 l 1 - 394 160 l 2 - 375.799804688 160 358.900390625 170.599609375 350.900390625 186.900390625 c 2 - 330.599609375 228.299804688 l 1 - 299.299804688 150 l 1 - 360.5 113.900390625 l 2 - 379.200195312 102.599609375 388 80.2998046875 382.099609375 59.5 c 2 - 358.5 -16 l 1 - 402.099609375 -16 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" s k i i n g hyphen n o r d i c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S k i i n g hyphen N o r d i c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S k i i n g hyphen n o r d i c -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 31" S K I I N G hyphen N O R D I C -EndChar - -StartChar: sleigh -Encoding: 63436 63436 974 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -612.700195312 97.2998046875 m 2 - 631.200195312 82.599609375 641.299804688 60.099609375 639.900390625 36.2998046875 c 0 - 637.700195312 -2.7001953125 603 -32 564 -32 c 2 - 48 -32 l 2 - 39.2001953125 -32 32 -24.7998046875 32 -16 c 2 - 32 0 l 2 - 32 8.7998046875 39.2001953125 16 48 16 c 2 - 567.299804688 16 l 2 - 580.900390625 16 591.900390625 27 591.900390625 40.599609375 c 0 - 591.900390625 48.099609375 588.599609375 55.099609375 582.700195312 59.7998046875 c 2 - 573.400390625 67.2001953125 l 2 - 566.5 72.7001953125 565.400390625 82.7998046875 570.900390625 89.7001953125 c 2 - 580.900390625 102.200195312 l 2 - 586.400390625 109.099609375 596.5 110.200195312 603.400390625 104.700195312 c 2 - 612.700195312 97.2998046875 l 2 -32 224 m 2 - 32 352 l 1 - 14.2998046875 352 0 366.299804688 0 384 c 0 - 0 401.700195312 14.2998046875 416 32 416 c 2 - 52.7001953125 416 l 2 - 118.400390625 416 178.599609375 378.799804688 208 320 c 0 - 237.400390625 261.200195312 297.5 224 363.299804688 224 c 2 - 384 224 l 2 - 419.299804688 224 448 252.700195312 448 288 c 2 - 448 352 l 1 - 544 352 l 2 - 561.700195312 352 576 337.700195312 576 320 c 0 - 576 302.299804688 561.700195312 288 544 288 c 1 - 544 192 l 2 - 544 139 501 96 448 96 c 1 - 448 48 l 1 - 384 48 l 1 - 384 96 l 1 - 192 96 l 1 - 192 48 l 1 - 128 48 l 1 - 128 100.5 l 1 - 72.900390625 114.799804688 32 164.400390625 32 224 c 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" s l e i g h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S l e i g h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" S L E I G H -EndChar - -StartChar: sms -Encoding: 63437 63437 975 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 416 m 0 - 397.400390625 416 512 322.900390625 512 208 c 0 - 512 93.099609375 397.400390625 0 256 0 c 0 - 217.599609375 0 181.299804688 7.099609375 148.599609375 19.400390625 c 1 - 124 -0.2001953125 74.2998046875 -32 8 -32 c 0 - 4.7998046875 -32 2 -30.2001953125 0.7001953125 -27.2001953125 c 0 - -0.599609375 -24.2001953125 0 -20.7998046875 2.2001953125 -18.5 c 0 - 2.7001953125 -18 44.5 26.900390625 57 77.2998046875 c 1 - 21.400390625 113 0 158.400390625 0 208 c 0 - 0 322.900390625 114.599609375 416 256 416 c 0 -128.200195312 144 m 2 - 151.599609375 144 170.700195312 161.299804688 170.599609375 182.599609375 c 0 - 170.599609375 193.200195312 165.799804688 203.5 157.299804688 210.700195312 c 2 - 135.400390625 229.5 l 2 - 134.099609375 230.599609375 133.299804688 232 133.299804688 233.299804688 c 0 - 133.299804688 236.400390625 137.700195312 239.900390625 143.700195312 239.900390625 c 2 - 156 239.900390625 l 2 - 160.400390625 239.900390625 164 243.5 164 247.900390625 c 2 - 164 263.900390625 l 2 - 164 268.299804688 160.400390625 271.900390625 156 271.900390625 c 2 - 143.799804688 271.900390625 l 2 - 120.400390625 271.900390625 101.400390625 254.599609375 101.400390625 233.299804688 c 0 - 101.400390625 222.700195312 106.200195312 212.400390625 114.700195312 205.200195312 c 2 - 136.599609375 186.400390625 l 2 - 137.900390625 185.299804688 138.700195312 183.900390625 138.700195312 182.599609375 c 0 - 138.700195312 179.5 134.299804688 176 128.299804688 176 c 2 - 116 176 l 2 - 111.599609375 176 108 172.400390625 108 168 c 2 - 108 152 l 2 - 108 147.599609375 111.599609375 144 116 144 c 2 - 128.200195312 144 l 2 -320 152 m 2 - 320 256 l 2 - 320 264.799804688 312.799804688 272 304 272 c 2 - 288 272 l 2 - 282 272 276.400390625 268.599609375 273.700195312 263.200195312 c 2 - 256 227.799804688 l 1 - 238.299804688 263.200195312 l 2 - 235.599609375 268.599609375 230.099609375 272 224 272 c 2 - 208 272 l 2 - 199.200195312 272 192 264.799804688 192 256 c 2 - 192 152 l 2 - 192 147.599609375 195.599609375 144 200 144 c 2 - 216 144 l 2 - 220.400390625 144 224 147.599609375 224 152 c 2 - 224 220.200195312 l 1 - 248.900390625 164.400390625 l 2 - 251.799804688 158.5 260.299804688 158.5 263.200195312 164.400390625 c 2 - 288 220.200195312 l 1 - 288 152 l 2 - 288 147.599609375 291.599609375 144 296 144 c 2 - 312 144 l 2 - 316.400390625 144 320 147.599609375 320 152 c 2 -368.299804688 144 m 2 - 391.700195312 144 410.700195312 161.299804688 410.599609375 182.599609375 c 0 - 410.599609375 193.200195312 405.799804688 203.5 397.299804688 210.700195312 c 2 - 375.400390625 229.5 l 2 - 374.099609375 230.599609375 373.299804688 232 373.299804688 233.299804688 c 0 - 373.299804688 236.400390625 377.700195312 239.900390625 383.700195312 239.900390625 c 2 - 396 239.900390625 l 2 - 400.400390625 239.900390625 404 243.5 404 247.900390625 c 2 - 404 263.900390625 l 2 - 404 268.299804688 400.400390625 271.900390625 396 271.900390625 c 2 - 383.799804688 271.900390625 l 2 - 360.400390625 271.900390625 341.400390625 254.599609375 341.400390625 233.299804688 c 0 - 341.400390625 222.700195312 346.200195312 212.400390625 354.700195312 205.200195312 c 2 - 376.599609375 186.400390625 l 2 - 377.900390625 185.299804688 378.700195312 183.900390625 378.700195312 182.599609375 c 0 - 378.700195312 179.5 374.299804688 176 368.299804688 176 c 2 - 356 176 l 2 - 351.599609375 176 348 172.400390625 348 168 c 2 - 348 152 l 2 - 348 147.599609375 351.599609375 144 356 144 c 2 - 368.299804688 144 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" s m s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" S m s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 59" S M S -EndChar - -StartChar: snowboarding -Encoding: 63438 63438 976 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -432 352 m 0 - 405.5 352 384 373.5 384 400 c 0 - 384 426.5 405.5 448 432 448 c 0 - 458.5 448 480 426.5 480 400 c 0 - 480 373.5 458.5 352 432 352 c 0 -460.799804688 198.400390625 m 2 - 377.299804688 261.299804688 l 1 - 311.299804688 230.799804688 l 1 - 363.299804688 191.799804688 l 2 - 378.200195312 180.599609375 385.299804688 161.599609375 381.400390625 143.400390625 c 2 - 359.5 41.400390625 l 2 - 357.299804688 31.2998046875 350.400390625 23.599609375 341.700195312 19.5 c 1 - 432.5 -13.599609375 l 2 - 442.200195312 -17.099609375 452.700195312 -16.7001953125 462 -12.2998046875 c 0 - 474 -6.7001953125 488.299804688 -11.900390625 493.900390625 -23.900390625 c 0 - 499.5 -35.900390625 494.299804688 -50.2001953125 482.299804688 -55.7998046875 c 0 - 470.700195312 -61.2998046875 458.299804688 -64 445.799804688 -64 c 0 - 435.799804688 -64 425.799804688 -62.2001953125 416.099609375 -58.7001953125 c 2 - 51.2998046875 74 l 2 - 29.5 81.900390625 12.2001953125 97.7998046875 2.400390625 118.799804688 c 0 - -3.2001953125 130.799804688 2 145.099609375 14 150.700195312 c 0 - 26 156.299804688 40.2998046875 151.099609375 45.900390625 139.099609375 c 0 - 50.2998046875 129.700195312 58 122.599609375 67.7001953125 119.099609375 c 2 - 106.400390625 105 l 2 - 102.599609375 108.5 99.400390625 112.700195312 97.7001953125 117.900390625 c 0 - 92.099609375 134.700195312 101.099609375 152.799804688 117.900390625 158.400390625 c 2 - 192 183.099609375 l 1 - 192 236.200195312 l 2 - 192 260.599609375 205.599609375 282.5 227.400390625 293.400390625 c 2 - 268.599609375 314 l 1 - 252.200195312 319.5 l 2 - 240.099609375 323.599609375 230.200195312 332.099609375 224.5 343.5 c 2 - 195.400390625 401.599609375 l 2 - 187.5 417.400390625 193.900390625 436.599609375 209.700195312 444.5 c 0 - 225.5 452.400390625 244.700195312 446 252.599609375 430.200195312 c 2 - 278.700195312 378.099609375 l 1 - 342.400390625 356.900390625 l 2 - 358.700195312 351.5 374 343.400390625 387.799804688 333.099609375 c 2 - 499.200195312 249.599609375 l 2 - 513.400390625 239 516.200195312 218.900390625 505.599609375 204.799804688 c 0 - 499.299804688 196.400390625 489.700195312 192 480 192 c 0 - 473.299804688 192 466.599609375 194.099609375 460.799804688 198.400390625 c 2 -316.400390625 146.700195312 m 1 - 255.900390625 192 l 1 - 255.900390625 171.5 l 2 - 255.900390625 150.799804688 242.700195312 132.5 223.099609375 126 c 2 - 138.099609375 97.599609375 l 2 - 135.5 96.7001953125 132.799804688 96.5 130.099609375 96.2998046875 c 2 - 299.5 34.7001953125 l 1 - 296.599609375 40.7998046875 295.200195312 47.599609375 296.700195312 54.7001953125 c 2 - 316.400390625 146.700195312 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" s n o w b o a r d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" S n o w b o a r d i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 33" S N O W B O A R D I N G -EndChar - -StartChar: snowman -Encoding: 63440 63440 977 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -510.900390625 295.700195312 m 2 - 514.099609375 287.599609375 510.099609375 278.5 502 275.400390625 c 2 - 366.799804688 220.200195312 l 2 - 367.200195312 216.099609375 368 212.200195312 368 208 c 0 - 368 198 366.299804688 188.5 363.799804688 179.299804688 c 1 - 384.900390625 157.900390625 399.900390625 130.5 405.400390625 100.299804688 c 0 - 416.900390625 37.099609375 389 -20 342.5 -52.2998046875 c 0 - 331.599609375 -59.900390625 318.599609375 -64 305.299804688 -64 c 2 - 206.099609375 -64 l 2 - 195.099609375 -64 184.099609375 -61.7001953125 174.799804688 -55.7998046875 c 0 - 132.400390625 -28.900390625 104 18 104 72 c 0 - 104 113.799804688 120.900390625 151.599609375 148.299804688 179.099609375 c 1 - 145.799804688 188.400390625 144.099609375 197.900390625 144.099609375 208 c 0 - 144.099609375 212.200195312 144.900390625 216.200195312 145.299804688 220.200195312 c 2 - 10.099609375 275.400390625 l 2 - 1.900390625 278.599609375 -2.099609375 287.700195312 1.2001953125 295.700195312 c 2 - 7.099609375 310.200195312 l 2 - 10.400390625 318.200195312 19.7001953125 322.099609375 27.900390625 318.900390625 c 2 - 56 307.400390625 l 1 - 56 336.400390625 l 2 - 56 345 63.2001953125 352 72 352 c 2 - 88 352 l 2 - 96.7998046875 352 104 345 103.799804688 336.400390625 c 2 - 103.799804688 289.5 l 2 - 103.799804688 289 103.599609375 288.5 103.5 288 c 2 - 159.900390625 265 l 1 - 165.900390625 275 173.200195312 283.900390625 181.900390625 291.599609375 c 1 - 168.400390625 308.200195312 159.900390625 329 159.900390625 352.099609375 c 0 - 159.900390625 405.099609375 202.900390625 448.099609375 255.900390625 448.099609375 c 0 - 308.900390625 448.099609375 351.900390625 405.099609375 351.900390625 352.099609375 c 0 - 351.900390625 329 343.5 308.200195312 329.900390625 291.599609375 c 1 - 338.599609375 283.900390625 346 275 351.900390625 265 c 1 - 408.299804688 288 l 2 - 408.299804688 288.5 408 289 408 289.5 c 2 - 408 336.400390625 l 2 - 408 345 415.200195312 352 424 352 c 2 - 440 352 l 2 - 448.799804688 352 456 345 456 336.400390625 c 2 - 456 307.400390625 l 1 - 484.200195312 318.900390625 l 2 - 492.400390625 322.099609375 501.700195312 318.200195312 505 310.200195312 c 2 - 510.900390625 295.700195312 l 2 -224 352 m 0 - 232.799804688 352 240 359.200195312 240 368 c 0 - 240 376.799804688 232.799804688 384 224 384 c 0 - 215.200195312 384 208 376.799804688 208 368 c 0 - 208 359.200195312 215.200195312 352 224 352 c 0 -256 80 m 0 - 264.799804688 80 272 87.2001953125 272 96 c 0 - 272 104.799804688 264.799804688 112 256 112 c 0 - 247.200195312 112 240 104.799804688 240 96 c 0 - 240 87.2001953125 247.200195312 80 256 80 c 0 -256 144 m 0 - 264.799804688 144 272 151.200195312 272 160 c 0 - 272 168.799804688 264.799804688 176 256 176 c 0 - 247.200195312 176 240 168.799804688 240 160 c 0 - 240 151.200195312 247.200195312 144 256 144 c 0 -256 208 m 0 - 264.799804688 208 272 215.200195312 272 224 c 0 - 272 232.799804688 264.799804688 240 256 240 c 0 - 247.200195312 240 240 232.799804688 240 224 c 0 - 240 215.200195312 247.200195312 208 256 208 c 0 -256 296 m 1 - 256 296 272 319.200195312 272 328 c 0 - 272 336.799804688 264.799804688 344 256 344 c 0 - 247.200195312 344 240 336.799804688 240 328 c 0 - 240 319.200195312 256 296 256 296 c 1 -288 352 m 0 - 296.799804688 352 304 359.200195312 304 368 c 0 - 304 376.799804688 296.799804688 384 288 384 c 0 - 279.200195312 384 272 376.799804688 272 368 c 0 - 272 359.200195312 279.200195312 352 288 352 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" s n o w m a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" S n o w m a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 48" S N O W M A N -EndChar - -StartChar: snowplow -Encoding: 63442 63442 978 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -120 72 m 0 - 133.299804688 72 144 61.2998046875 144 48 c 0 - 144 34.7001953125 133.299804688 24 120 24 c 0 - 106.700195312 24 96 34.7001953125 96 48 c 0 - 96 61.2998046875 106.700195312 72 120 72 c 0 -200 72 m 0 - 213.299804688 72 224 61.2998046875 224 48 c 0 - 224 34.7001953125 213.299804688 24 200 24 c 0 - 186.700195312 24 176 34.7001953125 176 48 c 0 - 176 61.2998046875 186.700195312 72 200 72 c 0 -280 72 m 0 - 293.299804688 72 304 61.2998046875 304 48 c 0 - 304 34.7001953125 293.299804688 24 280 24 c 0 - 266.700195312 24 256 34.7001953125 256 48 c 0 - 256 61.2998046875 266.700195312 72 280 72 c 0 -360 72 m 0 - 373.299804688 72 384 61.2998046875 384 48 c 0 - 384 34.7001953125 373.299804688 24 360 24 c 0 - 346.700195312 24 336 34.7001953125 336 48 c 0 - 336 61.2998046875 346.700195312 72 360 72 c 0 -598.599609375 22.599609375 m 2 - 635.299804688 -14.099609375 l 2 - 641.5 -20.2998046875 641.5 -30.5 635.299804688 -36.7001953125 c 2 - 612.700195312 -59.2998046875 l 2 - 606.5 -65.5 596.299804688 -65.5 590.099609375 -59.2998046875 c 2 - 553.400390625 -22.599609375 l 2 - 526.900390625 3.900390625 512 39.7998046875 512 77.2998046875 c 2 - 512 96 l 1 - 468.799804688 96 l 1 - 475.799804688 81.400390625 480 65.2998046875 480 48 c 0 - 480 -13.900390625 429.900390625 -64 368 -64 c 2 - 112 -64 l 2 - 50.099609375 -64 0 -13.900390625 0 48 c 0 - 0 92.599609375 26.2998046875 130.799804688 64 148.799804688 c 1 - 64 240 l 2 - 64 266.5 85.5 288 112 288 c 2 - 128 288 l 1 - 128 400 l 2 - 128 426.5 149.5 448 176 448 c 2 - 320.299804688 448 l 2 - 339.599609375 448 356.900390625 436.599609375 364.5 418.900390625 c 2 - 442.799804688 236.099609375 l 2 - 446.200195312 228.099609375 448 219.599609375 448 210.900390625 c 2 - 448 160 l 1 - 512 160 l 1 - 512 178.700195312 l 2 - 512 216.200195312 526.900390625 252.099609375 553.400390625 278.599609375 c 2 - 590.099609375 315.299804688 l 2 - 596.299804688 321.5 606.5 321.5 612.700195312 315.299804688 c 2 - 635.299804688 292.700195312 l 2 - 641.5 286.5 641.5 276.299804688 635.299804688 270.099609375 c 2 - 598.599609375 233.400390625 l 2 - 584.099609375 218.900390625 576 199.299804688 576 178.799804688 c 2 - 576 77.2001953125 l 2 - 576 56.7001953125 584.099609375 37.099609375 598.599609375 22.599609375 c 2 -192 384 m 1 - 192 288 l 1 - 256 224 l 1 - 378.400390625 224 l 1 - 309.799804688 384 l 1 - 192 384 l 1 -368 0 m 2 - 394.5 0 416 21.5 416 48 c 0 - 416 74.5 394.5 96 368 96 c 2 - 112 96 l 2 - 85.5 96 64 74.5 64 48 c 0 - 64 21.5 85.5 0 112 0 c 2 - 368 0 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" s n o w p l o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" S n o w p l o w -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" S N O W P L O W -EndChar - -StartChar: tenge -Encoding: 63447 63447 979 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -372 288 m 2 - 378.599609375 288 384 282.599609375 384 276 c 2 - 384 220 l 2 - 384 213.400390625 378.599609375 208 372 208 c 2 - 232 208 l 1 - 232 -20 l 2 - 232 -26.599609375 226.599609375 -32 220 -32 c 2 - 164 -32 l 2 - 157.400390625 -32 152 -26.599609375 152 -20 c 2 - 152 208 l 1 - 12 208 l 2 - 5.400390625 208 0 213.400390625 0 220 c 2 - 0 276 l 2 - 0 282.599609375 5.400390625 288 12 288 c 2 - 372 288 l 2 -372 416 m 2 - 378.599609375 416 384 410.599609375 384 404 c 2 - 384 348 l 2 - 384 341.400390625 378.599609375 336 372 336 c 2 - 12 336 l 2 - 5.400390625 336 0 341.400390625 0 348 c 2 - 0 404 l 2 - 0 410.599609375 5.400390625 416 12 416 c 2 - 372 416 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" t e n g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T e n g e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" T E N G E -EndChar - -StartChar: toilet -Encoding: 63448 63448 980 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -368 400 m 2 - 352 400 l 1 - 352 243.299804688 l 1 - 372.200195312 233.200195312 384 221.099609375 384 208 c 0 - 384 140.799804688 349.400390625 81.7998046875 297.200195312 47.5 c 1 - 318.599609375 -22.7001953125 l 2 - 324.900390625 -43.2001953125 309.5 -64 288 -64 c 2 - 96 -64 l 2 - 74.5 -64 59.099609375 -43.2001953125 65.400390625 -22.7001953125 c 2 - 86.7998046875 47.5 l 1 - 34.599609375 81.7998046875 0 140.799804688 0 208 c 0 - 0 221.099609375 11.7998046875 233.200195312 32 243.299804688 c 1 - 32 400 l 1 - 16 400 l 2 - 7.2001953125 400 0 407.200195312 0 416 c 2 - 0 432 l 2 - 0 440.799804688 7.2001953125 448 16 448 c 2 - 368 448 l 2 - 376.799804688 448 384 440.799804688 384 432 c 2 - 384 416 l 2 - 384 407.200195312 376.799804688 400 368 400 c 2 -80 376 m 2 - 80 360 l 2 - 80 355.599609375 83.599609375 352 88 352 c 2 - 136 352 l 2 - 140.400390625 352 144 355.599609375 144 360 c 2 - 144 376 l 2 - 144 380.400390625 140.400390625 384 136 384 c 2 - 88 384 l 2 - 83.599609375 384 80 380.400390625 80 376 c 2 -192 176 m 0 - 269.099609375 176 331.599609375 190.299804688 331.599609375 208 c 0 - 331.599609375 225.700195312 269.099609375 240 192 240 c 0 - 114.900390625 240 52.400390625 225.700195312 52.400390625 208 c 0 - 52.400390625 190.299804688 114.900390625 176 192 176 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" t o i l e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" T o i l e t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 50" T O I L E T -EndChar - -StartChar: tools -Encoding: 63449 63449 981 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -501.099609375 52.2998046875 m 2 - 515.599609375 37.7998046875 515.599609375 14.2001953125 501.099609375 -0.400390625 c 2 - 448.400390625 -53.099609375 l 2 - 433.900390625 -67.7001953125 410.299804688 -67.7001953125 395.700195312 -53.099609375 c 2 - 278.599609375 64 l 2 - 255.5 87.099609375 251.099609375 121.599609375 264.700195312 149.400390625 c 1 - 158.099609375 256 l 1 - 96 256 l 1 - 0 384 l 1 - 64 448 l 1 - 192 352 l 1 - 192 289.900390625 l 1 - 298.599609375 183.299804688 l 1 - 326.400390625 197 360.900390625 192.5 384 169.400390625 c 2 - 501.099609375 52.2998046875 l 2 -331.700195312 223 m 0 - 323.5 223 315.099609375 222 307 220.099609375 c 1 - 224.900390625 302.200195312 l 1 - 224.200195312 339.700195312 237.599609375 377.299804688 266.099609375 405.799804688 c 0 - 303.099609375 442.799804688 355.299804688 455.400390625 402.700195312 443.700195312 c 0 - 411.799804688 441.400390625 415 430.099609375 408.400390625 423.5 c 2 - 334 349.099609375 l 1 - 345.299804688 281.200195312 l 1 - 413.200195312 269.900390625 l 1 - 487.599609375 344.299804688 l 2 - 494.200195312 350.900390625 505.5 347.799804688 507.700195312 338.799804688 c 0 - 519.5 291.400390625 506.900390625 239.200195312 469.799804688 202.099609375 c 0 - 456.799804688 189.099609375 441.799804688 179.5 426 172.599609375 c 1 - 406.599609375 192 l 2 - 386.599609375 212 360 223 331.700195312 223 c 0 -227.799804688 141 m 1 - 222.900390625 119.900390625 225.200195312 98.2001953125 232.799804688 78.2998046875 c 1 - 109.200195312 -45.2998046875 l 2 - 84.2001953125 -70.2998046875 43.7001953125 -70.2998046875 18.7001953125 -45.2998046875 c 0 - -6.2998046875 -20.2998046875 -6.2998046875 20.2001953125 18.7001953125 45.2001953125 c 2 - 171.099609375 197.700195312 l 1 - 227.799804688 141 l 1 -64 -24 m 0 - 77.2998046875 -24 88 -13.2001953125 88 0 c 0 - 88 13.2998046875 77.2998046875 24 64 24 c 0 - 50.7001953125 24 40 13.2998046875 40 0 c 0 - 40 -13.2001953125 50.7998046875 -24 64 -24 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" t o o l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" T o o l s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" T O O L S -EndChar - -StartChar: tram -Encoding: 63450 63450 982 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 384 m 0 - 270.299804688 384 256 398.299804688 256 416 c 0 - 256 433.700195312 270.299804688 448 288 448 c 0 - 305.700195312 448 320 433.700195312 320 416 c 0 - 320 398.299804688 305.700195312 384 288 384 c 0 -511.5 396.099609375 m 0 - 513.700195312 387.599609375 508.700195312 378.799804688 500.099609375 376.5 c 2 - 272 315.700195312 l 1 - 272 224 l 1 - 448 224 l 2 - 465.700195312 224 480 209.700195312 480 192 c 2 - 480 -32 l 2 - 480 -49.7001953125 465.700195312 -64 448 -64 c 2 - 64 -64 l 2 - 46.2998046875 -64 32 -49.7001953125 32 -32 c 2 - 32 192 l 2 - 32 209.700195312 46.2998046875 224 64 224 c 2 - 240 224 l 1 - 240 307.200195312 l 1 - 20.099609375 248.5 l 2 - 18.7998046875 248.200195312 17.400390625 248 16 248 c 0 - 8.900390625 248 2.5 252.700195312 0.599609375 259.799804688 c 0 - -1.7001953125 268.400390625 3.400390625 277.099609375 11.900390625 279.400390625 c 2 - 491.900390625 407.400390625 l 2 - 500.5 409.700195312 509.200195312 404.700195312 511.5 396.099609375 c 0 -176 64 m 1 - 176 160 l 1 - 80 160 l 1 - 80 64 l 1 - 176 64 l 1 -336 160 m 1 - 336 64 l 1 - 432 64 l 1 - 432 160 l 1 - 336 160 l 1 -304 160 m 1 - 208 160 l 1 - 208 64 l 1 - 304 64 l 1 - 304 160 l 1 -192 352 m 0 - 174.299804688 352 160 366.299804688 160 384 c 0 - 160 401.700195312 174.299804688 416 192 416 c 0 - 209.700195312 416 224 401.700195312 224 384 c 0 - 224 366.299804688 209.700195312 352 192 352 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" t r a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" T r a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 58" T R A M -EndChar - -StartChar: fire-alt -Encoding: 63460 63460 983 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -323.559570312 396.799804688 m 1 - 396.01953125 329.540039062 448 219.669921875 448 166.400390625 c 0 - 448 39.150390625 347.709960938 -64 224 -64 c 0 - 100.290039062 -64 0 39.150390625 0 166.400390625 c 0 - 0 238.040039062 69.740234375 356.830078125 168 448 c 1 - 206.280273438 412.469726562 240.080078125 374.379882812 267.33984375 336.830078125 c 1 - 283.98046875 357.209960938 302.759765625 377.5 323.559570312 396.799804688 c 1 -304.08984375 56.150390625 m 0 - 353.330078125 90.599609375 364.870117188 157.379882812 337.51953125 209.5703125 c 0 - 334.16015625 215.990234375 330.389648438 222.690429688 326.25 229.540039062 c 1 - 267.620117188 162.66015625 l 1 - 267.620117188 162.66015625 175.719726562 280.01953125 168.790039062 288 c 1 - 120.309570312 229.879882812 96 195.860351562 96 157.25 c 0 - 96 79.740234375 154.709960938 32 226.860351562 32 c 0 - 255.719726562 32 282.4296875 40.990234375 304.08984375 56.150390625 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" f i r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" F i r e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" F i r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 46" F I R E hyphen A L T -EndChar - -StartChar: bacon -Encoding: 63461 63461 984 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -218.919921875 111.610351562 m 0 - 184.059570312 76.73046875 159.26953125 67.4501953125 133 57.6103515625 c 0 - 107 47.849609375 80 37.48046875 44.830078125 4.8798828125 c 1 - 9.0703125 40.3896484375 l 2 - -3.6298828125 53 -3 74 10.8603515625 85.4501953125 c 0 - 47.2001953125 115.4296875 77.0703125 126.549804688 101.9296875 135.809570312 c 0 - 111.099609375 139.219726562 170.900390625 155.0703125 200.650390625 233.900390625 c 0 - 209.259765625 256.709960938 247 368.48046875 389.629882812 421.620117188 c 0 - 405.48046875 427.530273438 416.990234375 431.8203125 430.629882812 441.919921875 c 0 - 435.165039062 445.274414062 443.423828125 447.99609375 449.064453125 447.99609375 c 0 - 456.073242188 447.99609375 465.815429688 444.006835938 470.809570312 439.08984375 c 2 - 508.48046875 401.700195312 l 1 - 478.330078125 374.009765625 455.5703125 365.330078125 431.690429688 356.330078125 c 0 - 403.389648438 345.719726562 374.120117188 334.75 334.33984375 294.950195312 c 0 - 294.559570312 255.150390625 283.580078125 225.900390625 272.969726562 197.610351562 c 0 - 263.120117188 171.309570312 253.809570312 146.5 218.919921875 111.610351562 c 0 -566.919921875 343.610351562 m 2 - 579.620117188 331.010742188 579 309.950195312 565.110351562 298.549804688 c 0 - 528.740234375 268.540039062 498.870117188 257.41015625 474 248.139648438 c 0 - 464.799804688 244.700195312 405 228.8203125 375.26953125 150.030273438 c 0 - 366.330078125 126.440429688 328.530273438 15.33984375 186.330078125 -37.66015625 c 0 - 170.48046875 -43.5595703125 158.990234375 -47.83984375 145.389648438 -57.900390625 c 0 - 140.853515625 -61.2568359375 132.592773438 -63.98046875 126.950195312 -63.98046875 c 0 - 119.944335938 -63.98046875 110.204101562 -59.9931640625 105.209960938 -55.080078125 c 2 - 67.5302734375 -17.650390625 l 1 - 97.6396484375 10.01953125 120.389648438 18.6796875 144.25 27.6796875 c 0 - 172.549804688 38.26953125 201.759765625 49.2197265625 241.549804688 89 c 0 - 281.33984375 128.780273438 292.330078125 158 302.969726562 186.330078125 c 0 - 312.780273438 212.639648438 322.080078125 237.490234375 356.969726562 272.330078125 c 0 - 391.860351562 307.169921875 416.66015625 316.48046875 442.919921875 326.330078125 c 0 - 468.990234375 336.120117188 495.98046875 346.490234375 531.169921875 379.120117188 c 1 - 566.919921875 343.610351562 l 2 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" b a c o n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" B A C O N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 53" B a c o n -EndChar - -StartChar: book-medical -Encoding: 63462 63462 985 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 89.599609375 m 2 - 448 80 444.799804688 73.6005859375 438.400390625 70.400390625 c 1 - 435.200195312 57.599609375 435.200195312 12.7998046875 438.400390625 -3.2001953125 c 1 - 444.799804688 -9.599609375 448 -16 448 -22.400390625 c 2 - 448 -38.400390625 l 2 - 448 -54.400390625 435.200195312 -64 422.400390625 -64 c 2 - 96 -64 l 2 - 41.599609375 -64 0 -22.400390625 0 32 c 2 - 0 352 l 2 - 0 406.400390625 41.599609375 448 96 448 c 2 - 422.400390625 448 l 2 - 438.400390625 448 448 438.400390625 448 422.400390625 c 2 - 448 89.599609375 l 2 -144 280 m 2 - 144 232 l 2 - 144 227.583984375 147.583984375 224 152 224 c 2 - 208 224 l 1 - 208 168 l 2 - 208 163.583984375 211.583984375 160 216 160 c 2 - 264 160 l 2 - 268.416015625 160 272 163.583984375 272 168 c 2 - 272 224 l 1 - 328 224 l 2 - 332.416015625 224 336 227.583984375 336 232 c 2 - 336 280 l 2 - 336 284.416015625 332.416015625 288 328 288 c 2 - 272 288 l 1 - 272 344 l 2 - 272 348.416015625 268.416015625 352 264 352 c 2 - 216 352 l 2 - 211.583984375 352 208 348.416015625 208 344 c 2 - 208 288 l 1 - 152 288 l 2 - 147.583984375 288 144 284.416015625 144 280 c 2 -380.799804688 0 m 1 - 380.799804688 64 l 1 - 96 64 l 2 - 80 64 64 51.2001953125 64 32 c 0 - 64 12.7998046875 76.7998046875 0 96 0 c 2 - 380.799804688 0 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" b o o k hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" B o o k hyphen M e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" B o o k hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" B O O K hyphen M E D I C A L -EndChar - -StartChar: bread-slice -Encoding: 63468 63468 986 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 448 m 0 - 468 448 576 354.599609375 576 278.860351562 c 0 - 576 248.559570312 551.759765625 224 512 224 c 1 - 512 -32 l 2 - 512 -49.669921875 495.879882812 -64 476 -64 c 2 - 100 -64 l 2 - 80.1201171875 -64 64 -49.669921875 64 -32 c 2 - 64 224 l 1 - 24.240234375 224 0 248.559570312 0 278.860351562 c 0 - 0 354.599609375 108 448 288 448 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" b r e a d hyphen s l i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" B r e a d hyphen S l i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" B r e a d hyphen s l i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 35" B R E A D hyphen S L I C E -EndChar - -StartChar: cheese -Encoding: 63471 63471 987 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 160 m 1 - 512 160 l 1 - 512 0 l 2 - 512 -17.6640625 497.6640625 -32 480 -32 c 2 - 32 -32 l 2 - 14.3359375 -32 0 -17.6640625 0 0 c 2 - 0 160 l 1 -299.830078125 416 m 0 - 418 409.799804688 512 311.889648438 512 192 c 1 - 0 192 l 1 - 278.700195312 409 l 2 - 283.540039062 412.875 292.5 416.01953125 298.700195312 416.01953125 c 0 - 299.01171875 416.01953125 299.518554688 416.010742188 299.830078125 416 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" c h e e s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" C h e e s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" C H E E S E -EndChar - -StartChar: clinic-medical -Encoding: 63474 63474 988 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -288 333 m 1 - 506.740234375 140.099609375 l 2 - 508.280273438 138.719726562 510.299804688 138.059570312 512 136.900390625 c 2 - 512 -48 l 2 - 512 -56.83203125 504.83203125 -64 496 -64 c 2 - 80 -64 l 2 - 71.16796875 -64 64 -56.83203125 64 -48 c 2 - 64 136.940429688 l 2 - 65.7802734375 138.150390625 67.849609375 138.830078125 69.4697265625 140.290039062 c 2 - 288 333 l 1 -384 72 m 2 - 384 120 l 2 - 384 124.416015625 380.416015625 128 376 128 c 2 - 320 128 l 1 - 320 184 l 2 - 320 188.416015625 316.416015625 192 312 192 c 2 - 264 192 l 2 - 259.583984375 192 256 188.416015625 256 184 c 2 - 256 128 l 1 - 200 128 l 2 - 195.583984375 128 192 124.416015625 192 120 c 2 - 192 72 l 2 - 192 67.583984375 195.583984375 64 200 64 c 2 - 256 64 l 1 - 256 8 l 2 - 256 3.583984375 259.583984375 0 264 0 c 2 - 312 0 l 2 - 316.416015625 0 320 3.583984375 320 8 c 2 - 320 64 l 1 - 376 64 l 2 - 380.416015625 64 384 67.583984375 384 72 c 2 -570.690429688 211.719726562 m 2 - 573.62109375 209.087890625 576.000976562 203.754882812 576.000976562 199.814453125 c 0 - 576.000976562 196.43359375 574.16796875 191.646484375 571.91015625 189.129882812 c 2 - 550.509765625 165.309570312 l 2 - 547.877929688 162.37890625 542.544921875 160 538.60546875 160 c 0 - 535.219726562 160 530.427734375 161.836914062 527.91015625 164.099609375 c 2 - 298.58984375 366.370117188 l 2 - 296.0859375 368.579101562 291.34375 370.372070312 288.004882812 370.372070312 c 0 - 284.666015625 370.372070312 279.923828125 368.579101562 277.419921875 366.370117188 c 2 - 48.099609375 164.08984375 l 2 - 45.58203125 161.827148438 40.7900390625 159.990234375 37.404296875 159.990234375 c 0 - 33.4658203125 159.990234375 28.1318359375 162.369140625 25.5 165.299804688 c 2 - 4.08984375 189.120117188 l 2 - 1.8271484375 191.637695312 -0.009765625 196.4296875 -0.009765625 199.815429688 c 0 - -0.009765625 203.754882812 2.369140625 209.087890625 5.2998046875 211.719726562 c 2 - 261.299804688 437.719726562 l 2 - 267.583007812 443.400390625 279.555664062 448.009765625 288.025390625 448.009765625 c 0 - 296.494140625 448.009765625 308.467773438 443.400390625 314.75 437.719726562 c 2 - 570.690429688 211.719726562 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" c l i n i c hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" C l i n i c hyphen M e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" C l i n i c hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 27" C L I N I C hyphen M E D I C A L -EndChar - -StartChar: comment-medical -Encoding: 63477 63477 989 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 416 m 0 - 397.389648438 416 512 322.879882812 512 208 c 0 - 512 93.1201171875 397.389648438 0 256 0 c 2 - 255.526367188 0 l 2 - 225.044921875 0 177.142578125 8.681640625 148.599609375 19.3798828125 c 1 - 124 -0.25 74.259765625 -32 8 -32 c 0 - 3.5888671875 -31.9951171875 0.009765625 -28.4111328125 0.009765625 -24 c 0 - 0.009765625 -22.2412109375 0.9912109375 -19.77734375 2.2001953125 -18.5 c 0 - 2.7001953125 -18 44.4599609375 26.9501953125 57 77.259765625 c 1 - 21.41015625 113 0 158.440429688 0 208 c 0 - 0 322.879882812 114.620117188 416 256 416 c 0 -352 184 m 2 - 352 232 l 2 - 352 236.416015625 348.416015625 240 344 240 c 2 - 288 240 l 1 - 288 296 l 2 - 288 300.416015625 284.416015625 304 280 304 c 2 - 232 304 l 2 - 227.583984375 304 224 300.416015625 224 296 c 2 - 224 240 l 1 - 168 240 l 2 - 163.583984375 240 160 236.416015625 160 232 c 2 - 160 184 l 2 - 160 179.583984375 163.583984375 176 168 176 c 2 - 224 176 l 1 - 224 120 l 2 - 224 115.583984375 227.583984375 112 232 112 c 2 - 280 112 l 2 - 284.416015625 112 288 115.583984375 288 120 c 2 - 288 176 l 1 - 344 176 l 2 - 348.416015625 176 352 179.583984375 352 184 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" c o m m e n t hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" C o m m e n t hyphen M e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" C o m m e n t hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 25" C O M M E N T hyphen M E D I C A L -EndChar - -StartChar: crutch -Encoding: 63479 63479 990 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -507.309570312 262.290039062 m 2 - 509.873046875 259.70703125 511.953125 254.658203125 511.953125 251.020507812 c 0 - 511.953125 247.354492188 509.845703125 242.278320312 507.25 239.690429688 c 2 - 484.629882812 217.059570312 l 2 - 482.04296875 214.47265625 476.973632812 212.372070312 473.315429688 212.372070312 c 0 - 469.65625 212.372070312 464.586914062 214.47265625 462 217.059570312 c 2 - 281 398.059570312 l 2 - 278.412109375 400.646484375 276.3125 405.715820312 276.3125 409.375 c 0 - 276.3125 413.034179688 278.412109375 418.103515625 281 420.690429688 c 2 - 303.690429688 443.290039062 l 2 - 306.276367188 445.875 311.34375 447.97265625 315 447.97265625 c 0 - 318.65625 447.97265625 323.723632812 445.875 326.309570312 443.290039062 c 2 - 507.309570312 262.290039062 l 2 -327.76953125 195.879882812 m 1 - 382.870117188 251 l 1 - 428.120117188 205.73046875 l 1 - 318.440429688 96.0498046875 l 2 - 307.696289062 85.3017578125 286.958984375 73.810546875 272.150390625 70.400390625 c 2 - 151.900390625 42.650390625 l 1 - 49.900390625 -59.349609375 l 2 - 47.3134765625 -61.9375 42.244140625 -64.037109375 38.5849609375 -64.037109375 c 0 - 34.92578125 -64.037109375 29.857421875 -61.9375 27.26953125 -59.349609375 c 2 - 4.650390625 -36.73046875 l 2 - 2.0625 -34.142578125 -0.037109375 -29.07421875 -0.037109375 -25.4150390625 c 0 - -0.037109375 -21.755859375 2.0625 -16.6865234375 4.650390625 -14.099609375 c 2 - 106.650390625 87.900390625 l 1 - 134.389648438 208.16015625 l 2 - 137.814453125 222.965820312 149.314453125 243.704101562 160.059570312 254.450195312 c 2 - 269.73046875 364.120117188 l 1 - 314.98046875 318.870117188 l 1 - 259.879882812 263.76953125 l 1 - 327.76953125 195.879882812 l 1 -273.200195312 141.309570312 m 2 - 282.509765625 150.620117188 l 1 - 214.620117188 218.509765625 l 1 - 205.309570312 209.200195312 l 2 - 201.732421875 205.609375 197.897460938 198.6875 196.75 193.75 c 2 - 178.450195312 114.450195312 l 1 - 257.75 132.76953125 l 2 - 262.690429688 133.903320312 269.612304688 137.729492188 273.200195312 141.309570312 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" c r u t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C r u t c h -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 51" C R U T C H -EndChar - -StartChar: egg -Encoding: 63483 63483 991 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -192 448 m 0 - 298 448 384 234 384 128 c 0 - 384 22 298 -64 192 -64 c 0 - 86 -64 0 22 0 128 c 0 - 0 234 86 448 192 448 c 0 -EndSplineSet -Validated: 1 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" e g g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" E g g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 61" E G G -EndChar - -StartChar: hamburger -Encoding: 63493 63493 992 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -464 192 m 2 - 490.49609375 192 512 170.49609375 512 144 c 0 - 512 117.50390625 490.49609375 96 464 96 c 2 - 48 96 l 2 - 21.50390625 96 0 117.50390625 0 144 c 0 - 0 170.49609375 21.50390625 192 48 192 c 2 - 464 192 l 2 -480 64 m 2 - 488.83203125 64 496 56.83203125 496 48 c 2 - 496 32 l 2 - 496 -3.328125 467.328125 -32 432 -32 c 2 - 80 -32 l 2 - 44.671875 -32 16 -3.328125 16 32 c 2 - 16 48 l 2 - 16 56.83203125 23.16796875 64 32 64 c 2 - 480 64 l 2 -58.6396484375 224 m 2 - 24.0703125 224 4 267.91015625 23.8203125 299.889648438 c 0 - 64 364.799804688 152.459960938 415.900390625 256 416 c 0 - 359.549804688 415.900390625 448 364.799804688 488.1796875 299.879882812 c 0 - 507.98046875 267.900390625 487.9296875 224 453.360351562 224 c 2 - 58.6396484375 224 l 2 -384 336 m 0 - 375.16796875 336 368 328.83203125 368 320 c 0 - 368 311.16796875 375.16796875 304 384 304 c 0 - 392.83203125 304 400 311.16796875 400 320 c 0 - 400 328.83203125 392.83203125 336 384 336 c 0 -256 368 m 0 - 247.16796875 368 240 360.83203125 240 352 c 0 - 240 343.16796875 247.16796875 336 256 336 c 0 - 264.83203125 336 272 343.16796875 272 352 c 0 - 272 360.83203125 264.83203125 368 256 368 c 0 -128 336 m 0 - 119.16796875 336 112 328.83203125 112 320 c 0 - 112 311.16796875 119.16796875 304 128 304 c 0 - 136.83203125 304 144 311.16796875 144 320 c 0 - 144 328.83203125 136.83203125 336 128 336 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" h a m b u r g e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" H a m b u r g e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" H A M B U R G E R -EndChar - -StartChar: hand-middle-finger -Encoding: 63494 63494 993 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -479.9296875 130.879882812 m 2 - 480 48 l 1 - 480 48 l 1 - 480 -13.796875 429.846679688 -63.97265625 368.049804688 -64 c 2 - 153.049804688 -64 l 2 - 127.442382812 -63.9970703125 91.9658203125 -49.298828125 73.8603515625 -31.1904296875 c 2 - 42.9296875 -0.259765625 l 2 - 36.896484375 5.7724609375 32 17.5927734375 32 26.1240234375 c 2 - 32 26.1298828125 l 1 - 32 99.599609375 l 1 - 32 99.6025390625 l 2 - 32 112.340820312 41.2470703125 127.302734375 52.6396484375 133 c 2 - 80 148 l 1 - 80 72 l 2 - 80 67.583984375 83.583984375 64 88 64 c 0 - 92.416015625 64 96 67.583984375 96 72 c 2 - 96 219.040039062 l 2 - 96 234.299804688 108.870117188 247.419921875 126.870117188 250.419921875 c 2 - 157.549804688 255.540039062 l 2 - 175.370117188 258.509765625 192 247.150390625 192 232 c 2 - 192 200 l 2 - 192 195.583984375 195.583984375 192 200 192 c 0 - 204.416015625 192 208 195.583984375 208 200 c 2 - 208 400 l 1 - 208 400.022460938 l 2 - 208 426.518554688 229.50390625 448.022460938 256 448.022460938 c 0 - 256.408203125 448.022460938 257.071289062 448.012695312 257.48046875 448 c 0 - 283.75 447.200195312 304 424.280273438 304 398 c 2 - 304 200 l 2 - 304 195.583984375 307.583984375 192 312 192 c 0 - 316.416015625 192 320 195.583984375 320 200 c 2 - 320 232 l 2 - 320 247.139648438 336.629882812 258.5 354.450195312 255.530273438 c 2 - 392.849609375 249.129882812 l 2 - 406.309570312 246.879882812 416 237.030273438 416 225.58984375 c 2 - 416 176 l 1 - 451.650390625 167.0703125 l 2 - 467.249023438 163.171875 479.918945312 146.958984375 479.9296875 130.879882812 c 2 -EndSplineSet -Validated: 524837 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" h a n d hyphen m i d d l e hyphen f i n g e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" H a n d hyphen M i d d l e hyphen F i n g e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" H a n d hyphen m i d d l e hyphen f i n g e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 14" H A N D hyphen M I D D L E hyphen F I N G E R -EndChar - -StartChar: hard-hat -Encoding: 63495 63495 994 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -480 160 m 2 - 480 96 l 1 - 32 96 l 1 - 32 160 l 2 - 32 240.25 81.2802734375 308.919921875 151.190429688 337.620117188 c 1 - 192 256 l 1 - 192 368 l 2 - 192 376.83203125 199.16796875 384 208 384 c 2 - 304 384 l 2 - 312.83203125 384 320 376.83203125 320 368 c 2 - 320 256 l 1 - 360.809570312 337.620117188 l 1 - 430.719726562 308.919921875 480 240.25 480 160 c 2 -496 64 m 2 - 504.83203125 64 512 56.83203125 512 48 c 2 - 512 16 l 2 - 512 7.16796875 504.83203125 0 496 0 c 2 - 16 0 l 2 - 7.16796875 0 0 7.16796875 0 16 c 2 - 0 48 l 2 - 0 56.83203125 7.16796875 64 16 64 c 2 - 496 64 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" h a r d hyphen h a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" H a r d hyphen H a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" H a r d hyphen h a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 45" H A R D hyphen H A T -EndChar - -StartChar: hotdog -Encoding: 63503 63503 995 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -488.559570312 424.559570312 m 0 - 501.489257812 411.626953125 511.983398438 386.288085938 511.983398438 368 c 0 - 511.983398438 349.711914062 501.489257812 324.373046875 488.559570312 311.440429688 c 2 - 136.559570312 -40.5595703125 l 2 - 123.5390625 -54.0419921875 97.759765625 -64.9833984375 79.0166015625 -64.9833984375 c 0 - 34.857421875 -64.9833984375 -0.9833984375 -29.142578125 -0.9833984375 15.0166015625 c 0 - -0.9833984375 33.759765625 9.9580078125 59.5390625 23.4404296875 72.5595703125 c 2 - 375.440429688 424.559570312 l 2 - 388.373046875 437.489257812 413.711914062 447.983398438 432 447.983398438 c 0 - 450.288085938 447.983398438 475.626953125 437.489257812 488.559570312 424.559570312 c 0 -438.629882812 329.370117188 m 0 - 441.216796875 331.95703125 443.31640625 337.026367188 443.31640625 340.684570312 c 0 - 443.31640625 349.517578125 436.1484375 356.686523438 427.315429688 356.686523438 c 0 - 423.65625 356.686523438 418.586914062 354.586914062 416 352 c 0 - 403.58984375 339.58984375 394.240234375 338 381.290039062 335.76953125 c 0 - 366.889648438 333.299804688 348.969726562 330.209960938 329.370117188 310.620117188 c 0 - 309.76953125 291.030273438 306.700195312 273.099609375 304.23046875 258.700195312 c 0 - 301.990234375 245.75 300.389648438 236.389648438 287.990234375 223.990234375 c 0 - 275.58984375 211.58984375 266.290039062 209.98046875 253.290039062 207.759765625 c 0 - 238.889648438 205.290039062 220.969726562 202.209960938 201.370117188 182.620117188 c 0 - 181.76953125 163.030273438 178.700195312 145.099609375 176.219726562 130.700195312 c 0 - 174 117.75 172.41015625 108.41015625 160 96 c 0 - 147.58984375 83.58984375 138.290039062 81.990234375 125.290039062 79.76953125 c 0 - 110.889648438 77.2998046875 92.9697265625 74.2197265625 73.3701171875 54.6298828125 c 0 - 70.783203125 52.04296875 68.68359375 46.9736328125 68.68359375 43.3154296875 c 0 - 68.68359375 34.482421875 75.8515625 27.3134765625 84.6845703125 27.3134765625 c 0 - 88.34375 27.3134765625 93.4130859375 29.4130859375 96 32 c 0 - 108.400390625 44.400390625 117.759765625 46 130.700195312 48.23046875 c 0 - 145.099609375 50.7001953125 163.030273438 53.7900390625 182.629882812 73.3798828125 c 0 - 202.23046875 92.9697265625 205.299804688 110.900390625 207.76953125 125.299804688 c 0 - 210 138.25 211.599609375 147.599609375 224 160 c 0 - 236.400390625 172.400390625 245.75 174 258.700195312 176.219726562 c 0 - 273.099609375 178.700195312 291.01953125 181.780273438 310.620117188 201.370117188 c 0 - 330.219726562 220.959960938 333.290039062 238.889648438 335.76953125 253.290039062 c 0 - 338 266.240234375 339.599609375 275.599609375 352 288 c 0 - 364.400390625 300.400390625 373.759765625 302 386.700195312 304.23046875 c 0 - 401.110351562 306.700195312 419.030273438 309.780273438 438.629882812 329.370117188 c 0 -31.4404296875 125.8203125 m 1 - 19.8896484375 137.370117188 l 2 - -5.099609375 162.360351562 -6.76953125 201.209960938 16.169921875 224.150390625 c 2 - 223.849609375 431.830078125 l 2 - 246.790039062 454.76953125 285.639648438 453.110351562 310.639648438 428.110351562 c 2 - 322.1796875 416.559570312 l 1 - 31.4404296875 125.8203125 l 1 -480.559570312 258.1796875 m 1 - 492.110351562 246.639648438 l 2 - 517.099609375 221.639648438 518.76953125 182.790039062 495.830078125 159.849609375 c 2 - 288.150390625 -47.830078125 l 2 - 265.209960938 -70.76953125 226.360351562 -69.1103515625 201.360351562 -44.1103515625 c 2 - 189.8203125 -32.5595703125 l 1 - 480.559570312 258.1796875 l 1 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" h o t d o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" H o t d o g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" H O T D O G -EndChar - -StartChar: ice-cream -Encoding: 63504 63504 996 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -368 288 m 2 - 394.49609375 288 416 266.49609375 416 240 c 0 - 416 213.50390625 394.49609375 192 368 192 c 2 - 80 192 l 2 - 53.50390625 192 32 213.50390625 32 240 c 0 - 32 266.49609375 53.50390625 288 80 288 c 2 - 80.9404296875 288 l 1 - 80.4208984375 292.518554688 80 299.877929688 80 304.426757812 c 0 - 80 383.915039062 144.51171875 448.426757812 224 448.426757812 c 0 - 303.48828125 448.426757812 368 383.915039062 368 304.426757812 c 0 - 368 299.877929688 367.579101562 292.518554688 367.059570312 288 c 1 - 368 288 l 2 -195.379882812 -45.6904296875 m 2 - 96 160 l 1 - 352 160 l 1 - 252.620117188 -45.6904296875 l 2 - 247.955078125 -55.798828125 235.133789062 -64.00390625 224 -64.00390625 c 0 - 212.866210938 -64.00390625 200.044921875 -55.798828125 195.379882812 -45.6904296875 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" i c e hyphen c r e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" I c e hyphen C r e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" I c e hyphen c r e a m -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" I C E hyphen C R E A M -EndChar - -StartChar: laptop-medical -Encoding: 63506 63506 997 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -232 224 m 2 - 227.583984375 224 224 227.583984375 224 232 c 2 - 224 280 l 2 - 224 284.416015625 227.583984375 288 232 288 c 2 - 288 288 l 1 - 288 344 l 2 - 288 348.416015625 291.583984375 352 296 352 c 2 - 344 352 l 2 - 348.416015625 352 352 348.416015625 352 344 c 2 - 352 288 l 1 - 408 288 l 2 - 412.416015625 288 416 284.416015625 416 280 c 2 - 416 232 l 2 - 416 227.583984375 412.416015625 224 408 224 c 2 - 352 224 l 1 - 352 168 l 2 - 352 163.583984375 348.416015625 160 344 160 c 2 - 296 160 l 2 - 291.583984375 160 288 163.583984375 288 168 c 2 - 288 224 l 1 - 232 224 l 2 -576 400 m 2 - 576 64 l 1 - 64 64 l 1 - 64 400 l 2 - 64.0771484375 426.418945312 85.5810546875 447.922851562 112 448 c 2 - 528 448 l 2 - 554.418945312 447.922851562 575.922851562 426.418945312 576 400 c 2 -512 128 m 1 - 512 384 l 1 - 128 384 l 1 - 128 128 l 1 - 512 128 l 1 -624 32 m 2 - 632.83203125 32 640 24.83203125 640 16 c 2 - 640 0 l 2 - 639.895507812 -35.2236328125 611.223632812 -63.8955078125 576 -64 c 2 - 64 -64 l 2 - 28.7763671875 -63.8955078125 0.1044921875 -35.2236328125 0 0 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 255.23046875 32 l 1 - 255 17.4697265625 269.309570312 0 288 0 c 2 - 348.799804688 0 l 2 - 366.830078125 0 380.799804688 12.1904296875 381.540039062 32 c 1 - 624 32 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" l a p t o p hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" L a p t o p hyphen M e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" L a p t o p hyphen m e d i c a l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 26" L A P T O P hyphen M E D I C A L -EndChar - -StartChar: pager -Encoding: 63509 63509 998 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -448 384 m 2 - 483.328125 384 512 355.328125 512 320 c 2 - 512 64 l 2 - 512 28.671875 483.328125 0 448 0 c 2 - 64 0 l 2 - 28.671875 0 0 28.671875 0 64 c 2 - 0 320 l 2 - 0 355.328125 28.671875 384 64 384 c 2 - 448 384 l 2 -160 80 m 1 - 160 128 l 1 - 80 128 l 2 - 71.16796875 128 64 120.83203125 64 112 c 2 - 64 96 l 2 - 64 87.16796875 71.16796875 80 80 80 c 2 - 160 80 l 1 -288 96 m 2 - 288 112 l 2 - 288 120.83203125 280.83203125 128 272 128 c 2 - 192 128 l 1 - 192 80 l 1 - 272 80 l 2 - 280.83203125 80 288 87.16796875 288 96 c 2 -448 224 m 2 - 448 288 l 2 - 448 305.6640625 433.6640625 320 416 320 c 2 - 96 320 l 2 - 78.3359375 320 64 305.6640625 64 288 c 2 - 64 224 l 2 - 64 206.3359375 78.3359375 192 96 192 c 2 - 416 192 l 2 - 433.6640625 192 448 206.3359375 448 224 c 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" p a g e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" P a g e r -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" P A G E R -EndChar - -StartChar: pepper-hot -Encoding: 63510 63510 999 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -330.669921875 184.879882812 m 1 - 438.129882812 184.879882812 l 1 - 475.1796875 146.33984375 l 1 - 426.650390625 58.8701171875 268.639648438 -64 56 -64 c 0 - 25.087890625 -64 0 -38.912109375 0 -8 c 0 - 0 22.912109375 25.087890625 48 56 48 c 0 - 197.580078125 48 219.440429688 229.240234375 277.919921875 298.8203125 c 1 - 330.669921875 274.599609375 l 1 - 330.669921875 184.879882812 l 1 -461.759765625 313.25 m 1 - 489.4921875 287.963867188 512 236.982421875 512 199.452148438 c 2 - 512 199.309570312 l 2 - 512 185.629882812 509.700195312 172.620117188 506.440429688 160 c 1 - 451.759765625 216.879882812 l 1 - 362.669921875 216.879882812 l 1 - 362.669921875 295.120117188 l 1 - 288 329.41015625 l 1 - 310.33984375 343.459960938 336.33984375 352 364.33984375 352 c 0 - 380.805664062 351.993164062 406.413085938 346.634765625 421.5 340.040039062 c 1 - 439.950195312 377.259765625 429.759765625 402 422.900390625 412.360351562 c 0 - 422.11328125 413.500976562 421.474609375 415.55078125 421.474609375 416.936523438 c 0 - 421.474609375 418.758789062 422.51171875 421.291015625 423.790039062 422.58984375 c 2 - 446.690429688 445.58984375 l 2 - 447.987304688 446.908203125 450.541992188 447.978515625 452.391601562 447.978515625 c 0 - 454.50390625 447.978515625 457.293945312 446.64453125 458.620117188 445 c 0 - 477.1796875 421.51953125 493.919921875 373.08984375 461.759765625 313.25 c 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" p e p p e r hyphen h o t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" P e p p e r hyphen H o t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" P e p p e r hyphen h o t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" P E P P E R hyphen H O T -EndChar - -StartChar: pizza-slice -Encoding: 63512 63512 1000 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -158.870117188 447.849609375 m 0 - 340.780273438 430.6796875 490.889648438 282.919921875 511.76953125 102.139648438 c 0 - 513.639648438 85.919921875 503.870117188 70.599609375 488.150390625 66.240234375 c 2 - 431.209960938 50.4599609375 l 1 - 423.26953125 236.849609375 296.349609375 361.969726562 108.73046875 367.459960938 c 1 - 123.540039062 423.73046875 l 2 - 127.669921875 439.4296875 142.709960938 449.370117188 158.870117188 447.849609375 c 0 -100.400390625 335.849609375 m 1 - 276.469726562 333.889648438 395.280273438 216.599609375 399.549804688 41.7099609375 c 1 - 20.5498046875 -63.3896484375 l 2 - 19.37890625 -63.7138671875 17.44140625 -63.9775390625 16.2255859375 -63.9775390625 c 0 - 7.27734375 -63.9775390625 0.015625 -56.7158203125 0.015625 -47.767578125 c 0 - 0.015625 -46.609375 0.2548828125 -44.759765625 0.5498046875 -43.6396484375 c 2 - 100.400390625 335.849609375 l 1 -128 32 m 0 - 145.6640625 32 160 46.3359375 160 64 c 0 - 160 81.6640625 145.6640625 96 128 96 c 0 - 110.3359375 96 96 81.6640625 96 64 c 0 - 96 46.3359375 110.3359375 32 128 32 c 0 -176 184 m 0 - 193.6640625 184 208 198.3359375 208 216 c 0 - 208 233.6640625 193.6640625 248 176 248 c 0 - 158.3359375 248 144 233.6640625 144 216 c 0 - 144 198.3359375 158.3359375 184 176 184 c 0 -280 80 m 0 - 297.6640625 80 312 94.3359375 312 112 c 0 - 312 129.6640625 297.6640625 144 280 144 c 0 - 262.3359375 144 248 129.6640625 248 112 c 0 - 248 94.3359375 262.3359375 80 280 80 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" p i z z a hyphen s l i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" P i z z a hyphen S l i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" P i z z a hyphen s l i c e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 36" P I Z Z A hyphen S L I C E -EndChar - -StartChar: trash-restore -Encoding: 63529 63529 1001 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -53.2001953125 -19 m 2 - 32 320 l 1 - 416 320 l 1 - 394.799804688 -19 l 2 - 393.245117188 -43.8369140625 371.78515625 -63.9970703125 346.900390625 -64 c 2 - 101.099609375 -64 l 2 - 76.21484375 -63.9970703125 54.7548828125 -43.8369140625 53.2001953125 -19 c 2 -123.309570312 156.799804688 m 2 - 113.23046875 146.1796875 120.370117188 128 134.629882812 128 c 2 - 192 128 l 1 - 192 16 l 2 - 192 7.16796875 199.16796875 0 208 0 c 2 - 240 0 l 2 - 248.83203125 0 256 7.16796875 256 16 c 2 - 256 128 l 1 - 313.370117188 128 l 2 - 327.629882812 128 334.76953125 146.1796875 324.690429688 156.799804688 c 2 - 235.309570312 251.059570312 l 2 - 232.78515625 253.7890625 227.717773438 256.002929688 224 256.002929688 c 0 - 220.282226562 256.002929688 215.21484375 253.7890625 212.690429688 251.059570312 c 2 - 123.309570312 156.799804688 l 2 -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 16 352 l 2 - 7.16796875 352 0 359.16796875 0 368 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 136 416 l 1 - 145.400390625 434.700195312 l 2 - 148.990234375 442.041992188 158.536132812 448 166.708984375 448 c 2 - 166.799804688 448 l 1 - 281.099609375 448 l 1 - 281.1171875 448 l 2 - 289.319335938 448 298.943359375 442.041992188 302.599609375 434.700195312 c 2 - 312 416 l 1 - 432 416 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" t r a s h hyphen r e s t o r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" T r a s h hyphen R e s t o r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" T r a s h hyphen r e s t o r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" T R A S H hyphen R E S T O R E -EndChar - -StartChar: trash-restore-alt -Encoding: 63530 63530 1002 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -32 -16 m 2 - 32 320 l 1 - 416 320 l 1 - 416 -16 l 2 - 416 -42.49609375 394.49609375 -64 368 -64 c 2 - 80 -64 l 2 - 53.50390625 -64 32 -42.49609375 32 -16 c 2 -123.309570312 156.799804688 m 2 - 113.23046875 146.1796875 120.370117188 128 134.629882812 128 c 2 - 192 128 l 1 - 192 16 l 2 - 192 7.16796875 199.16796875 0 208 0 c 2 - 240 0 l 2 - 248.83203125 0 256 7.16796875 256 16 c 2 - 256 128 l 1 - 313.370117188 128 l 2 - 327.629882812 128 334.76953125 146.1796875 324.690429688 156.799804688 c 2 - 235.309570312 251.059570312 l 2 - 232.78515625 253.7890625 227.717773438 256.002929688 224 256.002929688 c 0 - 220.282226562 256.002929688 215.21484375 253.7890625 212.690429688 251.059570312 c 2 - 123.309570312 156.799804688 l 2 -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 16 352 l 2 - 7.16796875 352 0 359.16796875 0 368 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 136 416 l 1 - 145.400390625 434.700195312 l 2 - 148.990234375 442.041992188 158.536132812 448 166.708984375 448 c 2 - 166.799804688 448 l 1 - 281.099609375 448 l 1 - 281.1171875 448 l 2 - 289.319335938 448 298.943359375 442.041992188 302.599609375 434.700195312 c 2 - 312 416 l 1 - 432 416 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" t r a s h hyphen r e s t o r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" T r a s h hyphen R e s t o r e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" T r a s h hyphen r e s t o r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 17" T R A S H hyphen R E S T O R E hyphen A L T -EndChar - -StartChar: user-nurse -Encoding: 63535 63535 1003 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -57.7802734375 160 m 2 - 48.9580078125 160.009765625 41.798828125 167.177734375 41.798828125 176 c 0 - 41.798828125 178.092773438 42.560546875 181.309570312 43.5 183.1796875 c 0 - 58.73046875 213 74.7802734375 245.41015625 85.669921875 278.719726562 c 0 - 93.25 301.91015625 96 326.41015625 96 350.799804688 c 2 - 96 400 l 1 - 224 448 l 1 - 352 400 l 1 - 352 350.799804688 l 2 - 352 326.41015625 354.780273438 301.91015625 362.349609375 278.719726562 c 0 - 373.219726562 245.41015625 389.26953125 213.030273438 404.5 183.1796875 c 0 - 405.439453125 181.309570312 406.201171875 178.092773438 406.201171875 176 c 0 - 406.201171875 167.177734375 399.041992188 160.009765625 390.219726562 160 c 2 - 307.860351562 160 l 1 - 285.349609375 140.3203125 256.240234375 128 224 128 c 0 - 191.759765625 128 162.650390625 140.3203125 140.139648438 160 c 1 - 57.7802734375 160 l 2 -184 376.330078125 m 2 - 184 359.669921875 l 2 - 184 356.91015625 186.240234375 354.669921875 189 354.669921875 c 2 - 210.669921875 354.669921875 l 1 - 210.669921875 333 l 2 - 210.669921875 330.240234375 212.91015625 328 215.669921875 328 c 2 - 232.330078125 328 l 2 - 235.08984375 328 237.330078125 330.240234375 237.330078125 333 c 2 - 237.330078125 354.669921875 l 1 - 259 354.669921875 l 2 - 261.759765625 354.669921875 264 356.91015625 264 359.669921875 c 2 - 264 376.330078125 l 2 - 264 379.08984375 261.759765625 381.330078125 259 381.330078125 c 2 - 237.330078125 381.330078125 l 1 - 237.330078125 403 l 2 - 237.330078125 405.759765625 235.08984375 408 232.330078125 408 c 2 - 215.669921875 408 l 2 - 212.91015625 408 210.669921875 405.759765625 210.669921875 403 c 2 - 210.669921875 381.330078125 l 1 - 189 381.330078125 l 2 - 186.240234375 381.330078125 184 379.08984375 184 376.330078125 c 2 -144 288 m 1 - 144 256 l 2 - 144 211.83984375 179.83984375 176 224 176 c 0 - 268.16015625 176 304 211.83984375 304 256 c 2 - 304 288 l 1 - 144 288 l 1 -319.41015625 128 m 1 - 390.900390625 124.900390625 448 66.400390625 448 -5.7900390625 c 0 - 448 -37.921875 421.921875 -64 389.790039062 -64 c 1 - 389.790039062 -64 l 1 - 58.2099609375 -64 l 2 - 26.078125 -64 0 -37.921875 0 -5.7900390625 c 0 - 0 66.400390625 57.099609375 124.900390625 128.58984375 128 c 1 - 224 32.6103515625 l 1 - 319.41015625 128 l 1 -EndSplineSet -Validated: 524805 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" u s e r hyphen n u r s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" U s e r hyphen N u r s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" U s e r hyphen n u r s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 40" U S E R hyphen N U R S E -EndChar - -StartChar: wave-square -Encoding: 63550 63550 1004 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -476 -32 m 2 - 324 -32 l 2 - 304.127929688 -32 288 -15.8720703125 288 4 c 2 - 288 352 l 1 - 192 352 l 1 - 192 196 l 2 - 192 176.127929688 175.872070312 160 156 160 c 2 - 16 160 l 2 - 7.16796875 160 0 167.16796875 0 176 c 2 - 0 208 l 2 - 0 216.83203125 7.16796875 224 16 224 c 2 - 128 224 l 1 - 128 380 l 2 - 128 399.872070312 144.127929688 416 164 416 c 2 - 316 416 l 2 - 335.872070312 416 352 399.872070312 352 380 c 2 - 352 32 l 1 - 448 32 l 1 - 448 188 l 2 - 448 207.872070312 464.127929688 224 484 224 c 2 - 624 224 l 2 - 632.83203125 224 640 216.83203125 640 208 c 2 - 640 176 l 2 - 640 167.16796875 632.83203125 160 624 160 c 2 - 512 160 l 1 - 512 4 l 2 - 512 -15.8720703125 495.872070312 -32 476 -32 c 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" w a v e hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" W a v e hyphen S q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" W a v e hyphen s q u a r e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" W A V E hyphen S Q U A R E -EndChar - -StartChar: biking -Encoding: 63562 63562 1005 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 352 m 0 - 373.50390625 352 352 373.50390625 352 400 c 0 - 352 426.49609375 373.50390625 448 400 448 c 0 - 426.49609375 448 448 426.49609375 448 400 c 0 - 448 373.50390625 426.49609375 352 400 352 c 0 -396 231 m 2 - 354.639648438 264.110351562 l 1 - 296.389648438 214.190429688 l 1 - 337.75 186.620117188 l 2 - 345.614257812 181.376953125 351.998046875 169.451171875 352 160 c 2 - 352 32 l 2 - 352 14.3359375 337.6640625 0 320 0 c 0 - 302.3359375 0 288 14.3359375 288 32 c 2 - 288 142.879882812 l 1 - 206.26953125 197.400390625 l 2 - 198.403320312 202.643554688 192.018554688 214.572265625 192.018554688 224.026367188 c 0 - 192.018554688 232.149414062 197.0234375 243.033203125 203.190429688 248.3203125 c 2 - 315.190429688 344.3203125 l 2 - 320.145507812 348.578125 329.470703125 352.033203125 336.00390625 352.033203125 c 0 - 342.206054688 352.033203125 351.1640625 348.8828125 356 345 c 2 - 427.219726562 288 l 1 - 480 288 l 2 - 497.6640625 288 512 273.6640625 512 256 c 0 - 512 238.3359375 497.6640625 224 480 224 c 2 - 416 224 l 1 - 415.940429688 224 l 2 - 409.7578125 224 400.825195312 227.135742188 396 231 c 2 -512 192 m 0 - 582.65625 192 640 134.65625 640 64 c 0 - 640 -6.65625 582.65625 -64 512 -64 c 0 - 441.34375 -64 384 -6.65625 384 64 c 0 - 384 134.65625 441.34375 192 512 192 c 0 -512 0 m 0 - 547.328125 0 576 28.671875 576 64 c 0 - 576 99.328125 547.328125 128 512 128 c 0 - 476.671875 128 448 99.328125 448 64 c 0 - 448 28.671875 476.671875 0 512 0 c 0 -128 192 m 0 - 198.65625 192 256 134.65625 256 64 c 0 - 256 -6.65625 198.65625 -64 128 -64 c 0 - 57.34375 -64 0 -6.65625 0 64 c 0 - 0 134.65625 57.34375 192 128 192 c 0 -128 0 m 0 - 163.328125 0 192 28.671875 192 64 c 0 - 192 99.328125 163.328125 128 128 128 c 0 - 92.671875 128 64 99.328125 64 64 c 0 - 64 28.671875 92.671875 0 128 0 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" b i k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" B i k i n g -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 52" B I K I N G -EndChar - -StartChar: border-all -Encoding: 63564 63564 1006 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -416 416 m 2 - 433.6640625 416 448 401.6640625 448 384 c 2 - 448 0 l 2 - 448 -17.6640625 433.6640625 -32 416 -32 c 2 - 32 -32 l 2 - 14.3359375 -32 0 -17.6640625 0 0 c 2 - 0 384 l 2 - 0 401.6640625 14.3359375 416 32 416 c 2 - 416 416 l 2 -384 352 m 1 - 256 352 l 1 - 256 224 l 1 - 384 224 l 1 - 384 352 l 1 -192 352 m 1 - 64 352 l 1 - 64 224 l 1 - 192 224 l 1 - 192 352 l 1 -64 32 m 1 - 192 32 l 1 - 192 160 l 1 - 64 160 l 1 - 64 32 l 1 -256 32 m 1 - 384 32 l 1 - 384 160 l 1 - 256 160 l 1 - 256 32 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" b o r d e r hyphen a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" B o r d e r hyphen A l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" B o r d e r hyphen a l l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" B O R D E R hyphen A L L -EndChar - -StartChar: border-none -Encoding: 63568 63568 1007 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -240 224 m 2 - 248.83203125 224 256 216.83203125 256 208 c 2 - 256 176 l 2 - 256 167.16796875 248.83203125 160 240 160 c 2 - 208 160 l 2 - 199.16796875 160 192 167.16796875 192 176 c 2 - 192 208 l 2 - 192 216.83203125 199.16796875 224 208 224 c 2 - 240 224 l 2 -336 224 m 2 - 344.83203125 224 352 216.83203125 352 208 c 2 - 352 176 l 2 - 352 167.16796875 344.83203125 160 336 160 c 2 - 304 160 l 2 - 295.16796875 160 288 167.16796875 288 176 c 2 - 288 208 l 2 - 288 216.83203125 295.16796875 224 304 224 c 2 - 336 224 l 2 -432 224 m 2 - 440.83203125 224 448 216.83203125 448 208 c 2 - 448 176 l 2 - 448 167.16796875 440.83203125 160 432 160 c 2 - 400 160 l 2 - 391.16796875 160 384 167.16796875 384 176 c 2 - 384 208 l 2 - 384 216.83203125 391.16796875 224 400 224 c 2 - 432 224 l 2 -144 224 m 2 - 152.83203125 224 160 216.83203125 160 208 c 2 - 160 176 l 2 - 160 167.16796875 152.83203125 160 144 160 c 2 - 112 160 l 2 - 103.16796875 160 96 167.16796875 96 176 c 2 - 96 208 l 2 - 96 216.83203125 103.16796875 224 112 224 c 2 - 144 224 l 2 -240 32 m 2 - 248.83203125 32 256 24.83203125 256 16 c 2 - 256 -16 l 2 - 256 -24.83203125 248.83203125 -32 240 -32 c 2 - 208 -32 l 2 - 199.16796875 -32 192 -24.83203125 192 -16 c 2 - 192 16 l 2 - 192 24.83203125 199.16796875 32 208 32 c 2 - 240 32 l 2 -336 32 m 2 - 344.83203125 32 352 24.83203125 352 16 c 2 - 352 -16 l 2 - 352 -24.83203125 344.83203125 -32 336 -32 c 2 - 304 -32 l 2 - 295.16796875 -32 288 -24.83203125 288 -16 c 2 - 288 16 l 2 - 288 24.83203125 295.16796875 32 304 32 c 2 - 336 32 l 2 -432 32 m 2 - 440.83203125 32 448 24.83203125 448 16 c 2 - 448 -16 l 2 - 448 -24.83203125 440.83203125 -32 432 -32 c 2 - 400 -32 l 2 - 391.16796875 -32 384 -24.83203125 384 -16 c 2 - 384 16 l 2 - 384 24.83203125 391.16796875 32 400 32 c 2 - 432 32 l 2 -432 128 m 2 - 440.83203125 128 448 120.83203125 448 112 c 2 - 448 80 l 2 - 448 71.16796875 440.83203125 64 432 64 c 2 - 400 64 l 2 - 391.16796875 64 384 71.16796875 384 80 c 2 - 384 112 l 2 - 384 120.83203125 391.16796875 128 400 128 c 2 - 432 128 l 2 -432 320 m 2 - 440.83203125 320 448 312.83203125 448 304 c 2 - 448 272 l 2 - 448 263.16796875 440.83203125 256 432 256 c 2 - 400 256 l 2 - 391.16796875 256 384 263.16796875 384 272 c 2 - 384 304 l 2 - 384 312.83203125 391.16796875 320 400 320 c 2 - 432 320 l 2 -240 128 m 2 - 248.83203125 128 256 120.83203125 256 112 c 2 - 256 80 l 2 - 256 71.16796875 248.83203125 64 240 64 c 2 - 208 64 l 2 - 199.16796875 64 192 71.16796875 192 80 c 2 - 192 112 l 2 - 192 120.83203125 199.16796875 128 208 128 c 2 - 240 128 l 2 -240 320 m 2 - 248.83203125 320 256 312.83203125 256 304 c 2 - 256 272 l 2 - 256 263.16796875 248.83203125 256 240 256 c 2 - 208 256 l 2 - 199.16796875 256 192 263.16796875 192 272 c 2 - 192 304 l 2 - 192 312.83203125 199.16796875 320 208 320 c 2 - 240 320 l 2 -144 32 m 2 - 152.83203125 32 160 24.83203125 160 16 c 2 - 160 -16 l 2 - 160 -24.83203125 152.83203125 -32 144 -32 c 2 - 112 -32 l 2 - 103.16796875 -32 96 -24.83203125 96 -16 c 2 - 96 16 l 2 - 96 24.83203125 103.16796875 32 112 32 c 2 - 144 32 l 2 -240 416 m 2 - 248.83203125 416 256 408.83203125 256 400 c 2 - 256 368 l 2 - 256 359.16796875 248.83203125 352 240 352 c 2 - 208 352 l 2 - 199.16796875 352 192 359.16796875 192 368 c 2 - 192 400 l 2 - 192 408.83203125 199.16796875 416 208 416 c 2 - 240 416 l 2 -336 416 m 2 - 344.83203125 416 352 408.83203125 352 400 c 2 - 352 368 l 2 - 352 359.16796875 344.83203125 352 336 352 c 2 - 304 352 l 2 - 295.16796875 352 288 359.16796875 288 368 c 2 - 288 400 l 2 - 288 408.83203125 295.16796875 416 304 416 c 2 - 336 416 l 2 -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 400 352 l 2 - 391.16796875 352 384 359.16796875 384 368 c 2 - 384 400 l 2 - 384 408.83203125 391.16796875 416 400 416 c 2 - 432 416 l 2 -48 224 m 2 - 56.83203125 224 64 216.83203125 64 208 c 2 - 64 176 l 2 - 64 167.16796875 56.83203125 160 48 160 c 2 - 16 160 l 2 - 7.16796875 160 0 167.16796875 0 176 c 2 - 0 208 l 2 - 0 216.83203125 7.16796875 224 16 224 c 2 - 48 224 l 2 -48 32 m 2 - 56.83203125 32 64 24.83203125 64 16 c 2 - 64 -16 l 2 - 64 -24.83203125 56.83203125 -32 48 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 16 l 2 - 0 24.83203125 7.16796875 32 16 32 c 2 - 48 32 l 2 -48 128 m 2 - 56.83203125 128 64 120.83203125 64 112 c 2 - 64 80 l 2 - 64 71.16796875 56.83203125 64 48 64 c 2 - 16 64 l 2 - 7.16796875 64 0 71.16796875 0 80 c 2 - 0 112 l 2 - 0 120.83203125 7.16796875 128 16 128 c 2 - 48 128 l 2 -48 320 m 2 - 56.83203125 320 64 312.83203125 64 304 c 2 - 64 272 l 2 - 64 263.16796875 56.83203125 256 48 256 c 2 - 16 256 l 2 - 7.16796875 256 0 263.16796875 0 272 c 2 - 0 304 l 2 - 0 312.83203125 7.16796875 320 16 320 c 2 - 48 320 l 2 -48 416 m 2 - 56.83203125 416 64 408.83203125 64 400 c 2 - 64 368 l 2 - 64 359.16796875 56.83203125 352 48 352 c 2 - 16 352 l 2 - 7.16796875 352 0 359.16796875 0 368 c 2 - 0 400 l 2 - 0 408.83203125 7.16796875 416 16 416 c 2 - 48 416 l 2 -144 416 m 2 - 152.83203125 416 160 408.83203125 160 400 c 2 - 160 368 l 2 - 160 359.16796875 152.83203125 352 144 352 c 2 - 112 352 l 2 - 103.16796875 352 96 359.16796875 96 368 c 2 - 96 400 l 2 - 96 408.83203125 103.16796875 416 112 416 c 2 - 144 416 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" b o r d e r hyphen n o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" B o r d e r hyphen N o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" B o r d e r hyphen n o n e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" B O R D E R hyphen N O N E -EndChar - -StartChar: border-style -Encoding: 63571 63571 1008 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -240 32 m 2 - 248.83203125 32 256 24.83203125 256 16 c 2 - 256 -16 l 2 - 256 -24.83203125 248.83203125 -32 240 -32 c 2 - 208 -32 l 2 - 199.16796875 -32 192 -24.83203125 192 -16 c 2 - 192 16 l 2 - 192 24.83203125 199.16796875 32 208 32 c 2 - 240 32 l 2 -144 32 m 2 - 152.83203125 32 160 24.83203125 160 16 c 2 - 160 -16 l 2 - 160 -24.83203125 152.83203125 -32 144 -32 c 2 - 112 -32 l 2 - 103.16796875 -32 96 -24.83203125 96 -16 c 2 - 96 16 l 2 - 96 24.83203125 103.16796875 32 112 32 c 2 - 144 32 l 2 -336 32 m 2 - 344.83203125 32 352 24.83203125 352 16 c 2 - 352 -16 l 2 - 352 -24.83203125 344.83203125 -32 336 -32 c 2 - 304 -32 l 2 - 295.16796875 -32 288 -24.83203125 288 -16 c 2 - 288 16 l 2 - 288 24.83203125 295.16796875 32 304 32 c 2 - 336 32 l 2 -432 224 m 2 - 440.83203125 224 448 216.83203125 448 208 c 2 - 448 176 l 2 - 448 167.16796875 440.83203125 160 432 160 c 2 - 400 160 l 2 - 391.16796875 160 384 167.16796875 384 176 c 2 - 384 208 l 2 - 384 216.83203125 391.16796875 224 400 224 c 2 - 432 224 l 2 -432 128 m 2 - 440.83203125 128 448 120.83203125 448 112 c 2 - 448 80 l 2 - 448 71.16796875 440.83203125 64 432 64 c 2 - 400 64 l 2 - 391.16796875 64 384 71.16796875 384 80 c 2 - 384 112 l 2 - 384 120.83203125 391.16796875 128 400 128 c 2 - 432 128 l 2 -432 32 m 2 - 440.83203125 32 448 24.83203125 448 16 c 2 - 448 -16 l 2 - 448 -24.83203125 440.83203125 -32 432 -32 c 2 - 400 -32 l 2 - 391.16796875 -32 384 -24.83203125 384 -16 c 2 - 384 16 l 2 - 384 24.83203125 391.16796875 32 400 32 c 2 - 432 32 l 2 -432 320 m 2 - 440.83203125 320 448 312.83203125 448 304 c 2 - 448 272 l 2 - 448 263.16796875 440.83203125 256 432 256 c 2 - 400 256 l 2 - 391.16796875 256 384 263.16796875 384 272 c 2 - 384 304 l 2 - 384 312.83203125 391.16796875 320 400 320 c 2 - 432 320 l 2 -432 416 m 2 - 440.83203125 416 448 408.83203125 448 400 c 2 - 448 368 l 2 - 448 359.16796875 440.83203125 352 432 352 c 2 - 64 352 l 1 - 64 -16 l 2 - 64 -24.83203125 56.83203125 -32 48 -32 c 2 - 16 -32 l 2 - 7.16796875 -32 0 -24.83203125 0 -16 c 2 - 0 384 l 2 - 0 401.6640625 14.3359375 416 32 416 c 2 - 432 416 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" b o r d e r hyphen s t y l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" B o r d e r hyphen S t y l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" B o r d e r hyphen s t y l e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 34" B O R D E R hyphen S T Y L E -EndChar - -StartChar: fan -Encoding: 63587 63587 1009 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -352.5703125 320 m 0 - 434.360351562 320 501.870117188 258.370117188 511.870117188 178.669921875 c 0 - 513.1796875 168.190429688 504.690429688 159.030273438 494.25 160.080078125 c 2 - 371.139648438 172.490234375 l 1 - 379.48046875 149.51953125 384 123.51953125 384 95.4296875 c 0 - 384 13.6396484375 322.370117188 -53.8701171875 242.669921875 -63.8701171875 c 0 - 232.190429688 -65.1796875 223.030273438 -56.6796875 224.080078125 -46.25 c 2 - 236.490234375 76.8603515625 l 1 - 213.51953125 68.51953125 187.51953125 64 159.4296875 64 c 0 - 77.6396484375 64 10.1298828125 125.629882812 0.1298828125 205.330078125 c 0 - -1.1796875 215.809570312 7.3095703125 225 17.75 223.919921875 c 2 - 140.860351562 211.509765625 l 1 - 132.51953125 234.48046875 128 260.48046875 128 288.5703125 c 0 - 128 370.360351562 189.629882812 437.870117188 269.330078125 447.870117188 c 0 - 279.809570312 449.1796875 289 440.690429688 287.919921875 430.25 c 2 - 275.509765625 307.139648438 l 1 - 298.48046875 315.48046875 324.48046875 320 352.5703125 320 c 0 -256 160 m 0 - 273.6640625 160 288 174.3359375 288 192 c 0 - 288 209.6640625 273.6640625 224 256 224 c 0 - 238.3359375 224 224 209.6640625 224 192 c 0 - 224 174.3359375 238.3359375 160 256 160 c 0 -EndSplineSet -Validated: 524321 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" f a n -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" F A N -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 60" F a n -EndChar - -StartChar: icons -Encoding: 63597 63597 1010 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -116.650390625 228.650390625 m 2 - 19.8603515625 328.48046875 l 2 - -8.1396484375 357.509765625 -6.5498046875 405.580078125 24.8603515625 432.360351562 c 0 - 52.25 455.700195312 93.0498046875 451.5 118.150390625 425.559570312 c 2 - 128 415.419921875 l 1 - 137.860351562 425.559570312 l 2 - 163 451.5 203.75 455.700195312 231.139648438 432.360351562 c 0 - 262.549804688 405.580078125 264.200195312 357.48046875 236.049804688 328.48046875 c 2 - 139.299804688 228.650390625 l 2 - 136.744140625 225.98046875 131.670898438 223.814453125 127.974609375 223.814453125 c 0 - 124.279296875 223.814453125 119.206054688 225.98046875 116.650390625 228.650390625 c 2 -260.5703125 128.16015625 m 2 - 275.7109375 128.149414062 288 115.8515625 288 100.709960938 c 2 - 288 100.700195312 l 1 - 288 -36.5498046875 l 1 - 288 -36.5498046875 l 1 - 288 -51.69140625 275.7109375 -63.9892578125 260.5703125 -64 c 2 - 27.4296875 -64 l 2 - 12.2890625 -63.994140625 0 -51.701171875 0 -36.5595703125 c 2 - 0 -36.5498046875 l 1 - 0 100.700195312 l 1 - 0 100.709960938 l 2 - 0 115.862304688 12.2978515625 128.16015625 27.4501953125 128.16015625 c 2 - 27.4599609375 128.16015625 l 1 - 75.4599609375 128.16015625 l 1 - 82.4599609375 142.400390625 l 2 - 86.1376953125 152.21484375 97.6279296875 160.1796875 108.108398438 160.1796875 c 2 - 108.120117188 160.1796875 l 1 - 179.830078125 160.1796875 l 1 - 179.840820312 160.1796875 l 2 - 190.322265625 160.1796875 201.8125 152.21484375 205.490234375 142.400390625 c 2 - 212.5703125 128.16015625 l 1 - 260.5703125 128.16015625 l 2 -144 -20 m 0 - 172.704101562 -20 196 3.2958984375 196 32 c 0 - 196 60.7041015625 172.704101562 84 144 84 c 0 - 115.295898438 84 92 60.7041015625 92 32 c 0 - 92 3.2958984375 115.295898438 -20 144 -20 c 0 -499.400390625 95.900390625 m 2 - 509.110351562 95.900390625 515.150390625 87.1103515625 510.26953125 80.2001953125 c 2 - 417.870117188 -58.7099609375 l 2 - 415.673828125 -61.6103515625 410.9375 -63.96484375 407.298828125 -63.96484375 c 0 - 407.203125 -63.96484375 407.045898438 -63.962890625 406.950195312 -63.9599609375 c 0 - 398.919921875 -63.9599609375 392.830078125 -57.7099609375 394.719726562 -51.0595703125 c 2 - 418.919921875 31.9404296875 l 1 - 356.610351562 31.9404296875 l 2 - 348.990234375 31.9404296875 343.110351562 37.5302734375 344.110351562 43.830078125 c 2 - 360.91015625 150.759765625 l 2 - 361.75 155.959960938 367.110351562 159.860351562 373.41015625 159.860351562 c 2 - 449 159.860351562 l 2 - 457.25 159.860351562 463.280273438 153.299804688 461.1796875 146.650390625 c 2 - 438.8203125 95.900390625 l 1 - 499.400390625 95.900390625 l 2 -478.080078125 447.669921875 m 2 - 496 450.419921875 512 435.48046875 512 416 c 2 - 512 271.740234375 l 2 - 511.73046875 245.400390625 483.200195312 224.080078125 448 224.080078125 c 0 - 412.650390625 224.080078125 384 245.559570312 384 272.080078125 c 0 - 384 298.599609375 412.650390625 320.080078125 448 320.080078125 c 0 - 452.461914062 320.040039062 459.629882812 319.278320312 464 318.379882812 c 1 - 464 365.559570312 l 1 - 352 348.33984375 l 1 - 352 239.759765625 l 2 - 351.73046875 213.419921875 323.200195312 192.099609375 288 192.099609375 c 0 - 252.650390625 192.099609375 224 213.580078125 224 240.099609375 c 0 - 224 266.620117188 252.650390625 288.099609375 288 288.099609375 c 0 - 292.461914062 288.059570312 299.629882812 287.297851562 304 286.400390625 c 1 - 304 393.169921875 l 2 - 304 409.080078125 314.870117188 422.580078125 329.509765625 424.830078125 c 2 - 478.080078125 447.669921875 l 2 -EndSplineSet -Validated: 524325 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" i c o n s -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" I C O N S -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 55" I c o n s -EndChar - -StartChar: phone-alt -Encoding: 63609 63609 1011 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -497.389648438 86.2001953125 m 2 - 505.450195312 82.6943359375 511.991210938 72.7158203125 511.991210938 63.92578125 c 0 - 511.991210938 62.4375 511.7265625 60.0517578125 511.400390625 58.599609375 c 2 - 487.400390625 -45.400390625 l 2 - 485.029296875 -55.6669921875 474.552734375 -64 464.015625 -64 c 2 - 464 -64 l 2 - 207.900390625 -64 0 143.5 0 400 c 2 - 0 400.005859375 l 2 - 0 410.54296875 8.3330078125 421.01953125 18.599609375 423.389648438 c 2 - 122.599609375 447.389648438 l 2 - 124.059570312 447.721679688 126.458007812 447.991210938 127.955078125 447.991210938 c 0 - 136.6875 447.991210938 146.608398438 441.494140625 150.099609375 433.490234375 c 2 - 198.099609375 321.490234375 l 2 - 199.16796875 318.998046875 200.034179688 314.774414062 200.034179688 312.0625 c 0 - 200.034179688 305.776367188 196.076171875 297.456054688 191.200195312 293.490234375 c 2 - 130.599609375 243.889648438 l 1 - 161.939453125 177.420898438 241.3203125 98.0400390625 307.790039062 66.7001953125 c 1 - 357.389648438 127.299804688 l 2 - 361.365234375 132.168945312 369.694335938 136.12109375 375.98046875 136.12109375 c 0 - 378.685546875 136.12109375 382.901367188 135.260742188 385.389648438 134.200195312 c 2 - 497.389648438 86.2001953125 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" p h o n e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" P h o n e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" P h o n e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 42" P H O N E hyphen A L T -EndChar - -StartChar: phone-square-alt -Encoding: 63611 63611 1012 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -400 416 m 2 - 426.49609375 416 448 394.49609375 448 368 c 2 - 448 16 l 2 - 448 -10.49609375 426.49609375 -32 400 -32 c 2 - 48 -32 l 2 - 21.50390625 -32 0 -10.49609375 0 16 c 2 - 0 368 l 2 - 0 394.49609375 21.50390625 416 48 416 c 2 - 400 416 l 2 -383.610351562 108.629882812 m 2 - 383.80859375 109.549804688 383.983398438 111.059570312 384 112 c 0 - 383.737304688 117.286132812 379.665039062 123.46484375 374.91015625 125.790039062 c 2 - 304.91015625 155.790039062 l 2 - 303.3359375 156.403320312 300.688476562 156.9453125 299 157 c 0 - 295.17578125 156.790039062 289.974609375 154.326171875 287.389648438 151.5 c 2 - 256.389648438 113.610351562 l 1 - 214.842773438 133.212890625 165.212890625 182.842773438 145.610351562 224.389648438 c 1 - 183.5 255.389648438 l 2 - 186.326171875 257.974609375 188.790039062 263.17578125 189 267 c 0 - 188.9453125 268.688476562 188.40234375 271.3359375 187.790039062 272.91015625 c 2 - 157.790039062 342.91015625 l 2 - 155.461914062 347.661132812 149.284179688 351.733398438 144 352 c 0 - 143.059570312 351.979492188 141.549804688 351.8046875 140.629882812 351.610351562 c 2 - 75.6298828125 336.610351562 l 2 - 69.4375 334.952148438 64.2265625 328.407226562 64 322 c 0 - 64 161.709960938 194 32 354 32 c 0 - 360.584960938 32.0029296875 367.130859375 37.212890625 368.610351562 43.6298828125 c 2 - 383.610351562 108.629882812 l 2 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" p h o n e hyphen s q u a r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" P h o n e hyphen S q u a r e hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" P h o n e hyphen s q u a r e hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 22" P H O N E hyphen S Q U A R E hyphen A L T -EndChar - -StartChar: photo-video -Encoding: 63612 63612 1013 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -608 448 m 2 - 625.6640625 448 640 433.6640625 640 416 c 2 - 640 96 l 2 - 640 78.3359375 625.6640625 64 608 64 c 2 - 480 64 l 1 - 480 384 l 1 - 288 384 l 1 - 288 320 l 1 - 128 320 l 1 - 128 416 l 2 - 128 433.6640625 142.3359375 448 160 448 c 2 - 608 448 l 2 -232 345 m 2 - 232 375 l 2 - 232 379.967773438 227.967773438 384 223 384 c 2 - 193 384 l 2 - 188.032226562 384 184 379.967773438 184 375 c 2 - 184 345 l 2 - 184 340.032226562 188.032226562 336 193 336 c 2 - 223 336 l 2 - 227.967773438 336 232 340.032226562 232 345 c 2 -584 137 m 2 - 584 167 l 2 - 584 171.967773438 579.967773438 176 575 176 c 2 - 545 176 l 2 - 540.032226562 176 536 171.967773438 536 167 c 2 - 536 137 l 2 - 536 132.032226562 540.032226562 128 545 128 c 2 - 575 128 l 2 - 579.967773438 128 584 132.032226562 584 137 c 2 -584 241 m 2 - 584 271 l 2 - 584 275.967773438 579.967773438 280 575 280 c 2 - 545 280 l 2 - 540.032226562 280 536 275.967773438 536 271 c 2 - 536 241 l 2 - 536 236.032226562 540.032226562 232 545 232 c 2 - 575 232 l 2 - 579.967773438 232 584 236.032226562 584 241 c 2 -584 345 m 2 - 584 375 l 2 - 584 379.967773438 579.967773438 384 575 384 c 2 - 545 384 l 2 - 540.032226562 384 536 379.967773438 536 375 c 2 - 536 345 l 2 - 536 340.032226562 540.032226562 336 545 336 c 2 - 575 336 l 2 - 579.967773438 336 584 340.032226562 584 345 c 2 -416 288 m 2 - 433.6640625 288 448 273.6640625 448 256 c 2 - 448 -32 l 2 - 448 -49.6640625 433.6640625 -64 416 -64 c 2 - 32 -64 l 2 - 14.3359375 -64 0 -49.6640625 0 -32 c 2 - 0 256 l 2 - 0 273.6640625 14.3359375 288 32 288 c 2 - 416 288 l 2 -96 224 m 0 - 78.3359375 224 64 209.6640625 64 192 c 0 - 64 174.3359375 78.3359375 160 96 160 c 0 - 113.6640625 160 128 174.3359375 128 192 c 0 - 128 209.6640625 113.6640625 224 96 224 c 0 -384 0 m 1 - 384 96 l 1 - 288 192 l 1 - 160 64 l 1 - 128 96 l 1 - 64 32 l 1 - 64 0 l 1 - 384 0 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" p h o t o hyphen v i d e o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P h o t o hyphen V i d e o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P h o t o hyphen v i d e o -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" P H O T O hyphen V I D E O -EndChar - -StartChar: remove-format -Encoding: 63613 63613 1014 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -336 32 m 2 - 344.83203125 32 352 24.83203125 352 16 c 2 - 352 -16 l 2 - 352 -24.83203125 344.83203125 -32 336 -32 c 2 - 208 -32 l 2 - 199.16796875 -32 192 -24.83203125 192 -16 c 2 - 192 16 l 2 - 192 24.83203125 199.16796875 32 208 32 c 2 - 240.490234375 32 l 1 - 267 111.599609375 l 1 - 334.08984375 59.76953125 l 1 - 324.830078125 32 l 1 - 336 32 l 2 -633.8203125 -10.099609375 m 2 - 637.233398438 -12.751953125 640.00390625 -18.412109375 640.00390625 -22.7353515625 c 0 - 640.00390625 -25.7626953125 638.497070312 -30.1591796875 636.639648438 -32.5498046875 c 2 - 617 -57.8203125 l 2 - 614.34765625 -61.232421875 608.688476562 -64.0029296875 604.366210938 -64.0029296875 c 0 - 601.334960938 -64.0029296875 596.932617188 -62.4912109375 594.540039062 -60.6298828125 c 2 - 6.1796875 394.08984375 l 2 - 2.76953125 396.7421875 0.001953125 402.400390625 0.001953125 406.720703125 c 0 - 0.001953125 409.749023438 1.5107421875 414.1484375 3.3701171875 416.540039062 c 2 - 23 441.809570312 l 2 - 25.65234375 445.22265625 31.3115234375 447.9921875 35.6337890625 447.9921875 c 0 - 38.6650390625 447.9921875 43.0673828125 446.481445312 45.4599609375 444.620117188 c 2 - 160 356.099609375 l 1 - 160 400 l 2 - 160 408.83203125 167.16796875 416 176 416 c 2 - 592 416 l 2 - 600.83203125 416 608 408.83203125 608 400 c 2 - 608 304 l 2 - 608 295.16796875 600.83203125 288 592 288 c 2 - 560 288 l 2 - 551.16796875 288 544 295.16796875 544 304 c 2 - 544 336 l 1 - 426.169921875 336 l 1 - 377 188.41015625 l 1 - 633.8203125 -10.099609375 l 2 -309.91015625 240.240234375 m 1 - 341.830078125 336 l 1 - 224 336 l 1 - 224 306.639648438 l 1 - 309.91015625 240.240234375 l 1 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" r e m o v e hyphen f o r m a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" R e m o v e hyphen F o r m a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" R e m o v e hyphen f o r m a t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 30" R E M O V E hyphen F O R M A T -EndChar - -StartChar: sort-alpha-down-alt -Encoding: 63617 63617 1015 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -176 96 m 2 - 190.219726562 96 197.349609375 78.740234375 187.330078125 68.6904296875 c 2 - 107.330078125 -27.3095703125 l 2 - 104.743164062 -29.89453125 99.6767578125 -31.9921875 96.01953125 -31.9921875 c 0 - 92.36328125 -31.9921875 87.296875 -29.89453125 84.7099609375 -27.3095703125 c 2 - 4.7099609375 68.6904296875 l 2 - -5.3603515625 78.759765625 1.8095703125 96 16 96 c 2 - 64 96 l 1 - 64 400 l 2 - 64 408.83203125 71.16796875 416 80 416 c 2 - 112 416 l 2 - 120.83203125 416 128 408.83203125 128 400 c 2 - 128 96 l 1 - 176 96 l 2 -288 224 m 2 - 279.16796875 224 272 231.16796875 272 240 c 2 - 272 257.629882812 l 1 - 272 257.6328125 l 2 - 272 265.565429688 276.811523438 276.280273438 282.740234375 281.549804688 c 2 - 344 352 l 1 - 288 352 l 2 - 279.16796875 352 272 359.16796875 272 368 c 2 - 272 400 l 2 - 272 408.83203125 279.16796875 416 288 416 c 2 - 416 416 l 2 - 424.83203125 416 432 408.83203125 432 400 c 2 - 432 382.370117188 l 1 - 432 382.3671875 l 2 - 432 374.434570312 427.188476562 363.719726562 421.259765625 358.450195312 c 2 - 360 288 l 1 - 416 288 l 2 - 424.83203125 288 432 280.83203125 432 272 c 2 - 432 240 l 2 - 432 231.16796875 424.83203125 224 416 224 c 2 - 288 224 l 2 -447.059570312 -10.6201171875 m 2 - 447.57421875 -12.060546875 447.991210938 -14.470703125 447.991210938 -16 c 0 - 447.991210938 -24.8271484375 440.827148438 -31.9951171875 432 -32 c 2 - 407.16015625 -32 l 1 - 407.115234375 -32 l 2 - 400.6875 -32 393.866210938 -27.0361328125 391.889648438 -20.919921875 c 2 - 387.48046875 -8 l 1 - 316.48046875 -8 l 1 - 312.059570312 -20.919921875 l 2 - 310.083984375 -27.0361328125 303.262695312 -32 296.834960938 -32 c 2 - 296.830078125 -32 l 1 - 272 -32 l 2 - 263.172851562 -31.9951171875 256.008789062 -24.8271484375 256.008789062 -16 c 0 - 256.008789062 -14.470703125 256.42578125 -12.060546875 256.940429688 -10.6201171875 c 2 - 316.209960938 149.379882812 l 2 - 318.302734375 155.2421875 325.053710938 160 331.278320312 160 c 2 - 331.280273438 160 l 1 - 372.719726562 160 l 1 - 372.721679688 160 l 2 - 378.946289062 160 385.697265625 155.2421875 387.790039062 149.379882812 c 2 - 447.059570312 -10.6201171875 l 2 -335.610351562 48 m 1 - 368.389648438 48 l 1 - 352 96 l 1 - 335.610351562 48 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" s o r t hyphen a l p h a hyphen d o w n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" S o r t hyphen A l p h a hyphen D o w n hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" S o r t hyphen a l p h a hyphen d o w n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 13" S O R T hyphen A L P H A hyphen D O W N hyphen A L T -EndChar - -StartChar: sort-alpha-up-alt -Encoding: 63618 63618 1016 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -16 288 m 2 - 1.7802734375 288 -5.349609375 305.259765625 4.6904296875 315.309570312 c 2 - 84.6904296875 411.309570312 l 2 - 87.2763671875 413.89453125 92.34375 415.9921875 96 415.9921875 c 0 - 99.65625 415.9921875 104.723632812 413.89453125 107.309570312 411.309570312 c 2 - 187.309570312 315.309570312 l 2 - 197.379882812 305.240234375 190.209960938 288 176 288 c 2 - 128 288 l 1 - 128 -16 l 2 - 128 -24.83203125 120.83203125 -32 112 -32 c 2 - 80 -32 l 2 - 71.16796875 -32 64 -24.83203125 64 -16 c 2 - 64 288 l 1 - 16 288 l 2 -288 224 m 2 - 279.16796875 224 272 231.16796875 272 240 c 2 - 272 257.629882812 l 1 - 272 257.6328125 l 2 - 272 265.565429688 276.811523438 276.280273438 282.740234375 281.549804688 c 2 - 344 352 l 1 - 288 352 l 2 - 279.16796875 352 272 359.16796875 272 368 c 2 - 272 400 l 2 - 272 408.83203125 279.16796875 416 288 416 c 2 - 416 416 l 2 - 424.83203125 416 432 408.83203125 432 400 c 2 - 432 382.370117188 l 1 - 432 382.3671875 l 2 - 432 374.434570312 427.188476562 363.719726562 421.259765625 358.450195312 c 2 - 360 288 l 1 - 416 288 l 2 - 424.83203125 288 432 280.83203125 432 272 c 2 - 432 240 l 2 - 432 231.16796875 424.83203125 224 416 224 c 2 - 288 224 l 2 -447.059570312 -10.6201171875 m 2 - 447.57421875 -12.060546875 447.991210938 -14.470703125 447.991210938 -16 c 0 - 447.991210938 -24.8271484375 440.827148438 -31.9951171875 432 -32 c 2 - 407.16015625 -32 l 1 - 407.115234375 -32 l 2 - 400.6875 -32 393.866210938 -27.0361328125 391.889648438 -20.919921875 c 2 - 387.48046875 -8 l 1 - 316.48046875 -8 l 1 - 312.059570312 -20.919921875 l 2 - 310.083984375 -27.0361328125 303.262695312 -32 296.834960938 -32 c 2 - 296.830078125 -32 l 1 - 272 -32 l 2 - 263.172851562 -31.9951171875 256.008789062 -24.8271484375 256.008789062 -16 c 0 - 256.008789062 -14.470703125 256.42578125 -12.060546875 256.940429688 -10.6201171875 c 2 - 316.209960938 149.379882812 l 2 - 318.302734375 155.2421875 325.053710938 160 331.278320312 160 c 2 - 331.280273438 160 l 1 - 372.719726562 160 l 1 - 372.721679688 160 l 2 - 378.946289062 160 385.697265625 155.2421875 387.790039062 149.379882812 c 2 - 447.059570312 -10.6201171875 l 2 -335.610351562 48 m 1 - 368.389648438 48 l 1 - 352 96 l 1 - 335.610351562 48 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" s o r t hyphen a l p h a hyphen u p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" S o r t hyphen A l p h a hyphen U p hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" S o r t hyphen a l p h a hyphen u p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 18" S O R T hyphen A L P H A hyphen U P hyphen A L T -EndChar - -StartChar: sort-amount-down-alt -Encoding: 63620 63620 1017 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -240 352 m 2 - 231.16796875 352 224 359.16796875 224 368 c 2 - 224 400 l 2 - 224 408.83203125 231.16796875 416 240 416 c 2 - 304 416 l 2 - 312.83203125 416 320 408.83203125 320 400 c 2 - 320 368 l 2 - 320 359.16796875 312.83203125 352 304 352 c 2 - 240 352 l 2 -240 224 m 2 - 231.16796875 224 224 231.16796875 224 240 c 2 - 224 272 l 2 - 224 280.83203125 231.16796875 288 240 288 c 2 - 368 288 l 2 - 376.83203125 288 384 280.83203125 384 272 c 2 - 384 240 l 2 - 384 231.16796875 376.83203125 224 368 224 c 2 - 240 224 l 2 -496 32 m 2 - 504.83203125 32 512 24.83203125 512 16 c 2 - 512 -16 l 2 - 512 -24.83203125 504.83203125 -32 496 -32 c 2 - 240 -32 l 2 - 231.16796875 -32 224 -24.83203125 224 -16 c 2 - 224 16 l 2 - 224 24.83203125 231.16796875 32 240 32 c 2 - 496 32 l 2 -240 96 m 2 - 231.16796875 96 224 103.16796875 224 112 c 2 - 224 144 l 2 - 224 152.83203125 231.16796875 160 240 160 c 2 - 432 160 l 2 - 440.83203125 160 448 152.83203125 448 144 c 2 - 448 112 l 2 - 448 103.16796875 440.83203125 96 432 96 c 2 - 240 96 l 2 -176 96 m 2 - 190.219726562 96 197.349609375 78.740234375 187.330078125 68.6904296875 c 2 - 107.330078125 -27.3095703125 l 2 - 104.743164062 -29.89453125 99.6767578125 -31.9921875 96.01953125 -31.9921875 c 0 - 92.36328125 -31.9921875 87.296875 -29.89453125 84.7099609375 -27.3095703125 c 2 - 4.7099609375 68.6904296875 l 2 - -5.3701171875 78.759765625 1.8095703125 96 16 96 c 2 - 64 96 l 1 - 64 400 l 2 - 64 408.83203125 71.16796875 416 80 416 c 2 - 112 416 l 2 - 120.83203125 416 128 408.83203125 128 400 c 2 - 128 96 l 1 - 176 96 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 10" s o r t hyphen a m o u n t hyphen d o w n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 10" S o r t hyphen A m o u n t hyphen D o w n hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 10" S o r t hyphen a m o u n t hyphen d o w n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 10" S O R T hyphen A M O U N T hyphen D O W N hyphen A L T -EndChar - -StartChar: sort-amount-up-alt -Encoding: 63621 63621 1018 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -240 352 m 2 - 231.16796875 352 224 359.16796875 224 368 c 2 - 224 400 l 2 - 224 408.83203125 231.16796875 416 240 416 c 2 - 304 416 l 2 - 312.83203125 416 320 408.83203125 320 400 c 2 - 320 368 l 2 - 320 359.16796875 312.83203125 352 304 352 c 2 - 240 352 l 2 -240 224 m 2 - 231.16796875 224 224 231.16796875 224 240 c 2 - 224 272 l 2 - 224 280.83203125 231.16796875 288 240 288 c 2 - 368 288 l 2 - 376.83203125 288 384 280.83203125 384 272 c 2 - 384 240 l 2 - 384 231.16796875 376.83203125 224 368 224 c 2 - 240 224 l 2 -496 32 m 2 - 504.83203125 32 512 24.83203125 512 16 c 2 - 512 -16 l 2 - 512 -24.83203125 504.83203125 -32 496 -32 c 2 - 240 -32 l 2 - 231.16796875 -32 224 -24.83203125 224 -16 c 2 - 224 16 l 2 - 224 24.83203125 231.16796875 32 240 32 c 2 - 496 32 l 2 -240 96 m 2 - 231.16796875 96 224 103.16796875 224 112 c 2 - 224 144 l 2 - 224 152.83203125 231.16796875 160 240 160 c 2 - 432 160 l 2 - 440.83203125 160 448 152.83203125 448 144 c 2 - 448 112 l 2 - 448 103.16796875 440.83203125 96 432 96 c 2 - 240 96 l 2 -16 288 m 2 - 1.7802734375 288 -5.349609375 305.259765625 4.6904296875 315.309570312 c 2 - 84.6904296875 411.309570312 l 2 - 87.2763671875 413.89453125 92.34375 415.9921875 96 415.9921875 c 0 - 99.65625 415.9921875 104.723632812 413.89453125 107.309570312 411.309570312 c 2 - 187.309570312 315.309570312 l 2 - 197.389648438 305.240234375 190.209960938 288 176 288 c 2 - 128 288 l 1 - 128 -16 l 2 - 128 -24.83203125 120.83203125 -32 112 -32 c 2 - 80 -32 l 2 - 71.16796875 -32 64 -24.83203125 64 -16 c 2 - 64 288 l 1 - 16 288 l 2 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" s o r t hyphen a m o u n t hyphen u p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" S o r t hyphen A m o u n t hyphen U p hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" S o r t hyphen a m o u n t hyphen u p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 15" S O R T hyphen A M O U N T hyphen U P hyphen A L T -EndChar - -StartChar: sort-numeric-down-alt -Encoding: 63622 63622 1019 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -176 96 m 2 - 190.219726562 96 197.349609375 78.740234375 187.330078125 68.6904296875 c 2 - 107.330078125 -27.3095703125 l 2 - 104.743164062 -29.89453125 99.6767578125 -31.9921875 96.01953125 -31.9921875 c 0 - 92.36328125 -31.9921875 87.296875 -29.89453125 84.7099609375 -27.3095703125 c 2 - 4.7099609375 68.6904296875 l 2 - -5.3603515625 78.759765625 1.8095703125 96 16 96 c 2 - 64 96 l 1 - 64 400 l 2 - 64 408.83203125 71.16796875 416 80 416 c 2 - 112 416 l 2 - 120.83203125 416 128 408.83203125 128 400 c 2 - 128 96 l 1 - 176 96 l 2 -400 32 m 2 - 408.83203125 32 416 24.83203125 416 16 c 2 - 416 -16 l 2 - 416 -24.83203125 408.83203125 -32 400 -32 c 2 - 304 -32 l 2 - 295.16796875 -32 288 -24.83203125 288 -16 c 2 - 288 16 l 2 - 288 24.83203125 295.16796875 32 304 32 c 2 - 320 32 l 1 - 320 96 l 1 - 304 96 l 2 - 295.17578125 96.0078125 288.013671875 103.17578125 288.013671875 112 c 0 - 288.013671875 114.08984375 288.7734375 117.301757812 289.709960938 119.169921875 c 2 - 305.709960938 151.169921875 l 2 - 308.151367188 156.040039062 314.552734375 159.995117188 320 160 c 2 - 368 160 l 2 - 376.83203125 160 384 152.83203125 384 144 c 2 - 384 32 l 1 - 400 32 l 2 -330.169921875 413.08984375 m 0 - 383.620117188 427.33984375 432 387.209960938 432.01953125 336 c 2 - 432.01953125 325.23046875 l 2 - 432.01953125 254.83984375 403.76953125 218 345.76953125 193.23046875 c 0 - 337.400390625 189.650390625 327.740234375 194.509765625 324.870117188 203.139648438 c 2 - 314.969726562 223.139648438 l 2 - 312.349609375 231.009765625 315.580078125 240.080078125 323.150390625 243.48046875 c 0 - 329.4296875 246.194335938 338.770507812 251.978515625 344 256.389648438 c 1 - 296.360351562 261.150390625 260.900390625 307.870117188 275.169921875 358.919921875 c 0 - 281.977539062 382.37109375 306.618164062 406.639648438 330.169921875 413.08984375 c 0 -352 316 m 0 - 363.040039062 316 372 324.959960938 372 336 c 0 - 372 347.040039062 363.040039062 356 352 356 c 0 - 340.959960938 356 332 347.040039062 332 336 c 0 - 332 324.959960938 340.959960938 316 352 316 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 7" s o r t hyphen n u m e r i c hyphen d o w n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 7" S o r t hyphen N u m e r i c hyphen D o w n hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 7" S o r t hyphen n u m e r i c hyphen d o w n hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 7" S O R T hyphen N U M E R I C hyphen D O W N hyphen A L T -EndChar - -StartChar: sort-numeric-up-alt -Encoding: 63623 63623 1020 -Width: 448 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -107.309570312 411.309570312 m 2 - 187.309570312 315.309570312 l 2 - 197.379882812 305.240234375 190.209960938 288 176 288 c 2 - 128 288 l 1 - 128 -16 l 2 - 128 -24.83203125 120.83203125 -32 112 -32 c 2 - 80 -32 l 2 - 71.16796875 -32 64 -24.83203125 64 -16 c 2 - 64 288 l 1 - 16 288 l 2 - 1.7802734375 288 -5.349609375 305.259765625 4.6904296875 315.309570312 c 2 - 84.6904296875 411.309570312 l 2 - 87.2763671875 413.89453125 92.34375 415.9921875 96 415.9921875 c 0 - 99.65625 415.9921875 104.723632812 413.89453125 107.309570312 411.309570312 c 2 -400 32 m 2 - 408.83203125 32 416 24.83203125 416 16 c 2 - 416 -16 l 2 - 416 -24.83203125 408.83203125 -32 400 -32 c 2 - 304 -32 l 2 - 295.16796875 -32 288 -24.83203125 288 -16 c 2 - 288 16 l 2 - 288 24.83203125 295.16796875 32 304 32 c 2 - 320 32 l 1 - 320 96 l 1 - 304 96 l 2 - 295.17578125 96.0078125 288.013671875 103.17578125 288.013671875 112 c 0 - 288.013671875 114.08984375 288.7734375 117.301757812 289.709960938 119.169921875 c 2 - 305.709960938 151.169921875 l 2 - 308.151367188 156.040039062 314.552734375 159.995117188 320 160 c 2 - 368 160 l 2 - 376.83203125 160 384 152.83203125 384 144 c 2 - 384 32 l 1 - 400 32 l 2 -330.169921875 413.08984375 m 0 - 383.620117188 427.33984375 432 387.209960938 432.01953125 336 c 2 - 432.01953125 325.23046875 l 2 - 432.01953125 254.83984375 403.76953125 218 345.76953125 193.23046875 c 0 - 337.400390625 189.650390625 327.740234375 194.509765625 324.870117188 203.139648438 c 2 - 314.969726562 223.139648438 l 2 - 312.349609375 231.009765625 315.580078125 240.080078125 323.150390625 243.48046875 c 0 - 329.4296875 246.194335938 338.770507812 251.978515625 344 256.389648438 c 1 - 296.360351562 261.150390625 260.900390625 307.870117188 275.169921875 358.919921875 c 0 - 281.977539062 382.37109375 306.618164062 406.639648438 330.169921875 413.08984375 c 0 -352 316 m 0 - 363.040039062 316 372 324.959960938 372 336 c 0 - 372 347.040039062 363.040039062 356 352 356 c 0 - 340.959960938 356 332 347.040039062 332 336 c 0 - 332 324.959960938 340.959960938 316 352 316 c 0 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" s o r t hyphen n u m e r i c hyphen u p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" S o r t hyphen N u m e r i c hyphen U p hyphen A l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" S o r t hyphen n u m e r i c hyphen u p hyphen a l t -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 11" S O R T hyphen N U M E R I C hyphen U P hyphen A L T -EndChar - -StartChar: spell-check -Encoding: 63633 63633 1021 -Width: 576 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -272 192 m 2 - 263.16796875 192 256 199.16796875 256 208 c 2 - 256 432 l 2 - 256 440.83203125 263.16796875 448 272 448 c 2 - 347 448 l 2 - 389.299804688 448 427.900390625 417.4296875 431.669921875 375.3203125 c 0 - 431.856445312 373.299804688 432.0078125 370.012695312 432.0078125 367.983398438 c 0 - 432.0078125 356.96484375 427.797851562 340.131835938 422.610351562 330.41015625 c 1 - 436.62890625 317.342773438 448.006835938 291.184570312 448.006835938 272.01953125 c 0 - 448.006835938 270.727539062 447.9453125 268.630859375 447.870117188 267.33984375 c 0 - 445.360351562 224.200195312 406.559570312 192 363.360351562 192 c 2 - 272 192 l 2 -312 392 m 1 - 312 344 l 1 - 352 344 l 2 - 365.248046875 344 376 354.751953125 376 368 c 0 - 376 381.248046875 365.248046875 392 352 392 c 2 - 312 392 l 1 -312 296 m 1 - 312 248 l 1 - 368 248 l 2 - 381.248046875 248 392 258.751953125 392 272 c 0 - 392 285.248046875 381.248046875 296 368 296 c 2 - 312 296 l 1 -155.120117188 425.75 m 2 - 223.419921875 212.26953125 l 2 - 223.740234375 211.11328125 224 209.200195312 224 208 c 0 - 224 199.16796875 216.83203125 192 208 192 c 1 - 208 192 l 1 - 183.0703125 192 l 1 - 183.069335938 192 l 2 - 176.350585938 192 169.443359375 197.254882812 167.650390625 203.73046875 c 2 - 155.709960938 240 l 1 - 68.2900390625 240 l 1 - 56.349609375 203.73046875 l 2 - 54.556640625 197.254882812 47.6494140625 192 40.9306640625 192 c 2 - 40.9296875 192 l 1 - 16 192 l 2 - 7.173828125 192.004882812 0.009765625 199.173828125 0.009765625 208 c 0 - 0.009765625 209.200195312 0.26953125 211.11328125 0.58984375 212.26953125 c 2 - 68.8798828125 425.75 l 2 - 72.80859375 438.032226562 86.462890625 448 99.3583984375 448 c 2 - 99.3603515625 448 l 1 - 124.639648438 448 l 1 - 124.641601562 448 l 2 - 137.537109375 448 151.19140625 438.032226562 155.120117188 425.75 c 2 -89.3701171875 304 m 1 - 134.629882812 304 l 1 - 112 372.700195312 l 1 - 89.3701171875 304 l 1 -571.370117188 171.51953125 m 2 - 573.952148438 168.93359375 576.02734375 163.869140625 576.02734375 160.21484375 c 0 - 576.02734375 156.569335938 573.94140625 151.513671875 571.370117188 148.9296875 c 2 - 363.370117188 -59.2802734375 l 2 - 360.794921875 -61.884765625 355.732421875 -63.998046875 352.0703125 -63.998046875 c 0 - 348.407226562 -63.998046875 343.344726562 -61.884765625 340.76953125 -59.2802734375 c 2 - 228.76953125 52.9296875 l 2 - 226.193359375 55.5146484375 224.102539062 60.5751953125 224.102539062 64.224609375 c 0 - 224.102539062 67.875 226.193359375 72.9345703125 228.76953125 75.51953125 c 2 - 274.0703125 120.8203125 l 2 - 276.643554688 123.423828125 281.704101562 125.538085938 285.365234375 125.538085938 c 0 - 289.026367188 125.538085938 294.086914062 123.423828125 296.66015625 120.8203125 c 2 - 352.0703125 65.3203125 l 1 - 503.5703125 216.8203125 l 2 - 506.143554688 219.423828125 511.204101562 221.538085938 514.865234375 221.538085938 c 0 - 518.526367188 221.538085938 523.586914062 219.423828125 526.16015625 216.8203125 c 2 - 571.370117188 171.51953125 l 2 -EndSplineSet -Validated: 524805 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" s p e l l hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S p e l l hyphen C h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S p e l l hyphen c h e c k -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 37" S P E L L hyphen C H E C K -EndChar - -StartChar: voicemail -Encoding: 63639 63639 1022 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -496 320 m 2 - 575.48828125 320 640 255.48828125 640 176 c 0 - 640 96.51171875 575.48828125 32 496 32 c 2 - 144 32 l 2 - 64.515625 32.00390625 0.0068359375 96.515625 0.0068359375 176 c 0 - 0.0068359375 255.48828125 64.5185546875 320 144.006835938 320 c 0 - 223.495117188 320 288.006835938 255.48828125 288.006835938 176 c 0 - 288.006835938 151.888671875 277.135742188 116.048828125 263.740234375 96 c 1 - 376.259765625 96 l 1 - 362.864257812 116.048828125 351.993164062 151.888671875 351.993164062 176 c 0 - 351.993164062 255.48828125 416.504882812 320 495.993164062 320 c 2 - 496 320 l 2 -64 176 m 0 - 64 131.83984375 99.83984375 96 144 96 c 0 - 188.16015625 96 224 131.83984375 224 176 c 0 - 224 220.16015625 188.16015625 256 144 256 c 0 - 99.83984375 256 64 220.16015625 64 176 c 0 -496 96 m 0 - 540.16015625 96 576 131.83984375 576 176 c 0 - 576 220.16015625 540.16015625 256 496 256 c 0 - 451.83984375 256 416 220.16015625 416 176 c 0 - 416 131.83984375 451.83984375 96 496 96 c 0 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" v o i c e m a i l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" V o i c e m a i l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 41" V O I C E M A I L -EndChar - -StartChar: hat-cowboy -Encoding: 63680 63680 1023 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -490 151.099609375 m 1 - 451.23046875 138.509765625 396.26953125 128 320 128 c 0 - 243.73046875 128 188.809570312 138.530273438 150.009765625 151.120117188 c 1 - 159.51953125 208.530273438 189.51953125 384 247.719726562 384 c 0 - 261.719726562 384 274.209960938 378 284.719726562 370 c 0 - 293.349609375 363.421875 309.159179688 358.083007812 320.009765625 358.083007812 c 0 - 330.860351562 358.083007812 346.670898438 363.421875 355.299804688 370 c 0 - 365.809570312 378.0703125 378.299804688 384 392.299804688 384 c 0 - 450.509765625 384 480.509765625 208.490234375 490 151.099609375 c 1 -632.900390625 188.280273438 m 0 - 636.806640625 185.655273438 639.986328125 179.706054688 639.986328125 175 c 0 - 639.986328125 173.424804688 639.543945312 170.947265625 639 169.469726562 c 0 - 638.26953125 167.450195312 561.6796875 -32 320 -32 c 0 - 78.3203125 -32 1.73046875 167.450195312 1 169.469726562 c 0 - 0.462890625 170.939453125 0.0263671875 173.401367188 0.0263671875 174.96484375 c 0 - 0.0263671875 183.796875 7.1943359375 190.96484375 16.0263671875 190.96484375 c 0 - 19.4248046875 190.96484375 24.228515625 189.1171875 26.75 186.83984375 c 0 - 27.76953125 185.940429688 129.169921875 96 319.990234375 96 c 0 - 511.879882812 96 612.150390625 185.879882812 613.150390625 186.780273438 c 0 - 615.684570312 189.109375 620.53515625 190.999023438 623.9765625 190.999023438 c 0 - 626.66796875 190.999023438 630.666015625 189.78125 632.900390625 188.280273438 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" h a t hyphen c o w b o y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H a t hyphen C o w b o y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H a t hyphen c o w b o y -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 39" H A T hyphen C O W B O Y -EndChar - -StartChar: hat-cowboy-side -Encoding: 63681 63681 1024 -Width: 640 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -260.799804688 156.940429688 m 2 - 358.809570312 72.4599609375 l 2 - 437 5.0703125 488.790039062 -32 592 -32 c 2 - 45.8798828125 -32 l 2 - 31.830078125 -32 18.75 -24.4697265625 10 -11.3603515625 c 0 - 1 2.1103515625 -2.1201171875 19.33984375 1.4296875 35.9404296875 c 0 - 21.4697265625 129.280273438 87 192 164.400390625 192 c 0 - 198.799804688 192 232.169921875 179.879882812 260.799804688 156.940429688 c 2 -495.450195312 175.23046875 m 1 - 610.400390625 167.330078125 640 73.3896484375 640 48 c 0 - 640 21.50390625 618.49609375 0 592 0 c 0 - 494.900390625 0 450.759765625 35.4599609375 379.690429688 96.7001953125 c 2 - 281.690429688 181.1796875 l 2 - 246.400390625 209.450195312 206.190429688 224 164.400390625 224 c 0 - 157.309570312 224 150.509765625 222.830078125 143.610351562 222 c 1 - 150.5 287.209960938 l 2 - 153.228515625 312.686523438 175.78515625 337.680664062 200.849609375 343 c 2 - 392 383.58984375 l 2 - 395.635742188 384.36328125 401.602539062 384.991210938 405.319335938 384.991210938 c 0 - 435.108398438 384.991210938 463.369140625 361.161132812 468.400390625 331.799804688 c 2 - 495.450195312 175.23046875 l 1 -EndSplineSet -Validated: 524833 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" h a t hyphen c o w b o y hyphen s i d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H a t hyphen C o w b o y hyphen S i d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H a t hyphen c o w b o y hyphen s i d e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 23" H A T hyphen C O W B O Y hyphen S I D E -EndChar - -StartChar: mouse -Encoding: 63692 63692 1025 -Width: 384 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -0 96 m 2 - 0 224 l 1 - 384 224 l 1 - 384 96 l 2 - 384 7.6796875 312.3203125 -64 224 -64 c 2 - 160 -64 l 2 - 71.6796875 -64 0 7.6796875 0 96 c 2 -176 448 m 1 - 176 256 l 1 - 0 256 l 1 - 0 288 l 2 - 0 376.3203125 71.6796875 448 160 448 c 2 - 176 448 l 1 -224 448 m 2 - 312.3203125 448 384 376.3203125 384 288 c 2 - 384 256 l 1 - 208 256 l 1 - 208 448 l 1 - 224 448 l 2 -EndSplineSet -Validated: 524289 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" m o u s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" M o u s e -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 54" M O U S E -EndChar - -StartChar: record-vinyl -Encoding: 63705 63705 1026 -Width: 512 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -SplineSet -256 296 m 0 - 313.408203125 296 360 249.408203125 360 192 c 0 - 360 134.591796875 313.408203125 88 256 88 c 0 - 198.591796875 88 152 134.591796875 152 192 c 0 - 152 249.408203125 198.591796875 296 256 296 c 0 -256 168 m 0 - 269.248046875 168 280 178.751953125 280 192 c 0 - 280 205.248046875 269.248046875 216 256 216 c 0 - 242.751953125 216 232 205.248046875 232 192 c 0 - 232 178.751953125 242.751953125 168 256 168 c 0 -256 440 m 0 - 393 440 504 329 504 192 c 0 - 504 55 393 -56 256 -56 c 0 - 119 -56 8 55 8 192 c 0 - 8 329 119 440 256 440 c 0 -256 64 m 0 - 326.65625 64 384 121.34375 384 192 c 0 - 384 262.65625 326.65625 320 256 320 c 0 - 185.34375 320 128 262.65625 128 192 c 0 - 128 121.34375 185.34375 64 256 64 c 0 -EndSplineSet -Validated: 524801 -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" r e c o r d hyphen v i n y l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" R e c o r d hyphen V i n y l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" R e c o r d hyphen v i n y l -Ligature2: "'liga' Standard Ligatures in Latin lookup 0 per glyph data 32" R E C O R D hyphen V I N Y L -EndChar - -StartChar: uni0001 -Encoding: 1 1 1027 -Width: 512 -VWidth: 0 -HStem: 0 48<237.167 338.834> 96.4404 111.56<219.815 314.661> 336 48<236.191 339.809> -VStem: 0.000976562 143.999<167.051 216.942> 272 112.006<165.785 260.185> 432 143.999<167.595 216.418> -LayerCount: 2 -Fore -SplineSet -572.51953125 206.599609375 m 0 - 574.440429688 202.80078125 575.999023438 196.26171875 575.999023438 192.004882812 c 0 - 575.999023438 187.748046875 574.440429688 181.208984375 572.51953125 177.41015625 c 0 - 518.3203125 71.6396484375 410.9296875 0 288 0 c 0 - 165.0703125 0 57.7099609375 71.58984375 3.48046875 177.400390625 c 0 - 1.5595703125 181.19921875 0.0009765625 187.73828125 0.0009765625 191.995117188 c 0 - 0.0009765625 196.251953125 1.5595703125 202.791015625 3.48046875 206.58984375 c 0 - 57.6796875 312.360351562 165.0703125 384 288 384 c 0 - 410.9296875 384 518.290039062 312.41015625 572.51953125 206.599609375 c 0 -288 48 m 0 - 288.01953125 48 288.05078125 48 288.0703125 48 c 0 - 367.51953125 48 432 112.48046875 432 191.9296875 c 0 - 432 191.94921875 432 191.98046875 432 192 c 0 - 432 271.48828125 367.48828125 336 288 336 c 0 - 208.51171875 336 144 271.48828125 144 192 c 0 - 144 112.51171875 208.51171875 48 288 48 c 0 -288 288 m 0 - 288.0625 288 288.163085938 288 288.225585938 288 c 0 - 341.095703125 288 384.005859375 245.090820312 384.005859375 192.220703125 c 0 - 384.005859375 139.349609375 341.095703125 96.4404296875 288.225585938 96.4404296875 c 0 - 235.354492188 96.4404296875 192.4453125 139.349609375 192.4453125 192.220703125 c 0 - 192.4453125 199.268554688 193.943359375 210.5078125 195.790039062 217.309570312 c 1 - 202.7734375 212.170898438 215.479492188 208 224.150390625 208 c 0 - 250.563476562 208 272 229.436523438 272 255.849609375 c 0 - 272 264.520507812 267.829101562 277.2265625 262.690429688 284.209960938 c 1 - 269.534179688 286.202148438 280.873046875 287.900390625 288 288 c 0 -EndSplineSet -Validated: 524289 -EndChar - -StartChar: uni0002 -Encoding: 2 2 1028 -Width: 512 -VWidth: 0 -HStem: 0 48<267.817 354.481> 336 48<269.352 370.833> -VStem: 304 112.008<192.632 260.314> 464 143.999<164.614 216.418> -LayerCount: 2 -Fore -SplineSet -320 48 m 0 - 327.241210938 48.0673828125 338.889648438 49.236328125 346 50.6103515625 c 1 - 397.889648438 10.4599609375 l 1 - 372.870117188 4 346.91015625 0 320 0 c 0 - 197.0703125 0 89.7099609375 71.58984375 35.48046875 177.400390625 c 0 - 33.5595703125 181.19921875 32.0009765625 187.73828125 32.0009765625 191.995117188 c 0 - 32.0009765625 196.251953125 33.5595703125 202.791015625 35.48046875 206.58984375 c 0 - 45.7197265625 226.58984375 58.41015625 244.879882812 72.2001953125 262.1796875 c 1 - 177.099609375 181.110351562 l 1 - 182.75 106.709960938 244.150390625 48 320 48 c 0 -633.8203125 -10.099609375 m 2 - 637.233398438 -12.751953125 640.00390625 -18.412109375 640.00390625 -22.7353515625 c 0 - 640.00390625 -25.7626953125 638.497070312 -30.1591796875 636.639648438 -32.5498046875 c 2 - 617 -57.8203125 l 2 - 614.34765625 -61.232421875 608.688476562 -64.0029296875 604.366210938 -64.0029296875 c 0 - 601.334960938 -64.0029296875 596.932617188 -62.4912109375 594.540039062 -60.6298828125 c 2 - 6.1796875 394.099609375 l 2 - 2.76953125 396.751953125 0.001953125 402.41015625 0.001953125 406.73046875 c 0 - 0.001953125 409.759765625 1.5107421875 414.158203125 3.3701171875 416.549804688 c 2 - 23 441.8203125 l 2 - 25.65234375 445.232421875 31.3115234375 448.002929688 35.6337890625 448.002929688 c 0 - 38.6650390625 448.002929688 43.0673828125 446.491210938 45.4599609375 444.629882812 c 2 - 172.6796875 346.299804688 l 1 - 210.69140625 367.057617188 276.690429688 383.947265625 320 384 c 0 - 442.9296875 384 550.290039062 312.41015625 604.51953125 206.599609375 c 0 - 606.440429688 202.80078125 607.999023438 196.26171875 607.999023438 192.004882812 c 0 - 607.999023438 187.748046875 606.440429688 181.208984375 604.51953125 177.41015625 c 0 - 587.752929688 144.734375 551.353515625 99.0068359375 523.26953125 75.33984375 c 1 - 633.8203125 -10.099609375 l 2 -450.099609375 131.900390625 m 1 - 450.099609375 131.889648438 l 1 - 458.709960938 150.209960938 464 170.370117188 464 192 c 0 - 464 192.022460938 464 192.057617188 464 192.080078125 c 0 - 464 271.5234375 399.5234375 336 320.080078125 336 c 0 - 320.057617188 336 320.022460938 336 320 336 c 0 - 291.530273438 335.978515625 250.6953125 321.145507812 228.849609375 302.889648438 c 1 - 302.459960938 246 l 2 - 303.186523438 248.713867188 303.875976562 253.193359375 304 256 c 0 - 303.984375 264.62890625 299.813476562 277.266601562 294.690429688 284.209960938 c 1 - 301.870117188 286.306640625 313.768554688 288.0078125 321.248046875 288.0078125 c 0 - 373.555664062 288.0078125 416.0078125 245.555664062 416.0078125 193.248046875 c 0 - 416.0078125 192.903320312 416.004882812 192.344726562 416 192 c 0 - 415.887695312 183.565429688 413.557617188 170.250976562 410.799804688 162.280273438 c 1 - 450.099609375 131.900390625 l 1 -EndSplineSet -Validated: 524293 -EndChar -EndChars -EndSplineFont diff --git a/shared/fonts/FontAwesomeCutsom.otf b/shared/fonts/FontAwesomeCutsom.otf deleted file mode 100644 index 277a746..0000000 Binary files a/shared/fonts/FontAwesomeCutsom.otf and /dev/null differ diff --git a/shared/fonts/fontawesome-old.otf b/shared/fonts/fontawesome-old.otf deleted file mode 100644 index d6f609f..0000000 Binary files a/shared/fonts/fontawesome-old.otf and /dev/null differ diff --git a/shared/fonts/fontawesome-webfont.ttf b/shared/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 16d4469..0000000 Binary files a/shared/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/shared/fonts/fontawesome.otf b/shared/fonts/fontawesome.otf deleted file mode 100644 index 1c92a06..0000000 Binary files a/shared/fonts/fontawesome.otf and /dev/null differ diff --git a/shared/fonts/fontawesome5.11.2.otf b/shared/fonts/fontawesome5.11.2.otf deleted file mode 100644 index 536ce7f..0000000 Binary files a/shared/fonts/fontawesome5.11.2.otf and /dev/null differ diff --git a/shared/graphics/Icon Big.png b/shared/graphics/Icon Big.png deleted file mode 100644 index b5aa3a6..0000000 Binary files a/shared/graphics/Icon Big.png and /dev/null differ diff --git a/shared/graphics/Splashscreen.png b/shared/graphics/Splashscreen.png deleted file mode 100644 index 67493a7..0000000 Binary files a/shared/graphics/Splashscreen.png and /dev/null differ diff --git a/shared/graphics/Splashscreen.xcf b/shared/graphics/Splashscreen.xcf deleted file mode 100644 index 0a3e696..0000000 Binary files a/shared/graphics/Splashscreen.xcf and /dev/null differ diff --git a/shared/graphics/favicon.icns b/shared/graphics/favicon.icns deleted file mode 100644 index 94bb507..0000000 Binary files a/shared/graphics/favicon.icns and /dev/null differ diff --git a/shared/graphics/favicon.ico b/shared/graphics/favicon.ico deleted file mode 100644 index ae30f13..0000000 Binary files a/shared/graphics/favicon.ico and /dev/null differ diff --git a/shared/graphics/images/FannyIcon.png b/shared/graphics/images/FannyIcon.png deleted file mode 100644 index ac69062..0000000 Binary files a/shared/graphics/images/FannyIcon.png and /dev/null differ diff --git a/shared/icons/back.png b/shared/icons/back.png deleted file mode 100644 index d1740cd..0000000 Binary files a/shared/icons/back.png and /dev/null differ diff --git a/shared/icons/backDark.png b/shared/icons/backDark.png deleted file mode 100644 index c55ab31..0000000 Binary files a/shared/icons/backDark.png and /dev/null differ diff --git a/shared/icons/hide.png b/shared/icons/hide.png deleted file mode 100644 index a883831..0000000 Binary files a/shared/icons/hide.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/back.png b/shared/icons/ibmaterial/20x20/back.png deleted file mode 100644 index db43e27..0000000 Binary files a/shared/icons/ibmaterial/20x20/back.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/bookmark.png b/shared/icons/ibmaterial/20x20/bookmark.png deleted file mode 100644 index c01e7bf..0000000 Binary files a/shared/icons/ibmaterial/20x20/bookmark.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/bookmarkFilled.png b/shared/icons/ibmaterial/20x20/bookmarkFilled.png deleted file mode 100644 index db854f9..0000000 Binary files a/shared/icons/ibmaterial/20x20/bookmarkFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/buy.png b/shared/icons/ibmaterial/20x20/buy.png deleted file mode 100644 index 9f9c09f..0000000 Binary files a/shared/icons/ibmaterial/20x20/buy.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/calendar.png b/shared/icons/ibmaterial/20x20/calendar.png deleted file mode 100644 index 61cc427..0000000 Binary files a/shared/icons/ibmaterial/20x20/calendar.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/cup.png b/shared/icons/ibmaterial/20x20/cup.png deleted file mode 100644 index d52dbd1..0000000 Binary files a/shared/icons/ibmaterial/20x20/cup.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/delete.png b/shared/icons/ibmaterial/20x20/delete.png deleted file mode 100644 index 2f12d05..0000000 Binary files a/shared/icons/ibmaterial/20x20/delete.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/drawer.png b/shared/icons/ibmaterial/20x20/drawer.png deleted file mode 100644 index 1e974ef..0000000 Binary files a/shared/icons/ibmaterial/20x20/drawer.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/filter.png b/shared/icons/ibmaterial/20x20/filter.png deleted file mode 100644 index bcc1e8a..0000000 Binary files a/shared/icons/ibmaterial/20x20/filter.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/flowchart.png b/shared/icons/ibmaterial/20x20/flowchart.png deleted file mode 100644 index 6469b0a..0000000 Binary files a/shared/icons/ibmaterial/20x20/flowchart.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/hide.png b/shared/icons/ibmaterial/20x20/hide.png deleted file mode 100644 index 40f8ea3..0000000 Binary files a/shared/icons/ibmaterial/20x20/hide.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/menu.png b/shared/icons/ibmaterial/20x20/menu.png deleted file mode 100644 index a10473d..0000000 Binary files a/shared/icons/ibmaterial/20x20/menu.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/pdf.png b/shared/icons/ibmaterial/20x20/pdf.png deleted file mode 100644 index 58f27dd..0000000 Binary files a/shared/icons/ibmaterial/20x20/pdf.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/pin.png b/shared/icons/ibmaterial/20x20/pin.png deleted file mode 100644 index 9908baf..0000000 Binary files a/shared/icons/ibmaterial/20x20/pin.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/pinFilled.png b/shared/icons/ibmaterial/20x20/pinFilled.png deleted file mode 100644 index fe79afb..0000000 Binary files a/shared/icons/ibmaterial/20x20/pinFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/star.png b/shared/icons/ibmaterial/20x20/star.png deleted file mode 100644 index 55d76f3..0000000 Binary files a/shared/icons/ibmaterial/20x20/star.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/starFilled.png b/shared/icons/ibmaterial/20x20/starFilled.png deleted file mode 100644 index 78aec7c..0000000 Binary files a/shared/icons/ibmaterial/20x20/starFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/view.png b/shared/icons/ibmaterial/20x20/view.png deleted file mode 100644 index 49b4675..0000000 Binary files a/shared/icons/ibmaterial/20x20/view.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20/year.png b/shared/icons/ibmaterial/20x20/year.png deleted file mode 100644 index 26f4edc..0000000 Binary files a/shared/icons/ibmaterial/20x20/year.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/back.png b/shared/icons/ibmaterial/20x20@2/back.png deleted file mode 100644 index c55ab31..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/back.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/bookmark.png b/shared/icons/ibmaterial/20x20@2/bookmark.png deleted file mode 100644 index 47d18cb..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/bookmark.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/bookmarkFilled.png b/shared/icons/ibmaterial/20x20@2/bookmarkFilled.png deleted file mode 100644 index 1dcf9d4..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/bookmarkFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/buy.png b/shared/icons/ibmaterial/20x20@2/buy.png deleted file mode 100644 index 2ae229d..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/buy.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/calendar.png b/shared/icons/ibmaterial/20x20@2/calendar.png deleted file mode 100644 index 53fe9b1..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/calendar.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/cup.png b/shared/icons/ibmaterial/20x20@2/cup.png deleted file mode 100644 index b66aa2f..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/cup.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/delete.png b/shared/icons/ibmaterial/20x20@2/delete.png deleted file mode 100644 index c56ab44..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/delete.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/drawer.png b/shared/icons/ibmaterial/20x20@2/drawer.png deleted file mode 100644 index eba3b6c..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/drawer.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/filter.png b/shared/icons/ibmaterial/20x20@2/filter.png deleted file mode 100644 index 1f88edc..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/filter.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/flowchart.png b/shared/icons/ibmaterial/20x20@2/flowchart.png deleted file mode 100644 index c87cc2e..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/flowchart.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/hide.png b/shared/icons/ibmaterial/20x20@2/hide.png deleted file mode 100644 index bddb3ff..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/hide.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/menu.png b/shared/icons/ibmaterial/20x20@2/menu.png deleted file mode 100644 index 649c2a0..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/menu.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/pdf.png b/shared/icons/ibmaterial/20x20@2/pdf.png deleted file mode 100644 index 41413d7..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/pdf.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/pin.png b/shared/icons/ibmaterial/20x20@2/pin.png deleted file mode 100644 index 0af60ed..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/pin.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/pinFilled.png b/shared/icons/ibmaterial/20x20@2/pinFilled.png deleted file mode 100644 index 8c3b904..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/pinFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/star.png b/shared/icons/ibmaterial/20x20@2/star.png deleted file mode 100644 index 4104d59..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/star.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/starFilled.png b/shared/icons/ibmaterial/20x20@2/starFilled.png deleted file mode 100644 index 4ff5390..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/starFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/view.png b/shared/icons/ibmaterial/20x20@2/view.png deleted file mode 100644 index 1b56756..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/view.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@2/year.png b/shared/icons/ibmaterial/20x20@2/year.png deleted file mode 100644 index 980d2ee..0000000 Binary files a/shared/icons/ibmaterial/20x20@2/year.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/back.png b/shared/icons/ibmaterial/20x20@3/back.png deleted file mode 100644 index b228eb8..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/back.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/bookmark.png b/shared/icons/ibmaterial/20x20@3/bookmark.png deleted file mode 100644 index ca812b1..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/bookmark.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/bookmarkFilled.png b/shared/icons/ibmaterial/20x20@3/bookmarkFilled.png deleted file mode 100644 index 0dfcd81..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/bookmarkFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/buy.png b/shared/icons/ibmaterial/20x20@3/buy.png deleted file mode 100644 index a34fe40..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/buy.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/calendar.png b/shared/icons/ibmaterial/20x20@3/calendar.png deleted file mode 100644 index 434503c..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/calendar.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/cup.png b/shared/icons/ibmaterial/20x20@3/cup.png deleted file mode 100644 index 9ad32ba..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/cup.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/delete.png b/shared/icons/ibmaterial/20x20@3/delete.png deleted file mode 100644 index efedccd..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/delete.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/drawer.png b/shared/icons/ibmaterial/20x20@3/drawer.png deleted file mode 100644 index 3584ed6..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/drawer.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/filter.png b/shared/icons/ibmaterial/20x20@3/filter.png deleted file mode 100644 index b457f02..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/filter.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/flowchart.png b/shared/icons/ibmaterial/20x20@3/flowchart.png deleted file mode 100644 index 98bd45f..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/flowchart.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/hide.png b/shared/icons/ibmaterial/20x20@3/hide.png deleted file mode 100644 index 30d44e2..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/hide.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/menu.png b/shared/icons/ibmaterial/20x20@3/menu.png deleted file mode 100644 index 9554b69..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/menu.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/pdf.png b/shared/icons/ibmaterial/20x20@3/pdf.png deleted file mode 100644 index 294e3ee..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/pdf.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/pin.png b/shared/icons/ibmaterial/20x20@3/pin.png deleted file mode 100644 index 306add5..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/pin.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/pinFilled.png b/shared/icons/ibmaterial/20x20@3/pinFilled.png deleted file mode 100644 index c7eac9c..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/pinFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/star.png b/shared/icons/ibmaterial/20x20@3/star.png deleted file mode 100644 index 0b03be1..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/star.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/starFilled.png b/shared/icons/ibmaterial/20x20@3/starFilled.png deleted file mode 100644 index 3984352..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/starFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/view.png b/shared/icons/ibmaterial/20x20@3/view.png deleted file mode 100644 index 359fbe9..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/view.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@3/year.png b/shared/icons/ibmaterial/20x20@3/year.png deleted file mode 100644 index 5c2eb8f..0000000 Binary files a/shared/icons/ibmaterial/20x20@3/year.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/back.png b/shared/icons/ibmaterial/20x20@4/back.png deleted file mode 100644 index dd157e7..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/back.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/bookmark.png b/shared/icons/ibmaterial/20x20@4/bookmark.png deleted file mode 100644 index c82e389..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/bookmark.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/bookmarkFilled.png b/shared/icons/ibmaterial/20x20@4/bookmarkFilled.png deleted file mode 100644 index a021439..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/bookmarkFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/buy.png b/shared/icons/ibmaterial/20x20@4/buy.png deleted file mode 100644 index ef6c793..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/buy.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/calendar.png b/shared/icons/ibmaterial/20x20@4/calendar.png deleted file mode 100644 index d799f8c..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/calendar.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/cup.png b/shared/icons/ibmaterial/20x20@4/cup.png deleted file mode 100644 index 4baaf9a..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/cup.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/delete.png b/shared/icons/ibmaterial/20x20@4/delete.png deleted file mode 100644 index 3a0da9f..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/delete.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/drawer.png b/shared/icons/ibmaterial/20x20@4/drawer.png deleted file mode 100644 index 60d93af..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/drawer.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/filter.png b/shared/icons/ibmaterial/20x20@4/filter.png deleted file mode 100644 index 891fcae..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/filter.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/flowchart.png b/shared/icons/ibmaterial/20x20@4/flowchart.png deleted file mode 100644 index dc859de..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/flowchart.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/hide.png b/shared/icons/ibmaterial/20x20@4/hide.png deleted file mode 100644 index 6cbf744..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/hide.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/menu.png b/shared/icons/ibmaterial/20x20@4/menu.png deleted file mode 100644 index 187c171..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/menu.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/pdf.png b/shared/icons/ibmaterial/20x20@4/pdf.png deleted file mode 100644 index 1451375..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/pdf.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/pin.png b/shared/icons/ibmaterial/20x20@4/pin.png deleted file mode 100644 index e193f91..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/pin.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/pinFilled.png b/shared/icons/ibmaterial/20x20@4/pinFilled.png deleted file mode 100644 index f92d9a9..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/pinFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/star.png b/shared/icons/ibmaterial/20x20@4/star.png deleted file mode 100644 index cd38f03..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/star.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/starFilled.png b/shared/icons/ibmaterial/20x20@4/starFilled.png deleted file mode 100644 index 7895700..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/starFilled.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/view.png b/shared/icons/ibmaterial/20x20@4/view.png deleted file mode 100644 index cd9114b..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/view.png and /dev/null differ diff --git a/shared/icons/ibmaterial/20x20@4/year.png b/shared/icons/ibmaterial/20x20@4/year.png deleted file mode 100644 index bc9ab79..0000000 Binary files a/shared/icons/ibmaterial/20x20@4/year.png and /dev/null differ diff --git a/shared/icons/ibmaterial/index.theme b/shared/icons/ibmaterial/index.theme deleted file mode 100644 index d24991d..0000000 --- a/shared/icons/ibmaterial/index.theme +++ /dev/null @@ -1,24 +0,0 @@ -[Icon Theme] -Name=ibmaterial -Comment=some material icons - -Directories=20x20,20x20@2,20x20@3,20x20@4 - -[20x20] -Size=20 -Type=Fixed - -[20x20@2] -Size=20 -Scale=2 -Type=Fixed - -[20x20@3] -Size=20 -Scale=3 -Type=Fixed - -[20x20@4] -Size=20 -Scale=4 -Type=Fixed diff --git a/shared/icons/view.png b/shared/icons/view.png deleted file mode 100644 index ab0b45d..0000000 Binary files a/shared/icons/view.png and /dev/null differ diff --git a/shared/sampleEventData/convert.sh b/shared/sampleEventData/convert.sh deleted file mode 100755 index 16fb8f0..0000000 --- a/shared/sampleEventData/convert.sh +++ /dev/null @@ -1 +0,0 @@ -pdftotext Download\ File.pdf -layout -y 130 -H 1000 -W 1000 -nopgbrk diff --git a/shared/sampleEventData/sample.json b/shared/sampleEventData/sample.json deleted file mode 100644 index ebca016..0000000 --- a/shared/sampleEventData/sample.json +++ /dev/null @@ -1 +0,0 @@ -{"result":200,"version":"0.01.14","targetDate":"Klasse 21.1. / Montag Woche-A","stewardingClass":"Ordnungsdienst: Klasse 5a","additionalHeaderData":[],"events":[["Kl.","Std.","Vertr.","Fach","Rau","nach","Vertretungs-Text"],["5a","1","Hl","E","---","Mi-23.1. / 2",""],["5a","5","Ni","BK","126","",""],["5b","3-4","Sg","E","114","",""],["6c","5","Gg","G","121","He / Aufgaben",""],["6d","1","Gw","D","---","Entfall",""],["6d","2","Ki","D","210","Mc / Aufgaben",""],["7b","1-2","Tri","E","414","",""],["7bd","8-9","Rs","inf","---","Entfall",""],["7c","8-9","Klr","Bio","415","Raum!",""],["8b","10","Tri","G","312","",""],["8b","11","He","Gk","323","",""],["9c","3-4","An","E","220","Entfall fu00fcr Lehrer",""],["11","3-4","Tb","D4","313","Entfall fu00fcr Lehrer",""],["11","6","Bz","410","Schule trifft Beruf","",""]],"rawHeader":["D-70563 FANNY-LEICHT-GYMN. Schuljahr 2018/19 - 2. Halbjahr Untis 2017","STUTTGART, F.-LEICHT-STR. 13 gu00fcltig ab 04. Februar 2019 18.1.2019 17:50","Klasse 21.1. / Montag Woche-A","Ordnungsdienst: Klasse 5a"],"rawData":["Kl. Std. Vertr. Fach Rau nach Vertretungs-Text","5a 1 Hl E --- Mi-23.1. / 2","5a 5 Ni BK 126","5b 3-4 Sg E 114","6c 5 Gg G 121 He / Aufgaben","6d 1 Gw D --- Entfall","6d 2 Ki D 210 Mc / Aufgaben","7b 1-2 Tri E 414","7bd 8-9 Rs inf --- Entfall","7c 8-9 Klr Bio 415 Raum!","8b 10 Tri G 312","8b 11 He Gk 323","9c 3-4 An E 220 Entfall fu00fcr Lehrer","11 3-4 Tb D4 313 Entfall fu00fcr Lehrer","11 6 Bz 410 Schule trifft Beruf"]} diff --git a/shared/sampleEventData/sample.pdf b/shared/sampleEventData/sample.pdf deleted file mode 100644 index c672d38..0000000 Binary files a/shared/sampleEventData/sample.pdf and /dev/null differ diff --git a/shared/sampleEventData/sample.txt b/shared/sampleEventData/sample.txt deleted file mode 100644 index 181f713..0000000 --- a/shared/sampleEventData/sample.txt +++ /dev/null @@ -1,82 +0,0 @@ -D-70563 FANNY-LEICHT-GYMN. Schuljahr 2018/19 - 1. Halbjahr Untis 2017 -STUTTGART, F.-LEICHT-STR. 13 gültig ab 10. September 2018 13.12.2018 9:04 - -Klasse 13.12. / Donnerstag Woche-A -Ordnungsdienst: Klasse 10a - - -Kl. Std. Vertr. Fach Rau nach Vertretungs-Text -5b 1 Hei D --- Entfall -5b 2 Fu D 114 Hei / Aufgaben, Arbeitsheft! -5b 3 Oe M 114 Ei / Aufgaben -5b 4 Rm M 114 Ei / Aufgaben -6bc 5 Sf EvR 321 Bü / Aufgaben -6bc 5 Dk KR 121 We / Aufgaben -6bc 6 Bü EvR --- Entfall -6bc 6 We KR --- Entfall -6d 6 Ku Ek --- Entfall -7b 2 Ga G 414 KA Fkr -7b 8 Gg BK --- Mi-12.12. / 1 -7b 9 Gg BK --- Mi-12.12. / 2 -7c 8-9 Gw G --- Entfall -7d 1 Ku D --- Entfall -7d 2 Oz D 416 Ku / Aufgaben -8a 1-2 Ei Ch --- Entfall KEINE KA -D-70563 FANNY-LEICHT-GYMN. Schuljahr 2018/19 - 1. Halbjahr Untis 2017 -STUTTGART, F.-LEICHT-STR. 13 gültig ab 10. September 2018 13.12.2018 9:04 - -Klasse 13.12. / Donnerstag Woche-A -Ordnungsdienst: Klasse 10a - - -Kl. Std. Vertr. Fach Rau nach Vertretungs-Text -9ac 8-9 Lk SpJ --- Entfall -9c 1-2 Jw Gk 322 Raum! -9c 3 Hf D 220 Hei / Aufgaben -9c 4 Bkn D 220 Hei / Aufgaben -9d 1 Rt Gk --- Do-13.12. / 3 -9d 2 Rt Gk --- Do-13.12. / 4 -9d 3 Rt Gk 218 -9d 4 Rt Gk 218 -9d 5 Ni BK 126 -9d 6 Ni BK 126 -9d 8 Ni BK --- Do-13.12. / 5 -9d 9 Ni BK --- Do-13.12. / 6 -10b 10 - 11 Fe Ph --- Entfall -11 3-4 Ft g4 --- Entfall -11 5 Ei M1 --- Entfall -11 7 Gt sem1 324 geteilte Gruppen Schwimmen / -11 8-9 Ro sem1 ??? -11 10 - 11 Lk sp3 --- Entfall -12 1-2 Ni bk1 412 Raum! -12 5 Ku D2 --- Entfall -1112 8-9 Fe vma --- Entfall -D-70563 FANNY-LEICHT-GYMN. Schuljahr 2018/19 - 1. Halbjahr Untis 2017 -STUTTGART, F.-LEICHT-STR. 13 gültig ab 10. September 2018 13.12.2018 9:04 - -Klasse 13.12. / Donnerstag Woche-A -Ordnungsdienst: Klasse 10a - - -Kl. Std. Vertr. Fach Rau nach Vertretungs-Text -12ac 8-9 Lk SpJ --- Entfall -13c 1-2 Jw Gk 322 Raum! -13c 3 Hf D 220 Hei / Aufgaben -913c 4 Bkn D 220 Hei / Aufgaben -913d 1 Rt Gk --- Do-13.12. / 3 -13d 2 Rt Gk --- Do-13.12. / 4 -92d 3 Rt Gk 218 -91d 4 Rt Gk 218 -92d 5 Ni BK 126 -91d 6 Ni BK 126 -91d 8 Ni BK --- Do-13.12. / 5 -91d 9 Ni BK --- Do-13.12. / 6 -130b 10 - 11 Fe Ph --- Entfall -131 3-4 Ft g4 --- Entfall -131 5 Ei M1 --- Entfall -131 7 Gt sem1 324 geteilte Gruppen Schwimmen / -131 8-9 Ro sem1 ??? -131 10 - 11 Lk sp3 --- Entfall -123 1-2 Ni bk1 412 Raum! -122 5 Ku D2 --- Entfall -11132 8-9 Fe vma --- Entfall diff --git a/shared/shared.qrc b/shared/shared.qrc deleted file mode 100644 index 7b4e1ba..0000000 --- a/shared/shared.qrc +++ /dev/null @@ -1,107 +0,0 @@ - - - graphics/images/FannyLogoDark.jpg - graphics/images/FannyLogoLight.png - graphics/images/TreffpunktFannyLogoDark.png - graphics/images/TreffpunktFannyLogoLight.png - sampleEventData/sample.pdf - sampleEventData/sample.txt - sampleEventData/sample.json - fonts/fontawesome-webfont.ttf - graphics/images/FannyIcon.png - icons/ibmaterial/20x20/back.png - icons/ibmaterial/20x20/bookmark.png - icons/ibmaterial/20x20/bookmarkFilled.png - icons/ibmaterial/20x20/buy.png - icons/ibmaterial/20x20/calendar.png - icons/ibmaterial/20x20/cup.png - icons/ibmaterial/20x20/drawer.png - icons/ibmaterial/20x20/filter.png - icons/ibmaterial/20x20/flowchart.png - icons/ibmaterial/20x20/menu.png - icons/ibmaterial/20x20/pin.png - icons/ibmaterial/20x20/pinFilled.png - icons/ibmaterial/20x20/star.png - icons/ibmaterial/20x20/starFilled.png - icons/ibmaterial/20x20/year.png - icons/ibmaterial/20x20@2/back.png - icons/ibmaterial/20x20@2/bookmark.png - icons/ibmaterial/20x20@2/bookmarkFilled.png - icons/ibmaterial/20x20@2/buy.png - icons/ibmaterial/20x20@2/calendar.png - icons/ibmaterial/20x20@2/cup.png - icons/ibmaterial/20x20@2/drawer.png - icons/ibmaterial/20x20@2/filter.png - icons/ibmaterial/20x20@2/flowchart.png - icons/ibmaterial/20x20@2/menu.png - icons/ibmaterial/20x20@2/pin.png - icons/ibmaterial/20x20@2/pinFilled.png - icons/ibmaterial/20x20@2/star.png - icons/ibmaterial/20x20@2/starFilled.png - icons/ibmaterial/20x20@2/year.png - icons/ibmaterial/20x20@3/back.png - icons/ibmaterial/20x20@3/bookmark.png - icons/ibmaterial/20x20@3/bookmarkFilled.png - icons/ibmaterial/20x20@3/buy.png - icons/ibmaterial/20x20@3/calendar.png - icons/ibmaterial/20x20@3/cup.png - icons/ibmaterial/20x20@3/drawer.png - icons/ibmaterial/20x20@3/filter.png - icons/ibmaterial/20x20@3/flowchart.png - icons/ibmaterial/20x20@3/menu.png - icons/ibmaterial/20x20@3/pin.png - icons/ibmaterial/20x20@3/pinFilled.png - icons/ibmaterial/20x20@3/star.png - icons/ibmaterial/20x20@3/starFilled.png - icons/ibmaterial/20x20@3/year.png - icons/ibmaterial/20x20@4/back.png - icons/ibmaterial/20x20@4/bookmark.png - icons/ibmaterial/20x20@4/bookmarkFilled.png - icons/ibmaterial/20x20@4/buy.png - icons/ibmaterial/20x20@4/calendar.png - icons/ibmaterial/20x20@4/cup.png - icons/ibmaterial/20x20@4/drawer.png - icons/ibmaterial/20x20@4/filter.png - icons/ibmaterial/20x20@4/flowchart.png - icons/ibmaterial/20x20@4/menu.png - icons/ibmaterial/20x20@4/pin.png - icons/ibmaterial/20x20@4/pinFilled.png - icons/ibmaterial/20x20@4/star.png - icons/ibmaterial/20x20@4/starFilled.png - icons/ibmaterial/20x20@4/year.png - icons/ibmaterial/index.theme - icons/back.png - icons/backDark.png - icons/hide.png - icons/logoutBlack.png - icons/logoutRed.png - icons/settings.png - icons/settingsBlack.png - icons/sheute.png - icons/smorgen.png - icons/TreffpunktFannyLogo.png - icons/view.png - icons/ibmaterial/20x20/delete.png - icons/ibmaterial/20x20@2/delete.png - icons/ibmaterial/20x20@3/delete.png - icons/ibmaterial/20x20@4/delete.png - icons/ibmaterial/20x20/pdf.png - icons/ibmaterial/20x20@2/pdf.png - icons/ibmaterial/20x20@3/pdf.png - icons/ibmaterial/20x20@4/pdf.png - graphics/Splashscreen.png - icons/ibmaterial/20x20/hide.png - icons/ibmaterial/20x20/view.png - icons/ibmaterial/20x20@2/hide.png - icons/ibmaterial/20x20@2/view.png - icons/ibmaterial/20x20@3/hide.png - icons/ibmaterial/20x20@3/view.png - icons/ibmaterial/20x20@4/hide.png - icons/ibmaterial/20x20@4/view.png - fonts/fontawesome.otf - graphics/Icon Big square.png - graphics/favicon.png - fonts/FontAwesomeCutsom.otf - fonts/IconFont.otf - - diff --git a/sources/appstyle.cpp b/sources/appstyle.cpp index 4607ffe..03950e3 100644 --- a/sources/appstyle.cpp +++ b/sources/appstyle.cpp @@ -27,10 +27,9 @@ AppStyle::AppStyle(QObject *parent) : QObject(parent) {"lineColor", "grey"}, - {"backIcon", "qrc:/icons/back.png"}, {"settingsIcon", "qrc:/icons/settings.png"}, - {"treffpunktFannyIcon", "qrc:/graphics/images/TreffpunktFannyLogoLight.png"}, - {"fannyLogo", "qrc:/graphics/images/FannyLogoLight.png"}, + {"treffpunktFannyIcon", "qrc:/icons/TreffpunktFannyLogoLight.png"}, + {"fannyLogo", "qrc:/icons/FannyLogoLight.png"}, {"nameMaterialStyle", "Dark"} @@ -62,10 +61,9 @@ AppStyle::AppStyle(QObject *parent) : QObject(parent) {"lineColor", "grey"}, - {"backIcon", "qrc:/icons/backDark.png"}, {"settingsIcon", "qrc:/icons/settingsBlack.png"}, - {"treffpunktFannyIcon", "qrc:/graphics/images/TreffpunktFannyLogoDark.png"}, - {"fannyLogo", "qrc:/graphics/images/FannyLogoDark.jpg"} + {"treffpunktFannyIcon", "qrc:/icons/TreffpunktFannyLogoDark.png"}, + {"fannyLogo", "qrc:/icons/FannyLogoDark.jpg"} }; this->lightTheme = tmpLightTheme; diff --git a/sources/main.cpp b/sources/main.cpp index 9d60304..715bef4 100644 --- a/sources/main.cpp +++ b/sources/main.cpp @@ -23,7 +23,6 @@ #include #include -#include #include #include @@ -60,11 +59,6 @@ int main(int argc, char *argv[]) QQuickStyle::setStyle("Material"); -#if (QT_VERSION >= QT_VERSION_CHECK(5, 11, 0) ) - QIcon::setFallbackSearchPaths(QIcon::fallbackSearchPaths() << ":/shared/icons"); - QIcon::setThemeName("ibmaterial"); -#endif - QQmlApplicationEngine engine; QQmlContext *context = engine.rootContext(); @@ -75,13 +69,7 @@ int main(int argc, char *argv[]) #endif context->setContextProperty("_cppAppSettings", pAppSettings); - context->setContextProperty("QtCompatiblityMode", - #if (QT_VERSION >= QT_VERSION_CHECK(5, 11, 0) ) - false - #else - true - #endif - ); + engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); if (engine.rootObjects().isEmpty())