From 9accf00518fd76a2e5bdd230d305f7cd72e7bfe2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 03:34:43 +0000 Subject: [PATCH 01/14] Bump nokogiri from 1.14.3 to 1.16.2 in /docs Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.14.3 to 1.16.2. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.14.3...v1.16.2) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] --- docs/Gemfile.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index 16393e6..cdc4bd5 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -205,15 +205,15 @@ GEM rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.3.6) - mini_portile2 (2.8.1) + mini_portile2 (2.8.5) minima (2.5.1) jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) minitest (5.17.0) multipart-post (2.1.1) - nokogiri (1.14.3) - mini_portile2 (~> 2.8.0) + nokogiri (1.16.2) + mini_portile2 (~> 2.8.2) racc (~> 1.4) octokit (4.20.0) faraday (>= 0.9) @@ -221,7 +221,7 @@ GEM pathutil (0.16.2) forwardable-extended (~> 2.6) public_suffix (3.1.1) - racc (1.6.2) + racc (1.7.3) rb-fsevent (0.10.4) rb-inotify (0.10.1) ffi (~> 1.0) From 4443ee250b4a86da6daa5e90ce64067941134b06 Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Mon, 2 Sep 2024 11:02:59 -0400 Subject: [PATCH 02/14] Refactor build script Rewrite convert script in Python, which is a lot better than the fontforge script. Add a Bhatkhande build script, and use it in the general build process. Amend the build script to take the Bhatkhande base font, then layer in a language, then use it to generate .UFO and .TTF files. The intermediate .SFD files are deleted, so as not to cause any confusion. --- .gitignore | 1 + bhatkhande/build.py | 106 ++++++++++++++++++++++++++++++++++ bhatkhande/meta.py | 136 ++++++++++++++++++++++++++++++++++++++++++++ scripts/build | 38 +++++++++---- scripts/convert.pe | 24 -------- scripts/convert.py | 47 +++++++++++++++ 6 files changed, 317 insertions(+), 35 deletions(-) create mode 100755 bhatkhande/build.py create mode 100644 bhatkhande/meta.py delete mode 100755 scripts/convert.pe create mode 100755 scripts/convert.py diff --git a/.gitignore b/.gitignore index 3cdead1..f967b59 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ _site/ .jekyll-metadata .DS_Store dist/ +.pyc diff --git a/bhatkhande/build.py b/bhatkhande/build.py new file mode 100755 index 0000000..bff0014 --- /dev/null +++ b/bhatkhande/build.py @@ -0,0 +1,106 @@ +#!/usr/bin/python + +import argparse +import shutil +import fontforge +import os.path + +from meta import META + + +def replace_glyphs( + base_font_path, + replacement_font_path, + output_font_path, + output_name, + glyph_list): + # Copy base font to output + shutil.copy(base_font_path, output_font_path) + + # Open the output font and the font with replacement glyphs + output_font = fontforge.open(output_font_path) + replacement_font = fontforge.open(replacement_font_path) + + # Iterate over the glyph list + for glyph_name in glyph_list: + # Select the glyph in the replacement font + replacement_font.selection.select(glyph_name) + replacement_font.copy() # Copy the glyph + + # Select the glyph in the output font + output_font.selection.select(glyph_name) + output_font.paste() # Paste the glyph + + # Generate the output font + m = META[output_name] + lang = 'English (US)' + output_font.copyright = m['Copyright'] + output_font.appendSFNTName(lang, 'Copyright', m['Copyright']) + output_font.familyname = m['Family'] + output_font.appendSFNTName(lang, 'Family', m['Family']) + output_font.fullname = m['Family'] + output_font.appendSFNTName(lang, 'Fullname', m['Family']) + output_font.fontname = m['PostScriptName'] + output_font.appendSFNTName(lang, 'PostScriptName', m['PostScriptName']) + output_font.version = 'Version {} {}'.format( + m['Version'], + m['Date'] + ) + output_font.appendSFNTName(lang, 'Version', 'Version {} {}'.format( + m['Version'], + m['Date'] + )) + output_font.appendSFNTName(lang, 'Designer', m['Designer']) + output_font.appendSFNTName(lang, 'Designer URL', m['Designer URL']) + output_font.appendSFNTName(lang, 'Descriptor', m['Descriptor']) + output_font.appendSFNTName(lang, 'License', m['License']) + output_font.appendSFNTName(lang, 'Sample Text', m['Sample Text']) + output_font.appendSFNTName(lang, 'UniqueID', '{}:{}'.format( + m['PostScriptName'][:16], + m['Version'] + )) + + output_font.save(output_font_path) + print(output_font_path) + + +def main(): + parser = argparse.ArgumentParser( + description='Build Bhatkhande font for a given language' + ) + parser.add_argument('language', help='Name of the language to build') + + # Parse the command-line arguments + args = parser.parse_args() + lang = args.language.lower() + lang_C = lang.capitalize() + + # Check if language files exist where expected + lang_sfd = '{}/{}.sfd'.format(lang, lang_C) + if not os.path.exists(lang_sfd): + raise 'Could not find language file: {}'.format(lang_sfd) + + # Define the glyph list for replacement + glyph_list = [ + # Numerals + '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', + # Regular Notes + 's', 'r', 'g', 'm', 'p', 'd', 'n', + # Variant Notes + 'R', 'G', 'M', 'D', 'N', + # Strokes + '[', ']', ';', "'", '\\', + # Extras + 'quoteright', # Handles smartquote fallback + ] + + # Paths to base SFD file + base_sfd = 'base/OmeBhatkhandeBase.sfd' + output_sfd = '{}/OmeBhatkhande{}.sfd'.format(lang, lang_C) + + # Use the base font and the language font to generate an output font + replace_glyphs(base_sfd, lang_sfd, output_sfd, lang_C, glyph_list) + + +if __name__ == '__main__': + main() diff --git a/bhatkhande/meta.py b/bhatkhande/meta.py new file mode 100644 index 0000000..b58ed1c --- /dev/null +++ b/bhatkhande/meta.py @@ -0,0 +1,136 @@ +# -*- coding: utf-8 -*- + +BASE = { + 'Copyright': 'Omenad 2006-2024', + 'Family': 'Ome Bhatkhande Base', + 'PostScriptName': 'OmeBhatkhandeBase', + 'Version': 2.00, + 'Date': 'Sep 2, 2024', + 'Designer': 'Terence Tuhinanshu', + 'Designer URL': 'https://tuhinanshu.com', + 'Sample Text': "su sU ml mL `@DLr@gm qsUwWrUEMU [];'’\\ 1234567890", + 'Descriptor': 'For writing Indian Classical Music in Bhatkhande script', + 'License': """Copyright (c) 2024, Omenad (http://omenad.net), +with Reserved Font Name Ome Bhatkhande. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE.""" +} + +ENGLISH = BASE.copy() +ENGLISH.update({ + 'Family': 'Ome Bhatkhande English', + 'PostScriptName': 'OmeBhatkhandeEnglish', + 'Descriptor': 'For writing Indian Classical Music in Bhatkhande script using Roman characters', +}) + +HINDI = BASE.copy() +HINDI.update({ + 'Family': 'Ome Bhatkhande Hindi', + 'PostScriptName': 'OmeBhatkhandeHindi', + 'Descriptor': 'For writing Indian Classical Music in Bhatkhande script using Devanagari characters', +}) + +PUNJABI = BASE.copy() +PUNJABI.update({ + 'Copyright': '{}, Baljeet Singh'.format(BASE['Copyright']), + 'Family': 'Ome Bhatkhande Punjabi', + 'PostScriptName': 'OmeBhatkhandePunjabi', + 'Designer': '{}, Baljeet Singh'.format(BASE['Designer']), + 'Descriptor': 'For writing Indian Classical Music in Bhatkhande script using Gurmukhi characters', +}) + +META = { + 'English': ENGLISH, + 'Hindi': HINDI, + 'Punjabi': PUNJABI, +} diff --git a/scripts/build b/scripts/build index b006242..17e6c45 100755 --- a/scripts/build +++ b/scripts/build @@ -2,17 +2,33 @@ set -e -FONTS=$(find . -type f -name *.sfd | xargs) - -docker run --rm -v $PWD:/home/fontdev sungsit/fontforge \ - "/bin/bash" "-c" \ - "./scripts/convert.pe --format ttf --output ttf/ $FONTS" - -for FONT in $FONTS +# Build Ome Bhatkhande fonts for each language +for LANG in hindi english punjabi do - OUTPUT=$(dirname $FONT) - docker run --rm -v $PWD:/home/fontdev sungsit/fontforge \ - "/bin/bash" "-c" \ - "./scripts/convert.pe --format ufo --output $OUTPUT/ $FONT" + "/bin/sh" "-c" \ + "cd bhatkhande && \ + ./build.py $LANG && \ + cd .. && \ + ./scripts/convert.py \ + --format ttf \ + --output ttf/ \ + bhatkhande/$LANG/OmeBhatkhande*.sfd && \ + ./scripts/convert.py \ + --format ufo \ + --output bhatkhande/$LANG/ \ + bhatkhande/$LANG/OmeBhatkhande*.sfd && \ + rm bhatkhande/$LANG/OmeBhatkhande*.sfd" done + +# Build Ome Swarlipi font +docker run --rm -v $PWD:/home/fontdev sungsit/fontforge \ + "/bin/sh" "-c" \ + "./scripts/convert.py \ + --format ttf \ + --output ttf/ \ + swarlipi/OmeSwarlipi.sfd && \ + ./scripts/convert.py \ + --format ufo \ + --output swarlipi/ \ + swarlipi/OmeSwarlipi.sfd" diff --git a/scripts/convert.pe b/scripts/convert.pe deleted file mode 100755 index f0afacf..0000000 --- a/scripts/convert.pe +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/fontforge - -/** Convert source files to TTF, saving in the output folder **/ - -i = 1 // For looping through various inputs -format = ".ttf" // Output format -output = "ttf" // Output folder - -while (i < $argc) - if ($argv[i] == "--format") - i = i + 1 - format = "." + $argv[i] - elseif ($argv[i] == "--output") - i = i + 1 - output = $argv[i] - else - // Convert "long/path/to/file.ext" to "$output/file.format" - output_file = output + Strsub($argv[i]:r, Strrstr($argv[i], '/')) + format - - Open($argv[i]) - Generate(output_file) - endif - i = i + 1 -endloop diff --git a/scripts/convert.py b/scripts/convert.py new file mode 100755 index 0000000..48e8642 --- /dev/null +++ b/scripts/convert.py @@ -0,0 +1,47 @@ +#!/usr/bin/python + +import argparse +import fontforge +import os.path + + +def parse_arguments(): + parser = argparse.ArgumentParser( + description="Convert SFD to TTF/UFO to given output directory" + ) + parser.add_argument( + "--format", required=True, help="Output format. Must be ttf or ufo." + ) + parser.add_argument("--output", required=True, help="Output directory.") + parser.add_argument("input_sfd", help="Input SFD file.") + + args = parser.parse_args() + + if args.format not in ["ttf", "ufo"]: + raise "Invalid format: {}".format(args.format) + + if not os.path.exists(args.output): + raise "Invalid output directory: {}".format(args.output) + + if not os.path.exists(args.input_sfd) or not args.input_sfd.endswith(".sfd"): + raise "Invalid input SFD file: {}".format(args.input_sfd) + + return args + + +def convert(input_sfd, format, output_dir): + sfd = fontforge.open(input_sfd) + output_file = "{}/{}.{}".format( + output_dir, os.path.splitext(os.path.basename(input_sfd))[0], format + ) + + sfd.generate(output_file) + + +def main(): + args = parse_arguments() + convert(args.input_sfd, args.format, args.output) + + +if __name__ == "__main__": + main() From 60564cfbfe59f43f61245a96a380748c0c89ae0b Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Mon, 2 Sep 2024 11:04:39 -0400 Subject: [PATCH 03/14] Rename SFD files for new build pipeline Now we start with a OmeBhatkhandeBase font, with the language-specific characters layered in. This Base font is a copy of OmeBhatkhandeEnglish, since that had the standard width of 1582 applied to all characters, even the unused ones. --- bhatkhande/base/OmeBhatkhandeBase.sfd | 8623 +++++++++++++++++ .../{OmeBhatkhandeEnglish.sfd => English.sfd} | 0 .../{OmeBhatkhandeHindi.sfd => Hindi.sfd} | 0 .../{OmeBhatkhandePunjabi.sfd => Punjabi.sfd} | 0 4 files changed, 8623 insertions(+) create mode 100644 bhatkhande/base/OmeBhatkhandeBase.sfd rename bhatkhande/english/{OmeBhatkhandeEnglish.sfd => English.sfd} (100%) rename bhatkhande/hindi/{OmeBhatkhandeHindi.sfd => Hindi.sfd} (100%) rename bhatkhande/punjabi/{OmeBhatkhandePunjabi.sfd => Punjabi.sfd} (100%) diff --git a/bhatkhande/base/OmeBhatkhandeBase.sfd b/bhatkhande/base/OmeBhatkhandeBase.sfd new file mode 100644 index 0000000..3eda1cc --- /dev/null +++ b/bhatkhande/base/OmeBhatkhandeBase.sfd @@ -0,0 +1,8623 @@ +SplineFontDB: 3.0 +FontName: OmeBhatkhandeBase +FullName: Ome Bhatkhande Base +FamilyName: Ome Bhatkhande Base +Weight: Regular +Copyright: Omenad 2006-2017 +Version: 1.01 Oct 5, 2022 +ItalicAngle: 0 +UnderlinePosition: -292 +UnderlineWidth: 150 +Ascent: 1638 +Descent: 410 +InvalidEm: 0 +sfntRevision: 0x00010000 +LayerCount: 2 +Layer: 0 1 "Back" 1 +Layer: 1 1 "Fore" 0 +XUID: [1021 365 -898263510 12592035] +StyleMap: 0x0000 +FSType: 8 +OS2Version: 1 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 0 +CreationTime: 1192029071 +ModificationTime: 1664976917 +PfmFamily: 17 +TTFWeight: 400 +TTFWidth: 5 +LineGap: 0 +VLineGap: 0 +Panose: 2 0 0 0 0 0 0 0 0 0 +OS2TypoAscent: 3650 +OS2TypoAOffset: 0 +OS2TypoDescent: -3000 +OS2TypoDOffset: 0 +OS2TypoLinegap: 205 +OS2WinAscent: 3650 +OS2WinAOffset: 0 +OS2WinDescent: 3000 +OS2WinDOffset: 0 +HheadAscent: 3650 +HheadAOffset: 0 +HheadDescent: -3000 +HheadDOffset: 0 +OS2SubXSize: 1434 +OS2SubYSize: 1331 +OS2SubXOff: 0 +OS2SubYOff: 283 +OS2SupXSize: 1000 +OS2SupYSize: 2250 +OS2SupXOff: 0 +OS2SupYOff: 2800 +OS2StrikeYSize: 102 +OS2StrikeYPos: 530 +OS2Vendor: 'OMND' +OS2CodePages: 6000019f.dff70000 +OS2UnicodeRanges: a00002af.500078fb.00000000.00000000 +Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 subtable" } ['kern' ('latn' <'dflt' > ) ] +MarkAttachClasses: 1 +DEI: 91125 +ShortTable: maxp 16 + 1 + 0 + 653 + 132 + 6 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 +EndShort +LangName: 1055 "" "" "Normal" +LangName: 1053 "" "" "Normal" +LangName: 2058 "" "" "Normal" +LangName: 1034 "" "" "Normal" +LangName: 3082 "" "" "Normal" +LangName: 1060 "" "" "Navadno" +LangName: 1051 "" "" "Norm+AOEA-lne" +LangName: 1049 "" "" "+BB4EMQRLBEcEPQRLBDkA" +LangName: 1046 "" "" "Normal" +LangName: 2070 "" "" "Normal" +LangName: 1045 "" "" "Normalny" +LangName: 1044 "" "" "Normal" +LangName: 1040 "" "" "Normale" +LangName: 1038 "" "" "Norm+AOEA-l" +LangName: 1032 "" "" "+A5oDsQO9A78DvQO5A7oDrAAA" +LangName: 1031 "" "" "Standard" +LangName: 1036 "" "" "Normal" +LangName: 3084 "" "" "Normal" +LangName: 1035 "" "" "Normaali" +LangName: 1043 "" "" "Standaard" +LangName: 1030 "" "" "normal" +LangName: 1029 "" "" "oby+AQ0A-ejn+AOkA" +LangName: 1027 "" "" "Normal" +LangName: 1069 "" "" "Arrunta" +LangName: 1033 "" "" "Regular" "OmeBhatkhandeEng:1.00" "" "Version 1.01 Oct 5, 2022" "" "" "" "Terence Tuhinanshu" "For writing Indian Classical Music in Bhatkhande script using Roman characters" "" "http://www.tuhinanshu.com" "Copyright (c) 2017, Omenad (http://omenad.net),+AAoA-with Reserved Font Name Ome Bhatkhande.+AAoACgAA-This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL" "" "" "" "" "+AH4A#qswRwG%wMepDlNu ;'[]" +GaspTable: 1 65535 2 0 +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: AGL For New Fonts +DisplaySize: -48 +AntiAlias: 1 +FitToEm: 0 +WinInfo: 8205 15 9 +BeginPrivate: 0 +EndPrivate +BeginChars: 65540 653 + +StartChar: .notdef +Encoding: 65536 -1 0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +279 0 m 1,0,-1 + 279 1280 l 1,1,-1 + 1303 1280 l 1,2,-1 + 1303 0 l 1,3,-1 + 279 0 l 1,0,-1 +311 32 m 1,4,-1 + 1271 32 l 1,5,-1 + 1271 1248 l 1,6,-1 + 311 1248 l 1,7,-1 + 311 32 l 1,4,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: .null +Encoding: 65537 -1 1 +Width: 0 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: nonmarkingreturn +Encoding: 65538 -1 2 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: space +Encoding: 32 32 3 +AltUni2: 0000a0.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: exclam +Encoding: 33 33 4 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +8925 -2000 m 1,0,-1 + 9097 -2000 l 1,1,2 + 8741 -2191 8741 -2191 8265 -2319 c 0,3,4 + 7586 -2502 7586 -2502 6664 -2601 c 128,-1,5 + 5742 -2700 5742 -2700 4752 -2700 c 0,6,7 + 3304 -2700 3304 -2700 2108.5 -2505.5 c 128,-1,8 + 913 -2311 913 -2311 396 -2000 c 1,9,-1 + 594 -2000 l 1,10,11 + 913 -2155 913 -2155 1465 -2255.5 c 128,-1,12 + 2017 -2356 2017 -2356 2864 -2405.5 c 128,-1,13 + 3711 -2455 3711 -2455 4631 -2455 c 0,14,15 + 5632 -2455 5632 -2455 6450 -2413 c 0,16,17 + 7095 -2380 7095 -2380 7485.5 -2333 c 128,-1,18 + 7876 -2286 7876 -2286 8235.5 -2207 c 128,-1,19 + 8595 -2128 8595 -2128 8925 -2000 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: quotedbl +Encoding: 34 34 5 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: numbersign +Encoding: 35 35 6 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +4273 -1200 m 1,0,-1 + 4351 -1200 l 1,1,2 + 4189 -1350 4189 -1350 3973 -1451 c 0,3,4 + 3664 -1594 3664 -1594 3245 -1672 c 128,-1,5 + 2826 -1750 2826 -1750 2376 -1750 c 0,6,7 + 1718 -1750 1718 -1750 1174.5 -1597.5 c 128,-1,8 + 631 -1445 631 -1445 396 -1200 c 1,9,-1 + 486 -1200 l 1,10,11 + 631 -1322 631 -1322 882 -1400.5 c 128,-1,12 + 1133 -1479 1133 -1479 1518 -1518 c 128,-1,13 + 1903 -1557 1903 -1557 2321 -1557 c 0,14,15 + 2776 -1557 2776 -1557 3148 -1524 c 0,16,17 + 3441 -1498 3441 -1498 3618.5 -1461.5 c 128,-1,18 + 3796 -1425 3796 -1425 3959.5 -1362.5 c 128,-1,19 + 4123 -1300 4123 -1300 4273 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: dollar +Encoding: 36 36 7 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +5823 -1200 m 1,0,-1 + 5933 -1200 l 1,1,2 + 5707 -1370 5707 -1370 5403 -1485 c 0,3,4 + 4972 -1648 4972 -1648 4385 -1736.5 c 128,-1,5 + 3798 -1825 3798 -1825 3168 -1825 c 0,6,7 + 2246 -1825 2246 -1825 1485.5 -1651.5 c 128,-1,8 + 725 -1478 725 -1478 396 -1200 c 1,9,-1 + 522 -1200 l 1,10,11 + 725 -1339 725 -1339 1076 -1428.5 c 128,-1,12 + 1427 -1518 1427 -1518 1966 -1562 c 128,-1,13 + 2505 -1606 2505 -1606 3091 -1606 c 0,14,15 + 3728 -1606 3728 -1606 4248 -1569 c 0,16,17 + 4659 -1539 4659 -1539 4907.5 -1497 c 128,-1,18 + 5156 -1455 5156 -1455 5384.5 -1384.5 c 128,-1,19 + 5613 -1314 5613 -1314 5823 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: percent +Encoding: 37 37 8 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +7374 -1200 m 1,0,-1 + 7515 -1200 l 1,1,2 + 7224 -1370 7224 -1370 6834 -1485 c 0,3,4 + 6279 -1648 6279 -1648 5524.5 -1736.5 c 128,-1,5 + 4770 -1825 4770 -1825 3960 -1825 c 0,6,7 + 2775 -1825 2775 -1825 1797 -1651.5 c 128,-1,8 + 819 -1478 819 -1478 396 -1200 c 1,9,-1 + 558 -1200 l 1,10,11 + 819 -1339 819 -1339 1270.5 -1428.5 c 128,-1,12 + 1722 -1518 1722 -1518 2415 -1562 c 128,-1,13 + 3108 -1606 3108 -1606 3861 -1606 c 0,14,15 + 4680 -1606 4680 -1606 5349 -1569 c 0,16,17 + 5877 -1539 5877 -1539 6196.5 -1497 c 128,-1,18 + 6516 -1455 6516 -1455 6810 -1384.5 c 128,-1,19 + 7104 -1314 7104 -1314 7374 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ampersand +Encoding: 38 38 9 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +10475 -1200 m 1,0,-1 + 10679 -1200 l 1,1,2 + 10259 -1391 10259 -1391 9695 -1519 c 0,3,4 + 8894 -1702 8894 -1702 7804 -1801 c 128,-1,5 + 6714 -1900 6714 -1900 5544 -1900 c 0,6,7 + 3832 -1900 3832 -1900 2419.5 -1705.5 c 128,-1,8 + 1007 -1511 1007 -1511 396 -1200 c 1,9,-1 + 630 -1200 l 1,10,11 + 1007 -1355 1007 -1355 1659 -1455.5 c 128,-1,12 + 2311 -1556 2311 -1556 3312 -1605.5 c 128,-1,13 + 4313 -1655 4313 -1655 5401 -1655 c 0,14,15 + 6584 -1655 6584 -1655 7550 -1613 c 0,16,17 + 8313 -1580 8313 -1580 8774.5 -1533 c 128,-1,18 + 9236 -1486 9236 -1486 9660.5 -1407 c 128,-1,19 + 10085 -1328 10085 -1328 10475 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: quotesingle +Encoding: 39 39 10 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1210 1169 m 1,0,-1 + 942 1169 l 1,1,2 + 942 1139 942 1139 944 1108 c 0,3,4 + 946 1086 946 1086 950 1028 c 2,5,-1 + 959 889 l 2,6,7 + 961 858 961 858 961 839 c 0,8,9 + 961 646 961 646 865 507 c 0,10,11 + 826 450 826 450 826 402 c 0,12,13 + 826 363 826 363 851 336 c 0,14,15 + 926 253 926 253 998 204 c 2,16,-1 + 1157 95 l 2,17,18 + 1210 59 1210 59 1210 -1 c 0,19,20 + 1210 -50 1210 -50 1169 -50 c 0,21,22 + 1143 -50 1143 -50 1113 -25 c 2,23,-1 + 936 122 l 1,24,-1 + 763 274 l 2,25,26 + 692 336 692 336 601 448 c 0,27,28 + 590 461 590 461 555 510 c 0,29,30 + 518 556 518 556 456 656 c 0,31,32 + 448 673 448 673 443 689 c 2,33,-1 + 434 747 l 1,34,35 + 434 859 434 859 520 859 c 0,36,37 + 548 859 548 859 605 833.5 c 128,-1,38 + 662 808 662 808 691 808 c 0,39,40 + 715 808 715 808 730 816 c 1,41,42 + 773 879 773 879 773 994 c 0,43,44 + 773 1061 773 1061 763 1115 c 0,45,46 + 761 1144 761 1144 753 1169 c 1,47,-1 + 375 1169 l 1,48,-1 + 375 1325 l 1,49,-1 + 1210 1325 l 1,50,-1 + 1210 1169 l 1,0,-1 +EndSplineSet +Fore +SplineSet +464 849 m 1,0,-1 + 809 905 l 1,1,-1 + 665 419 l 1,2,3 + 840 718 840 718 983 837 c 0,4,5 + 1064 905 1064 905 1115 905 c 0,6,7 + 1148 905 1148 905 1167 885.5 c 128,-1,8 + 1186 866 1186 866 1186 829 c 0,9,10 + 1186 763 1186 763 1152 703 c 0,11,12 + 1128 658 1128 658 1083 658 c 0,13,14 + 1060 658 1060 658 1043.5 673 c 128,-1,15 + 1027 688 1027 688 1023 719 c 0,16,17 + 1021 738 1021 738 1014 744 c 0,18,19 + 1006 752 1006 752 995 752 c 0,20,21 + 978 752 978 752 963 744 c 0,22,23 + 937 730 937 730 884 666 c 0,24,25 + 801 568 801 568 704 412 c 0,26,27 + 662 346 662 346 632 263 c 0,28,29 + 590 149 590 149 584 126 c 2,30,-1 + 552 0 l 1,31,-1 + 399 0 l 1,32,-1 + 584 621 l 2,33,34 + 616 729 616 729 616 775 c 0,35,36 + 616 793 616 793 601 805 c 0,37,38 + 581 821 581 821 548 821 c 0,39,40 + 527 821 527 821 471 812 c 1,41,-1 + 464 849 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: parenleft +Encoding: 40 40 11 +Width: 791 +Flags: W +LayerCount: 2 +Fore +SplineSet +604 -439 m 1,0,1 + 540 -380 540 -380 495 -334 c 128,-1,2 + 450 -288 450 -288 415 -245 c 128,-1,3 + 380 -202 380 -202 352.5 -159 c 128,-1,4 + 325 -116 325 -116 298 -65 c 0,5,6 + 149 216 149 216 149 546 c 0,7,8 + 149 777 149 777 229 984 c 0,9,10 + 257 1060 257 1060 290 1121.5 c 128,-1,11 + 323 1183 323 1183 366 1240 c 128,-1,12 + 409 1297 409 1297 466.5 1356.5 c 128,-1,13 + 524 1416 524 1416 604 1488 c 1,14,-1 + 642 1435 l 1,15,16 + 587 1369 587 1369 547 1316 c 128,-1,17 + 507 1263 507 1263 477.5 1212.5 c 128,-1,18 + 448 1162 448 1162 426.5 1110 c 128,-1,19 + 405 1058 405 1058 384 994 c 0,20,21 + 356 894 356 894 340.5 784.5 c 128,-1,22 + 325 675 325 675 325 546 c 0,23,24 + 325 286 325 286 388 69 c 0,25,26 + 409 -1 409 -1 430.5 -56.5 c 128,-1,27 + 452 -112 452 -112 480.5 -165 c 128,-1,28 + 509 -218 509 -218 548 -273.5 c 128,-1,29 + 587 -329 587 -329 642 -396 c 1,30,-1 + 604 -439 l 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: parenright +Encoding: 41 41 12 +Width: 791 +Flags: W +LayerCount: 2 +Fore +SplineSet +149 -396 m 1,0,1 + 204 -329 204 -329 243 -273.5 c 128,-1,2 + 282 -218 282 -218 310.5 -165 c 128,-1,3 + 339 -112 339 -112 360.5 -56.5 c 128,-1,4 + 382 -1 382 -1 402 69 c 0,5,6 + 466 286 466 286 466 546 c 0,7,8 + 466 675 466 675 450.5 784.5 c 128,-1,9 + 435 894 435 894 405 994 c 0,10,11 + 386 1058 386 1058 364.5 1109 c 128,-1,12 + 343 1160 343 1160 313.5 1211.5 c 128,-1,13 + 284 1263 284 1263 244 1316 c 128,-1,14 + 204 1369 204 1369 149 1435 c 1,15,-1 + 187 1488 l 1,16,17 + 267 1416 267 1416 324.5 1355.5 c 128,-1,18 + 382 1295 382 1295 425 1238 c 128,-1,19 + 468 1181 468 1181 501 1119.5 c 128,-1,20 + 534 1058 534 1058 562 984 c 0,21,22 + 642 777 642 777 642 544 c 0,23,24 + 642 357 642 357 594 184 c 128,-1,25 + 546 11 546 11 452 -138 c 0,26,27 + 427 -175 427 -175 403.5 -209 c 128,-1,28 + 380 -243 380 -243 349.5 -276.5 c 128,-1,29 + 319 -310 319 -310 280 -350 c 128,-1,30 + 241 -390 241 -390 187 -439 c 1,31,-1 + 149 -396 l 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: asterisk +Encoding: 42 42 13 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +12026 -1200 m 1,0,-1 + 12261 -1200 l 1,1,2 + 11776 -1391 11776 -1391 11126 -1519 c 0,3,4 + 10201 -1702 10201 -1702 8943.5 -1801 c 128,-1,5 + 7686 -1900 7686 -1900 6336 -1900 c 0,6,7 + 4361 -1900 4361 -1900 2731 -1705.5 c 128,-1,8 + 1101 -1511 1101 -1511 396 -1200 c 1,9,-1 + 666 -1200 l 1,10,11 + 1101 -1355 1101 -1355 1853.5 -1455.5 c 128,-1,12 + 2606 -1556 2606 -1556 3761 -1605.5 c 128,-1,13 + 4916 -1655 4916 -1655 6171 -1655 c 0,14,15 + 7536 -1655 7536 -1655 8651 -1613 c 0,16,17 + 9531 -1580 9531 -1580 10063.5 -1533 c 128,-1,18 + 10596 -1486 10596 -1486 11086 -1407 c 128,-1,19 + 11576 -1328 11576 -1328 12026 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: plus +Encoding: 43 43 14 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +734 1052 m 1,0,-1 + 849 1052 l 1,1,-1 + 849 595 l 1,2,-1 + 1308 595 l 1,3,-1 + 1308 480 l 1,4,-1 + 849 480 l 1,5,-1 + 849 17 l 1,6,-1 + 734 17 l 1,7,-1 + 734 480 l 1,8,-1 + 275 480 l 1,9,-1 + 275 595 l 1,10,-1 + 734 595 l 1,11,-1 + 734 1052 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: comma +Encoding: 44 44 15 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +446 223 m 1,0,1 + 424 164 424 164 398.5 108.5 c 128,-1,2 + 373 53 373 53 337 -6.5 c 128,-1,3 + 301 -66 301 -66 254 -132.5 c 128,-1,4 + 207 -199 207 -199 145 -279 c 1,5,-1 + 61 -317 l 1,6,-1 + 33 -295 l 1,7,8 + 121 -147 121 -147 164 -36.5 c 128,-1,9 + 207 74 207 74 217 190 c 1,10,11 + 258 203 258 203 286.5 211 c 128,-1,12 + 315 219 315 219 337.5 226 c 128,-1,13 + 360 233 360 233 378.5 239.5 c 128,-1,14 + 397 246 397 246 418 252 c 1,15,-1 + 446 223 l 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: hyphen +Encoding: 45 45 16 +AltUni2: 0000ad.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +499 440 m 1,0,-1 + 489 451 l 1,1,-1 + 544 588 l 1,2,-1 + 1083 588 l 1,3,-1 + 1093 578 l 1,4,-1 + 1032 440 l 1,5,-1 + 499 440 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: period +Encoding: 46 46 17 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: slash +Encoding: 47 47 18 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zero +Encoding: 48 48 19 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1074 455 m 0,0,1 + 1014 387 1014 387 964 368 c 0,2,3 + 930 356 930 356 850 356 c 0,4,5 + 691 356 691 356 562 474 c 0,6,7 + 421 603 421 603 421 775 c 0,8,9 + 421 882 421 882 492 966 c 0,10,11 + 579 1068 579 1068 719 1068 c 0,12,13 + 878 1068 878 1068 1011 951 c 0,14,15 + 1117 858 1117 858 1151 739 c 0,16,17 + 1161 704 1161 704 1161 665 c 0,18,19 + 1161 554 1161 554 1074 455 c 0,0,1 +938 891 m 1,20,-1 + 889 918 l 2,21,22 + 864 928 864 928 841 928 c 0,23,24 + 795 928 795 928 716 879 c 0,25,26 + 599 807 599 807 599 649 c 0,27,28 + 599 557 599 557 663 510 c 0,29,30 + 690 490 690 490 727 490 c 0,31,32 + 868 490 868 490 959 662 c 0,33,34 + 993 727 993 727 993 784 c 0,35,36 + 993 854 993 854 938 891 c 1,20,-1 +EndSplineSet +Fore +SplineSet +875 1546 m 0,0,1 + 966 1546 966 1546 1052 1493 c 128,-1,2 + 1138 1440 1138 1440 1208 1343 c 128,-1,3 + 1278 1246 1278 1246 1321 1090 c 128,-1,4 + 1364 934 1364 934 1364 745 c 128,-1,5 + 1364 556 1364 556 1320 404.5 c 128,-1,6 + 1276 253 1276 253 1204.5 162 c 128,-1,7 + 1133 71 1133 71 1049.5 24.5 c 128,-1,8 + 966 -22 966 -22 877 -22 c 0,9,10 + 683 -22 683 -22 532 192 c 128,-1,11 + 381 406 381 406 381 760 c 0,12,13 + 381 1108 381 1108 531 1327 c 128,-1,14 + 681 1546 681 1546 875 1546 c 0,0,1 +1116 1197 m 1,15,16 + 1067 1295 1067 1295 1003 1345.5 c 128,-1,17 + 939 1396 939 1396 873 1396 c 0,18,19 + 747 1396 747 1396 644 1230 c 128,-1,20 + 541 1064 541 1064 541 789 c 0,21,22 + 541 632 541 632 575 499 c 1,23,-1 + 1116 1197 l 1,15,16 +1172 1032 m 1,24,-1 + 632 344 l 1,25,26 + 683 243 683 243 749.5 189 c 128,-1,27 + 816 135 816 135 885 135 c 0,28,29 + 939 135 939 135 992 168.5 c 128,-1,30 + 1045 202 1045 202 1094 268 c 128,-1,31 + 1143 334 1143 334 1173.5 453.5 c 128,-1,32 + 1204 573 1204 573 1204 725 c 0,33,34 + 1204 895 1204 895 1172 1032 c 1,24,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: one +Encoding: 49 49 20 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1022 42 m 0,0,1 + 1034 10 1034 10 1037 -16 c 0,2,3 + 1037 -73 1037 -73 966 -73 c 0,4,5 + 885 -73 885 -73 831 -26 c 1,6,-1 + 772 14 l 2,7,8 + 735 39 735 39 735 75 c 0,9,10 + 735 110 735 110 778 123 c 2,11,-1 + 822 136 l 1,12,-1 + 819 141 l 1,13,14 + 819 181 819 181 687.5 340.5 c 128,-1,15 + 556 500 556 500 556 535 c 1,16,17 + 560 552 560 552 647 623 c 0,18,19 + 739 699 739 699 759 739 c 1,20,-1 + 607 853 l 1,21,22 + 538 922 538 922 538 1012 c 0,23,24 + 538 1117 538 1117 595 1187 c 0,25,26 + 656 1263 656 1263 759 1263 c 0,27,28 + 861 1263 861 1263 949 1168 c 0,29,30 + 1045 1065 1045 1065 1045 927 c 0,31,32 + 1045 862 1045 862 1022 798 c 0,33,34 + 1007 756 1007 756 913 659 c 1,35,36 + 856 608 856 608 799 557 c 0,37,38 + 724 485 724 485 724 439 c 0,39,40 + 724 397 724 397 759 360 c 2,41,-1 + 908 202 l 2,42,43 + 979 126 979 126 1022 42 c 0,0,1 +912 1083 m 0,44,45 + 884 1133 884 1133 837 1133 c 0,46,47 + 804 1133 804 1133 759 1098 c 0,48,49 + 689 1044 689 1044 689 965 c 0,50,51 + 689 940 689 940 692 931 c 0,52,53 + 701 887 701 887 733 841 c 0,54,55 + 770 788 770 788 810 788 c 0,56,57 + 819 788 819 788 831 798 c 0,58,59 + 929 921 929 921 929 1015 c 0,60,61 + 929 1052 929 1052 912 1083 c 0,44,45 +EndSplineSet +Fore +SplineSet +1094 1534 m 1,0,-1 + 1094 -2 l 1,1,-1 + 924 -2 l 1,2,-1 + 924 1320 l 1,3,-1 + 614 1229 l 1,4,-1 + 575 1325 l 1,5,-1 + 976 1534 l 1,6,-1 + 1094 1534 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: two +Encoding: 50 50 21 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1220 -1 m 1,0,1 + 1220 -47 1220 -47 1143 -47 c 0,2,3 + 1078 -47 1078 -47 1052 -1 c 0,4,5 + 1010 72 1010 72 873 290 c 0,6,7 + 850 327 850 327 823 373 c 0,8,9 + 814 388 814 388 776 459 c 0,10,11 + 767 475 767 475 749 489 c 2,12,-1 + 717 513 l 1,13,-1 + 684 511 l 2,14,15 + 586 505 586 505 519 567.5 c 128,-1,16 + 452 630 452 630 455 728 c 2,17,-1 + 456 764 l 1,18,19 + 467 845 467 845 567 845 c 0,20,21 + 622 845 622 845 650 806 c 0,22,23 + 716 716 716 716 761 716 c 0,24,25 + 829 716 829 716 930 926 c 0,26,27 + 946 959 946 959 946 1005 c 0,28,29 + 946 1092 946 1092 909 1123 c 0,30,31 + 884 1144 884 1144 828 1144 c 0,32,33 + 771 1144 771 1144 686 1123 c 1,34,-1 + 580 1084 l 2,35,36 + 542 1070 542 1070 499 1070 c 0,37,38 + 472 1070 472 1070 434 1120 c 2,39,-1 + 377 1195 l 2,40,41 + 362 1215 362 1215 362 1226 c 0,42,43 + 362 1265 362 1265 456 1283 c 0,44,45 + 564 1304 564 1304 660 1304 c 0,46,47 + 784 1304 784 1304 857 1271 c 0,48,49 + 936 1236 936 1236 1009 1142 c 0,50,51 + 1105 1018 1105 1018 1098 902 c 2,52,-1 + 1096 869 l 2,53,54 + 1090 767 1090 767 1010 687 c 0,55,56 + 986 663 986 663 833 545 c 1,57,58 + 871 446 871 446 951 360 c 2,59,-1 + 1103 197 l 2,60,61 + 1182 112 1182 112 1220 -1 c 1,0,1 +EndSplineSet +Fore +SplineSet +428 1293 m 1,0,1 + 495 1408 495 1408 610.5 1474.5 c 128,-1,2 + 726 1541 726 1541 856 1541 c 0,3,4 + 1043 1541 1043 1541 1172 1415.5 c 128,-1,5 + 1301 1290 1301 1290 1301 1111 c 0,6,7 + 1301 1035 1301 1035 1276.5 961 c 128,-1,8 + 1252 887 1252 887 1206.5 824.5 c 128,-1,9 + 1161 762 1161 762 1122.5 721.5 c 128,-1,10 + 1084 681 1084 681 1030 629 c 0,11,12 + 969 568 969 568 902.5 509 c 128,-1,13 + 836 450 836 450 754 351.5 c 128,-1,14 + 672 253 672 253 615 150 c 1,15,-1 + 1256 150 l 2,16,17 + 1271 150 1271 150 1284 160 c 0,18,19 + 1301 177 1301 177 1315 172 c 1,20,-1 + 1315 0 l 1,21,-1 + 416 0 l 1,22,-1 + 416 108 l 1,23,24 + 507 288 507 288 612.5 418 c 128,-1,25 + 718 548 718 548 861 678 c 0,26,27 + 915 725 915 725 934.5 743.5 c 128,-1,28 + 954 762 954 762 1002 813.5 c 128,-1,29 + 1050 865 1050 865 1071 900.5 c 128,-1,30 + 1092 936 1092 936 1111.5 991.5 c 128,-1,31 + 1131 1047 1131 1047 1131 1099 c 0,32,33 + 1131 1221 1131 1221 1045 1306 c 128,-1,34 + 959 1391 959 1391 836 1391 c 0,35,36 + 745 1391 745 1391 676.5 1347 c 128,-1,37 + 608 1303 608 1303 573 1251 c 0,38,39 + 568 1241 568 1241 564.5 1222.5 c 128,-1,40 + 561 1204 561 1204 554 1194 c 1,41,-1 + 428 1293 l 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: three +Encoding: 51 51 22 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1221 16 m 1,0,-1 + 1228 -15 l 1,1,2 + 1228 -73 1228 -73 1166 -73 c 0,3,4 + 1113 -73 1113 -73 1042 12 c 0,5,6 + 1032 24 1032 24 951 138 c 0,7,8 + 843 290 843 290 812 318 c 1,9,-1 + 769 315 l 2,10,11 + 666 308 666 308 586 372 c 0,12,13 + 503 439 503 439 503 541 c 1,14,-1 + 507 579 l 2,15,16 + 511 618 511 618 561 640 c 0,17,18 + 586 651 586 651 608 651 c 0,19,20 + 637 651 637 651 661 637 c 1,21,22 + 688 627 688 627 707 597 c 1,23,24 + 754 541 754 541 800 541 c 0,25,26 + 860 541 860 541 899 640 c 1,27,-1 + 906 683 l 1,28,29 + 906 717 906 717 892 745 c 1,30,31 + 883 772 883 772 860 800 c 0,32,33 + 850 812 850 812 830 813 c 1,34,-1 + 803 808 l 1,35,-1 + 762 798 l 1,36,-1 + 666 781 l 1,37,38 + 628 781 628 781 602 813 c 2,39,-1 + 548 879 l 2,40,41 + 527 905 527 905 527 923 c 0,42,43 + 527 943 527 943 567 949 c 0,44,45 + 590 952 590 952 613 951 c 2,46,-1 + 647 949 l 2,47,48 + 804 940 804 940 861 1075 c 0,49,50 + 870 1096 870 1096 870 1120 c 0,51,52 + 870 1210 870 1210 748 1210 c 0,53,54 + 687 1210 687 1210 632 1186 c 2,55,-1 + 556 1153 l 2,56,57 + 529 1141 529 1141 472 1129 c 1,58,59 + 442 1144 442 1144 393 1211 c 2,60,-1 + 354 1264 l 1,61,-1 + 369 1287 l 1,62,63 + 383 1300 383 1300 419 1316 c 1,64,65 + 548 1357 548 1357 637 1357 c 0,66,67 + 741 1357 741 1357 830 1297 c 0,68,69 + 1014 1173 1014 1173 1014 1023 c 0,70,71 + 1014 937 1014 937 947 880 c 1,72,-1 + 920 863 l 1,73,-1 + 914 853 l 1,74,75 + 914 843 914 843 930 827 c 0,76,77 + 1048 709 1048 709 1048 580 c 0,78,79 + 1048 482 1048 482 961 402 c 1,80,-1 + 926 376 l 2,81,82 + 911 365 911 365 911 354 c 0,83,84 + 911 344 911 344 918 332 c 2,85,-1 + 947 297 l 1,86,-1 + 1113 136 l 2,87,88 + 1209 43 1209 43 1221 16 c 1,0,-1 +EndSplineSet +Fore +SplineSet +1266 1153 m 0,0,1 + 1266 1042 1266 1042 1203.5 951 c 128,-1,2 + 1141 860 1141 860 1038 821 c 1,3,4 + 1156 779 1156 779 1228.5 671 c 128,-1,5 + 1301 563 1301 563 1301 425 c 0,6,7 + 1301 241 1301 241 1170.5 109.5 c 128,-1,8 + 1040 -22 1040 -22 829 -22 c 0,9,10 + 583 -22 583 -22 426 152 c 1,11,-1 + 556 307 l 1,12,13 + 566 297 566 297 571 274 c 128,-1,14 + 576 251 576 251 588 239 c 0,15,16 + 600 224 600 224 622.5 205.5 c 128,-1,17 + 645 187 645 187 704 161 c 128,-1,18 + 763 135 763 135 827 135 c 0,19,20 + 959 135 959 135 1047.5 227.5 c 128,-1,21 + 1136 320 1136 320 1136 447 c 0,22,23 + 1136 583 1136 583 1035.5 660 c 128,-1,24 + 935 737 935 737 775 737 c 0,25,26 + 736 737 736 737 699 732 c 1,27,-1 + 699 870 l 1,28,29 + 851 870 851 870 940 909 c 0,30,31 + 1016 944 1016 944 1059 1010.5 c 128,-1,32 + 1102 1077 1102 1077 1102 1150 c 0,33,34 + 1102 1249 1102 1249 1027 1319 c 128,-1,35 + 952 1389 952 1389 836 1389 c 0,36,37 + 682 1389 682 1389 573 1271 c 1,38,-1 + 478 1376 l 1,39,40 + 628 1541 628 1541 844 1541 c 0,41,42 + 1023 1541 1023 1541 1144.5 1426.5 c 128,-1,43 + 1266 1312 1266 1312 1266 1153 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: four +Encoding: 52 52 23 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1140 718 m 1,0,-1 + 948 565 l 1,1,-1 + 937 549 l 2,2,3 + 932 545 932 545 928 537 c 1,4,5 + 928 525 928 525 962 505 c 0,6,7 + 1034 463 1034 463 1080 384.5 c 128,-1,8 + 1126 306 1126 306 1126 224 c 0,9,10 + 1126 128 1126 128 1051 56 c 128,-1,11 + 976 -16 976 -16 879 -16 c 0,12,13 + 807 -16 807 -16 702 48 c 0,14,15 + 628 93 628 93 579.5 174 c 128,-1,16 + 531 255 531 255 531 339 c 0,17,18 + 531 492 531 492 685 588 c 1,19,20 + 655 620 655 620 591 668 c 0,21,22 + 523 720 523 720 496 747 c 0,23,24 + 335 908 335 908 335 1056 c 0,25,26 + 335 1176 335 1176 436 1267 c 0,27,28 + 450 1279 450 1279 478 1292 c 1,29,-1 + 545 1299 l 1,30,31 + 576 1295 576 1295 609.5 1264.5 c 128,-1,32 + 643 1234 643 1234 646 1204 c 2,33,-1 + 649 1174 l 2,34,35 + 649 1154 649 1154 644 1146 c 2,36,-1 + 586 1103 l 2,37,38 + 503 1041 503 1041 503 955 c 0,39,40 + 503 789 503 789 761 639 c 1,41,42 + 1114 867 1114 867 1114 1040 c 0,43,44 + 1114 1093 1114 1093 1077 1154 c 1,45,-1 + 1066 1169 l 2,46,47 + 1056 1183 1056 1183 1041 1188 c 0,48,49 + 999 1203 999 1203 999 1257 c 1,50,-1 + 1003 1278 l 2,51,52 + 1007 1299 1007 1299 1031 1301 c 1,53,-1 + 1052 1296 l 2,54,55 + 1066 1291 1066 1291 1080 1278 c 0,56,57 + 1248 1128 1248 1128 1248 971 c 0,58,59 + 1248 832 1248 832 1140 718 c 1,0,-1 +962 325 m 0,60,61 + 962 426 962 426 851 480 c 1,62,63 + 804 458 804 458 748 401 c 0,64,65 + 704 356 704 356 688 300 c 1,66,-1 + 683 247 l 1,67,68 + 683 132 683 132 780 132 c 1,69,-1 + 799 129 l 1,70,71 + 861 129 861 129 913 197 c 0,72,73 + 962 261 962 261 962 325 c 0,60,61 +EndSplineSet +Fore +SplineSet +1028 1534 m 1,0,-1 + 1173 1534 l 1,1,-1 + 1173 575 l 1,2,-1 + 1370 575 l 1,3,-1 + 1370 423 l 1,4,-1 + 1173 423 l 1,5,-1 + 1173 0 l 1,6,-1 + 994 0 l 1,7,-1 + 994 425 l 1,8,-1 + 377 425 l 1,9,-1 + 377 551 l 1,10,-1 + 1028 1534 l 1,0,-1 +996 1261 m 1,11,-1 + 547 575 l 1,12,-1 + 996 575 l 1,13,-1 + 996 1261 l 1,11,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: five +Encoding: 53 53 24 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1192 -42 m 0,0,1 + 1171 -42 1171 -42 1163 -33 c 0,2,3 + 1138 -14 1138 -14 1119 63 c 2,4,-1 + 1093 167 l 1,5,6 + 1073 219 1073 219 1017 354 c 2,7,-1 + 922 570 l 1,8,-1 + 906 577 l 1,9,-1 + 868 565 l 2,10,11 + 836 555 836 555 795 555 c 0,12,13 + 662 555 662 555 540 628 c 0,14,15 + 341 747 341 747 341 934 c 2,16,-1 + 341 974 l 2,17,18 + 344 983 344 983 348 1004 c 2,19,-1 + 356 1059 l 1,20,-1 + 360 1096 l 1,21,22 + 360 1143 360 1143 335 1210 c 0,23,24 + 332 1218 332 1218 313 1255 c 1,25,26 + 313 1299 313 1299 336 1300 c 0,27,28 + 368 1301 368 1301 408 1279 c 2,29,-1 + 481 1239 l 1,30,31 + 589 1193 589 1193 589 1127 c 0,32,33 + 589 1104 589 1104 582 1083 c 2,34,-1 + 561 1021 l 2,35,36 + 554 999 554 999 538.5 944 c 128,-1,37 + 523 889 523 889 523 836 c 0,38,39 + 523 691 523 691 681 697 c 0,40,41 + 830 702 830 702 830 823 c 0,42,43 + 830 855 830 855 826 867 c 1,44,45 + 826 1009 826 1009 965 1026 c 1,46,47 + 1034 1006 1034 1006 1079 948 c 128,-1,48 + 1124 890 1124 890 1124 818 c 0,49,50 + 1124 722 1124 722 1041 648 c 1,51,-1 + 1022 638 l 2,52,53 + 1010 633 1010 633 1008 624 c 0,54,55 + 1008 619 1008 619 1090 465 c 2,56,-1 + 1150 352 l 1,57,-1 + 1237 213 l 1,58,59 + 1270 139 1270 139 1270 77 c 0,60,61 + 1270 46 1270 46 1259.5 5.5 c 128,-1,62 + 1249 -35 1249 -35 1192 -42 c 0,0,1 +EndSplineSet +Fore +SplineSet +504 1540 m 1,0,-1 + 1281 1540 l 1,1,-1 + 1281 1385 l 1,2,-1 + 649 1385 l 1,3,-1 + 625 945 l 1,4,5 + 745 1004 745 1004 875 1004 c 0,6,7 + 1074 1004 1074 1004 1205.5 867.5 c 128,-1,8 + 1337 731 1337 731 1337 493 c 0,9,10 + 1337 252 1337 252 1199.5 117 c 128,-1,11 + 1062 -18 1062 -18 856 -18 c 0,12,13 + 718 -18 718 -18 597.5 43.5 c 128,-1,14 + 477 105 477 105 401 218 c 1,15,-1 + 553 331 l 1,16,17 + 566 323 566 323 567 301 c 128,-1,18 + 568 279 568 279 571 274 c 0,19,20 + 588 240 588 240 668 186 c 128,-1,21 + 748 132 748 132 853 132 c 0,22,23 + 983 132 983 132 1073 229 c 128,-1,24 + 1163 326 1163 326 1163 495 c 0,25,26 + 1163 670 1163 670 1071 765.5 c 128,-1,27 + 979 861 979 861 848 861 c 0,28,29 + 770 861 770 861 693.5 823 c 128,-1,30 + 617 785 617 785 561 716 c 1,31,-1 + 453 761 l 1,32,-1 + 504 1540 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: six +Encoding: 54 54 25 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1138 -1 m 2,0,1 + 1148 -18 1148 -18 1148 -35 c 0,2,3 + 1148 -88 1148 -88 1083 -95 c 1,4,5 + 1040 -95 1040 -95 1005 -50 c 0,6,7 + 981 -19 981 -19 946 77 c 0,8,9 + 865 304 865 304 837 344 c 1,10,11 + 735 344 735 344 685 368 c 0,12,13 + 616 401 616 401 522 513 c 0,14,15 + 450 599 450 599 450 684 c 0,16,17 + 450 791 450 791 558 888 c 1,18,19 + 497 957 497 957 471 1001 c 0,20,21 + 435 1060 435 1060 435 1114 c 0,22,23 + 435 1161 435 1161 464 1204 c 0,24,25 + 548 1327 548 1327 733 1319 c 2,26,-1 + 777 1317 l 2,27,28 + 888 1312 888 1312 922 1292 c 0,29,30 + 944 1279 944 1279 962 1233 c 2,31,-1 + 980 1186 l 1,32,-1 + 992 1143 l 1,33,34 + 992 1117 992 1117 968 1105 c 1,35,36 + 952 1108 952 1108 883 1133 c 0,37,38 + 801 1162 801 1162 755 1162 c 0,39,40 + 715 1162 715 1162 686 1148 c 0,41,42 + 582 1112 582 1112 582 1011 c 0,43,44 + 582 959 582 959 621 922 c 1,45,46 + 649 933 649 933 721 951 c 1,47,-1 + 821 958 l 2,48,49 + 868 961 868 961 885 919 c 1,50,-1 + 910 876 l 2,51,52 + 926 854 926 854 929 833 c 1,53,-1 + 924 813 l 1,54,55 + 914 793 914 793 881 795 c 2,56,-1 + 815 799 l 2,57,58 + 728 804 728 804 657 748 c 0,59,60 + 584 689 584 689 584 602 c 0,61,62 + 584 569 584 569 597 537 c 0,63,64 + 606 515 606 515 644 500 c 0,65,66 + 676 487 676 487 705 487 c 0,67,68 + 751 487 751 487 787 513 c 1,69,-1 + 796 530 l 1,70,-1 + 797 575 l 1,71,72 + 807 655 807 655 924 655 c 0,73,74 + 976 655 976 655 1017 600 c 0,75,76 + 1056 549 1056 549 1056 496 c 0,77,78 + 1056 433 1056 433 989 392 c 2,79,-1 + 955 371 l 2,80,81 + 939 361 939 361 939 344 c 1,82,-1 + 950 311 l 1,83,-1 + 1138 -1 l 2,0,1 +EndSplineSet +Fore +SplineSet +951 1553 m 0,0,1 + 1145 1553 1145 1553 1287 1413 c 1,2,-1 + 1167 1283 l 1,3,4 + 1155 1290 1155 1290 1146 1311 c 128,-1,5 + 1137 1332 1137 1332 1130 1337 c 0,6,7 + 1123 1346 1123 1346 1103 1358.5 c 128,-1,8 + 1083 1371 1083 1371 1040 1385.5 c 128,-1,9 + 997 1400 997 1400 953 1400 c 0,10,11 + 911 1400 911 1400 870.5 1390.5 c 128,-1,12 + 830 1381 830 1381 776 1343 c 128,-1,13 + 722 1305 722 1305 682.5 1244.5 c 128,-1,14 + 643 1184 643 1184 612.5 1071 c 128,-1,15 + 582 958 582 958 580 808 c 1,16,17 + 631 894 631 894 718.5 943.5 c 128,-1,18 + 806 993 806 993 904 993 c 0,19,20 + 1076 993 1076 993 1200 856.5 c 128,-1,21 + 1324 720 1324 720 1324 491.5 c 128,-1,22 + 1324 263 1324 263 1196.5 121.5 c 128,-1,23 + 1069 -20 1069 -20 887 -20 c 0,24,25 + 784 -20 784 -20 688 31.5 c 128,-1,26 + 592 83 592 83 526 182 c 0,27,28 + 410 358 410 358 410 703 c 0,29,30 + 410 988 410 988 476 1172 c 0,31,32 + 543 1364 543 1364 673 1458.5 c 128,-1,33 + 803 1553 803 1553 951 1553 c 0,0,1 +889 843 m 0,34,35 + 803 843 803 843 722 786.5 c 128,-1,36 + 641 730 641 730 589 636 c 1,37,38 + 575 425 575 425 664.5 278.5 c 128,-1,39 + 754 132 754 132 894 132 c 0,40,41 + 1002 132 1002 132 1079.5 223 c 128,-1,42 + 1157 314 1157 314 1157 484 c 0,43,44 + 1157 666 1157 666 1076 754.5 c 128,-1,45 + 995 843 995 843 889 843 c 0,34,35 +EndSplineSet +Validated: 33 +EndChar + +StartChar: seven +Encoding: 55 55 26 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1245 808 m 2,0,-1 + 1251 738 l 1,1,-1 + 1253 701 l 2,2,3 + 1262 530 1262 530 1166 402 c 0,4,5 + 1063 264 1063 264 896 264 c 0,6,7 + 581 264 581 264 415 711 c 0,8,9 + 361 857 361 857 328 1047 c 1,10,11 + 328 1118 328 1118 365 1122 c 0,12,13 + 389 1122 389 1122 406 1097 c 128,-1,14 + 423 1072 423 1072 423 1047 c 0,15,16 + 423 984 423 984 458 865 c 0,17,18 + 563 508 563 508 779 453 c 1,19,-1 + 844 444 l 1,20,21 + 930 444 930 444 1000 493 c 0,22,23 + 1075 545 1075 545 1091 626 c 0,24,25 + 1091 646 1091 646 1058 645 c 2,26,-1 + 1014 643 l 2,27,28 + 913 638 913 638 799 706 c 0,29,30 + 670 782 670 782 670 893 c 0,31,32 + 670 1110 670 1110 912 1110 c 0,33,34 + 1014 1110 1014 1110 1129 1013 c 0,35,36 + 1235 923 1235 923 1245 808 c 2,0,-1 +1104 710 m 1,37,-1 + 1116 805 l 1,38,39 + 1116 837 1116 837 1104 872 c 1,40,41 + 1081 998 1081 998 983 998 c 1,42,-1 + 944 993 l 2,43,44 + 920 990 920 990 896 960 c 0,45,46 + 875 934 875 934 869 907 c 1,47,48 + 869 710 869 710 1104 710 c 1,37,-1 +EndSplineSet +Fore +SplineSet +430 1531 m 1,0,-1 + 1298 1531 l 1,1,-1 + 1298 1435 l 1,2,3 + 1140 1081 1140 1081 1005 718 c 0,4,5 + 875 361 875 361 762 0 c 1,6,-1 + 568 0 l 1,7,8 + 705 413 705 413 863 818 c 0,9,10 + 968 1096 968 1096 1084 1369 c 1,11,-1 + 430 1369 l 1,12,-1 + 430 1531 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: eight +Encoding: 56 56 27 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1219 1086 m 0,0,1 + 1109 988 1109 988 924 837 c 2,2,-1 + 667 628 l 2,3,4 + 552 534 552 534 552 434 c 0,5,6 + 552 318 552 318 719 267 c 1,7,8 + 829 283 829 283 864 308 c 0,9,10 + 886 324 886 324 962 427 c 0,11,12 + 994 471 994 471 1066 471 c 1,13,-1 + 1096 467 l 1,14,15 + 1133 457 1133 457 1199 423 c 1,16,17 + 1232 397 1232 397 1232 365 c 0,18,19 + 1232 316 1232 316 1158 248 c 0,20,21 + 1037 137 1037 137 855 137 c 0,22,23 + 797 137 797 137 732 153 c 0,24,25 + 682 165 682 165 621 196 c 0,26,27 + 379 318 379 318 349 515 c 2,28,-1 + 341 567 l 1,29,30 + 341 599 341 599 386 644 c 0,31,32 + 390 648 390 648 433 683 c 2,33,-1 + 694 896 l 1,34,-1 + 1027 1180 l 2,35,36 + 1052 1201 1052 1201 1087 1205 c 0,37,38 + 1119 1205 1119 1205 1158 1180 c 1,39,-1 + 1209 1155 l 2,40,41 + 1240 1140 1240 1140 1242 1123 c 0,42,43 + 1242 1107 1242 1107 1219 1086 c 0,0,1 +EndSplineSet +Fore +SplineSet +888 1555 m 0,0,1 + 1057 1555 1057 1555 1171.5 1449.5 c 128,-1,2 + 1286 1344 1286 1344 1286 1192 c 0,3,4 + 1286 1081 1286 1081 1219.5 981.5 c 128,-1,5 + 1153 882 1153 882 1042 823 c 1,6,7 + 1175 762 1175 762 1256 647.5 c 128,-1,8 + 1337 533 1337 533 1337 400 c 0,9,10 + 1337 223 1337 223 1202 101.5 c 128,-1,11 + 1067 -20 1067 -20 868 -20 c 256,12,13 + 669 -20 669 -20 535 99 c 128,-1,14 + 401 218 401 218 401 390 c 0,15,16 + 401 521 401 521 486 637.5 c 128,-1,17 + 571 754 571 754 708 818 c 1,18,19 + 603 872 603 872 539 969 c 128,-1,20 + 475 1066 475 1066 475 1177 c 0,21,22 + 475 1334 475 1334 594 1444.5 c 128,-1,23 + 713 1555 713 1555 888 1555 c 0,0,1 +836 749 m 1,24,25 + 725 703 725 703 651.5 610.5 c 128,-1,26 + 578 518 578 518 578 413 c 0,27,28 + 578 297 578 297 664 216 c 128,-1,29 + 750 135 750 135 875 135 c 0,30,31 + 996 135 996 135 1079.5 212.5 c 128,-1,32 + 1163 290 1163 290 1163 401.5 c 128,-1,33 + 1163 513 1163 513 1074.5 608 c 128,-1,34 + 986 703 986 703 836 749 c 1,24,25 +875 1410 m 0,35,36 + 775 1410 775 1410 707 1346.5 c 128,-1,37 + 639 1283 639 1283 639 1192 c 0,38,39 + 639 1123 639 1123 681 1060 c 128,-1,40 + 723 997 723 997 773.5 961.5 c 128,-1,41 + 824 926 824 926 868 907 c 1,42,-1 + 910 884 l 1,43,44 + 1001 934 1001 934 1060 1015 c 128,-1,45 + 1119 1096 1119 1096 1119 1182 c 0,46,47 + 1119 1278 1119 1278 1049 1344 c 128,-1,48 + 979 1410 979 1410 875 1410 c 0,35,36 +EndSplineSet +Validated: 1 +EndChar + +StartChar: nine +Encoding: 57 57 28 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1240 102 m 0,0,1 + 1240 -49 1240 -49 1130 -49 c 0,2,3 + 1065 -49 1065 -49 979 63 c 1,4,5 + 979 109 979 109 992 120 c 0,6,7 + 1052 153 1052 153 1052 211 c 0,8,9 + 1052 306 1052 306 911 416 c 0,10,11 + 775 522 775 522 630 643 c 0,12,13 + 461 784 461 784 434 815 c 0,14,15 + 343 919 343 919 343 1048 c 0,16,17 + 343 1170 343 1170 408 1248 c 0,18,19 + 475 1330 475 1330 596 1342 c 2,20,-1 + 635 1346 l 1,21,-1 + 685 1340 l 1,22,23 + 809 1340 809 1340 924 1227 c 0,24,25 + 1026 1127 1026 1127 1026 1006 c 0,26,27 + 1026 971 1026 971 1015 937 c 0,28,29 + 981 832 981 832 920 790.5 c 128,-1,30 + 859 749 859 749 747 749 c 0,31,32 + 728 749 728 749 708 740 c 2,33,-1 + 674 725 l 1,34,-1 + 953 494 l 2,35,36 + 1129 348 1129 348 1184.5 274.5 c 128,-1,37 + 1240 201 1240 201 1240 102 c 0,0,1 +808 937 m 0,38,39 + 847 1002 847 1002 847 1089 c 0,40,41 + 847 1138 847 1138 832 1167 c 1,42,43 + 810 1233 810 1233 726 1233 c 0,44,45 + 634 1233 634 1233 577 1136 c 0,46,47 + 533 1061 533 1061 533 961 c 0,48,49 + 533 845 533 845 596 808 c 1,50,51 + 731 808 731 808 808 937 c 0,38,39 +EndSplineSet +Fore +SplineSet +779 -20 m 0,0,1 + 583 -20 583 -20 440 120 c 1,2,-1 + 560 250 l 1,3,4 + 573 243 573 243 581.5 221 c 128,-1,5 + 590 199 590 199 600 191 c 0,6,7 + 671 135 671 135 784 135 c 0,8,9 + 875 135 875 135 958.5 186.5 c 128,-1,10 + 1042 238 1042 238 1086 346 c 0,11,12 + 1143 476 1143 476 1150 725 c 1,13,14 + 1096 648 1096 648 1012.5 604 c 128,-1,15 + 929 560 929 560 833 560 c 0,16,17 + 661 560 661 560 537 695 c 128,-1,18 + 413 830 413 830 413 1044 c 0,19,20 + 413 1263 413 1263 542 1406.5 c 128,-1,21 + 671 1550 671 1550 853 1550 c 0,22,23 + 983 1550 983 1550 1097.5 1466.5 c 128,-1,24 + 1212 1383 1212 1383 1268 1219 c 0,25,26 + 1320 1064 1320 1064 1320 791 c 0,27,28 + 1320 508 1320 508 1256 336 c 0,29,30 + 1190 159 1190 159 1059.5 69.5 c 128,-1,31 + 929 -20 929 -20 779 -20 c 0,0,1 +850 710 m 0,32,33 + 934 710 934 710 1011.5 760.5 c 128,-1,34 + 1089 811 1089 811 1140 897 c 1,35,36 + 1160 1120 1160 1120 1073 1259 c 128,-1,37 + 986 1398 986 1398 848 1398 c 0,38,39 + 737 1398 737 1398 658.5 1304.5 c 128,-1,40 + 580 1211 580 1211 580 1052 c 0,41,42 + 580 889 580 889 660 799.5 c 128,-1,43 + 740 710 740 710 850 710 c 0,32,33 +EndSplineSet +Validated: 33 +EndChar + +StartChar: colon +Encoding: 58 58 29 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: semicolon +Encoding: 59 59 30 +AltUni2: 00037e.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1282 1169 m 1,0,-1 + 1106 1169 l 1,1,2 + 1093 1136 1093 1136 1093 1109 c 0,3,4 + 1093 1083 1093 1083 1111 987 c 0,5,6 + 1122 929 1122 929 1122 899 c 2,7,-1 + 1122 869 l 1,8,9 + 1117 839 1117 839 1095 773 c 1,10,11 + 1077 766 1077 766 1040 767 c 2,12,-1 + 879 771 l 2,13,14 + 646 777 646 777 559 674 c 0,15,16 + 495 598 495 598 495 509 c 0,17,18 + 495 415 495 415 557.5 347.5 c 128,-1,19 + 620 280 620 280 714 280 c 1,20,-1 + 765 285 l 2,21,22 + 794 291 794 291 820 306 c 0,23,24 + 833 316 833 316 832 345 c 2,25,-1 + 830 400 l 2,26,27 + 826 521 826 521 969 544 c 1,28,29 + 1037 544 1037 544 1100.5 482 c 128,-1,30 + 1164 420 1164 420 1164 352 c 0,31,32 + 1164 317 1164 317 1149 285 c 0,33,34 + 1143 271 1143 271 1102 231 c 0,35,36 + 1065 195 1065 195 1065 182 c 1,37,-1 + 1079 151 l 1,38,39 + 1106 111 1106 111 1184 16 c 0,40,41 + 1297 -122 1297 -122 1297 -189 c 0,42,43 + 1297 -227 1297 -227 1268 -264 c 0,44,45 + 1251 -280 1251 -280 1226 -280 c 0,46,47 + 1183 -280 1183 -280 1116 -239 c 0,48,49 + 1044 -195 1044 -195 1044 -156 c 0,50,51 + 1044 -126 1044 -126 1072.5 -101 c 128,-1,52 + 1101 -76 1101 -76 1104 -60 c 0,53,54 + 1104 -16 1104 -16 1006 120 c 1,55,-1 + 988 139 l 2,56,57 + 973 151 973 151 948 155 c 1,58,-1 + 923 151 l 1,59,-1 + 863 146 l 2,60,61 + 851 145 851 145 837 145 c 0,62,63 + 697 145 697 145 534 274 c 0,64,65 + 361 411 361 411 339 609 c 1,66,67 + 339 763 339 763 447 844 c 0,68,69 + 544 918 544 918 703 916 c 2,70,-1 + 806 915 l 2,71,72 + 882 914 882 914 898 921 c 0,73,74 + 927 933 927 933 943 993 c 1,75,-1 + 943 1169 l 1,76,-1 + 286 1169 l 1,77,-1 + 286 1325 l 1,78,-1 + 1282 1325 l 1,79,-1 + 1282 1169 l 1,0,-1 +EndSplineSet +Fore +SplineSet +727 1158 m 1,0,-1 + 744 1189 l 1,1,2 + 934 1126 934 1126 1050.5 959.5 c 128,-1,3 + 1167 793 1167 793 1167 587 c 0,4,5 + 1167 344 1167 344 1019 170 c 128,-1,6 + 871 -4 871 -4 669 -4 c 0,7,8 + 555 -4 555 -4 486 70.5 c 128,-1,9 + 417 145 417 145 417 259 c 0,10,11 + 417 451 417 451 571 606.5 c 128,-1,12 + 725 762 725 762 877 762 c 0,13,14 + 963 762 963 762 1028 700 c 1,15,16 + 1012 1052 1012 1052 727 1158 c 1,0,-1 +876 719 m 0,17,18 + 756 719 756 719 653.5 547 c 128,-1,19 + 551 375 551 375 551 206 c 0,20,21 + 551 124 551 124 591 80 c 128,-1,22 + 631 36 631 36 698 36 c 0,23,24 + 806 36 806 36 908.5 207 c 128,-1,25 + 1011 378 1011 378 1011 552 c 0,26,27 + 1011 719 1011 719 876 719 c 0,17,18 +EndSplineSet +Validated: 1 +EndChar + +StartChar: less +Encoding: 60 60 31 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: equal +Encoding: 61 61 32 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: greater +Encoding: 62 62 33 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: question +Encoding: 63 63 34 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: at +Encoding: 64 64 35 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +2722 -1200 m 1,0,-1 + 2769 -1200 l 1,1,2 + 2672 -1350 2672 -1350 2542 -1451 c 0,3,4 + 2357 -1594 2357 -1594 2105.5 -1672 c 128,-1,5 + 1854 -1750 1854 -1750 1584 -1750 c 0,6,7 + 1189 -1750 1189 -1750 863 -1597.5 c 128,-1,8 + 537 -1445 537 -1445 396 -1200 c 1,9,-1 + 450 -1200 l 1,10,11 + 537 -1322 537 -1322 687.5 -1400.5 c 128,-1,12 + 838 -1479 838 -1479 1069 -1518 c 128,-1,13 + 1300 -1557 1300 -1557 1551 -1557 c 0,14,15 + 1824 -1557 1824 -1557 2047 -1524 c 0,16,17 + 2223 -1498 2223 -1498 2329.5 -1461.5 c 128,-1,18 + 2436 -1425 2436 -1425 2534 -1362.5 c 128,-1,19 + 2632 -1300 2632 -1300 2722 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: A +Encoding: 65 65 36 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: B +Encoding: 66 66 37 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: C +Encoding: 67 67 38 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: D +Encoding: 68 68 39 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1381 1169 m 1,0,-1 + 1265 1169 l 1,1,-1 + 1265 68 l 2,2,3 + 1265 -3 1265 -3 1252 -3 c 0,4,5 + 1238 -3 1238 -3 1152 79 c 0,6,7 + 1094 134 1094 134 1081 169 c 1,8,9 + 1072 206 1072 206 1072 358 c 1,10,-1 + 965 304 l 2,11,12 + 884 263 884 263 795 263 c 0,13,14 + 696 263 696 263 632 293 c 0,15,16 + 575 319 575 319 499 394 c 0,17,18 + 383 507 383 507 383 639 c 0,19,20 + 383 696 383 696 414 731 c 2,21,-1 + 476 801 l 1,22,23 + 460 829 460 829 422 858 c 1,24,-1 + 376 885 l 2,25,26 + 354 898 354 898 345 906 c 0,27,28 + 310 929 310 929 292 981 c 1,29,30 + 280 1046 280 1046 280 1101 c 2,31,-1 + 280 1123 l 2,32,33 + 280 1169 280 1169 201 1169 c 1,34,-1 + 201 1325 l 1,35,-1 + 433 1325 l 1,36,-1 + 528 1169 l 1,37,-1 + 483 1169 l 1,38,-1 + 454 1078 l 2,39,40 + 445 1049 445 1049 445 1007 c 0,41,42 + 445 911 445 911 538 838 c 1,43,44 + 624 871 624 871 690 871 c 0,45,46 + 758 871 758 871 808 811 c 2,47,-1 + 837 776 l 2,48,49 + 858 751 858 751 858 737 c 0,50,51 + 858 711 858 711 792 711 c 0,52,53 + 686 711 686 711 616 669 c 0,54,55 + 532 618 532 618 532 519 c 0,56,57 + 532 400 532 400 658 406 c 2,58,-1 + 701 408 l 2,59,60 + 818 413 818 413 940 486 c 0,61,62 + 1045 549 1045 549 1092 622 c 1,63,-1 + 1092 1169 l 1,64,-1 + 744 1169 l 1,65,-1 + 642 1325 l 1,66,-1 + 1381 1325 l 1,67,-1 + 1381 1169 l 1,0,-1 +1224 -400 m 1,68,-1 + 264 -400 l 1,69,-1 + 264 -312 l 1,70,-1 + 1224 -312 l 1,71,-1 + 1224 -400 l 1,68,-1 +EndSplineSet +Fore +SplineSet +1271 -400 m 1,0,-1 + 311 -400 l 1,1,-1 + 311 -300 l 1,2,-1 + 1271 -300 l 1,3,-1 + 1271 -400 l 1,0,-1 +292 1532 m 1,4,-1 + 648 1532 l 2,5,6 + 766 1532 766 1532 847.5 1516 c 128,-1,7 + 929 1500 929 1500 1005 1450 c 0,8,9 + 1150 1357 1150 1357 1220 1177.5 c 128,-1,10 + 1290 998 1290 998 1290 770 c 0,11,12 + 1290 517 1290 517 1202.5 330 c 128,-1,13 + 1115 143 1115 143 951 59 c 0,14,15 + 830 -2 830 -2 619 -2 c 2,16,-1 + 292 -2 l 1,17,-1 + 292 1532 l 1,4,-1 +453 1387 m 1,18,-1 + 453 133 l 1,19,-1 + 610 133 l 2,20,21 + 701 133 701 133 766.5 146.5 c 128,-1,22 + 832 160 832 160 896 202 c 0,23,24 + 1117 352 1117 352 1117 745 c 0,25,26 + 1117 1143 1117 1143 925 1301 c 0,27,28 + 861 1355 861 1355 794.5 1371 c 128,-1,29 + 728 1387 728 1387 638 1387 c 2,30,-1 + 453 1387 l 1,18,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: E +Encoding: 69 69 40 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +1303 3639 m 1,0,-1 + 1303 2498 l 1,1,-1 + 1138 2498 l 1,2,-1 + 1138 3309 l 1,3,-1 + 1 3309 l 1,4,-1 + 1 3640 l 1,5,-1 + 1229 3640 l 1,6,-1 + 1229 3639 l 1,7,-1 + 1303 3639 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: F +Encoding: 70 70 41 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: G +Encoding: 71 71 42 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1397 1169 m 1,0,-1 + 1291 1169 l 1,1,-1 + 1291 59 l 2,2,3 + 1291 -1 1291 -1 1262 -2 c 0,4,5 + 1235 0 1235 0 1115 155 c 1,6,7 + 1096 193 1096 193 1096 247 c 2,8,-1 + 1096 1169 l 1,9,-1 + 625 1169 l 1,10,-1 + 686 891 l 2,11,12 + 715 760 715 760 715 660 c 0,13,14 + 715 525 715 525 650 445 c 0,15,16 + 604 389 604 389 533 389 c 1,17,18 + 432 400 432 400 340 528 c 0,19,20 + 257 643 257 643 246 750 c 1,21,22 + 246 830 246 830 300 830 c 0,23,24 + 336 830 336 830 385 797 c 0,25,26 + 419 774 419 774 442 774 c 0,27,28 + 518 773 518 773 518 979 c 0,29,30 + 518 1040 518 1040 509 1097 c 2,31,-1 + 498 1169 l 1,32,-1 + 186 1169 l 1,33,-1 + 186 1325 l 1,34,-1 + 1397 1325 l 1,35,-1 + 1397 1169 l 1,0,-1 +1209 -400 m 1,36,-1 + 249 -400 l 1,37,-1 + 249 -312 l 1,38,-1 + 1209 -312 l 1,39,-1 + 1209 -400 l 1,36,-1 +EndSplineSet +Fore +SplineSet +1272 -400 m 1,0,-1 + 312 -400 l 1,1,-1 + 312 -300 l 1,2,-1 + 1272 -300 l 1,3,-1 + 1272 -400 l 1,0,-1 +862 1550 m 0,4,5 + 1005 1550 1005 1550 1123 1481.5 c 128,-1,6 + 1241 1413 1241 1413 1307 1295 c 1,7,-1 + 1187 1172 l 1,8,9 + 1172 1182 1172 1182 1155 1219 c 0,10,11 + 1118 1300 1118 1300 1039.5 1350 c 128,-1,12 + 961 1400 961 1400 862 1400 c 0,13,14 + 759 1400 759 1400 667 1343.5 c 128,-1,15 + 575 1287 575 1287 518 1182 c 0,16,17 + 440 1037 440 1037 440 789 c 0,18,19 + 440 432 440 432 587 265 c 0,20,21 + 703 132 703 132 877 132 c 0,22,23 + 1022 132 1022 132 1152 226 c 1,24,-1 + 1152 589 l 1,25,-1 + 875 589 l 1,26,-1 + 875 739 l 1,27,-1 + 1312 739 l 1,28,-1 + 1312 140 l 1,29,30 + 1096 -20 1096 -20 862 -20 c 0,31,32 + 779 -20 779 -20 698 4.5 c 128,-1,33 + 617 29 617 29 538 87 c 128,-1,34 + 459 145 459 145 401.5 229.5 c 128,-1,35 + 344 314 344 314 307 449.5 c 128,-1,36 + 270 585 270 585 270 752 c 0,37,38 + 270 943 270 943 313 1092 c 128,-1,39 + 356 1241 356 1241 420 1324.5 c 128,-1,40 + 484 1408 484 1408 567.5 1462 c 128,-1,41 + 651 1516 651 1516 722 1533 c 128,-1,42 + 793 1550 793 1550 862 1550 c 0,4,5 +EndSplineSet +Validated: 1 +EndChar + +StartChar: H +Encoding: 72 72 43 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: I +Encoding: 73 73 44 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: J +Encoding: 74 74 45 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: K +Encoding: 75 75 46 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: L +Encoding: 76 76 47 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-428 -824 m 1,0,-1 + -492 -902 l 1,1,-1 + -544 -960 l 1,2,3 + -566 -972 -566 -972 -578 -972 c 0,4,5 + -594 -972 -594 -972 -662 -892 c 2,6,-1 + -725 -820 l 1,7,-1 + -725 -783 l 1,8,-1 + -650 -681 l 2,9,10 + -622 -643 -622 -643 -594 -627 c 1,11,12 + -566 -627 -566 -627 -428 -783 c 1,13,-1 + -426 -804 l 1,14,-1 + -428 -824 l 1,0,-1 +-873 -824 m 1,15,-1 + -937 -902 l 1,16,-1 + -989 -960 l 1,17,18 + -1011 -972 -1011 -972 -1023 -972 c 0,19,20 + -1039 -972 -1039 -972 -1107 -892 c 2,21,-1 + -1170 -820 l 1,22,-1 + -1170 -783 l 1,23,-1 + -1095 -681 l 2,24,25 + -1067 -643 -1067 -643 -1039 -627 c 1,26,27 + -1011 -627 -1011 -627 -873 -783 c 1,28,-1 + -871 -804 l 1,29,-1 + -873 -824 l 1,15,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: M +Encoding: 77 77 48 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1394 1169 m 1,0,-1 + 1253 1169 l 1,1,-1 + 1253 56 l 1,2,3 + 1257 -4 1257 -4 1230 0 c 1,4,5 + 1205 -4 1205 -4 1137.5 68 c 128,-1,6 + 1070 140 1070 140 1062 176 c 1,7,-1 + 1062 529 l 1,8,-1 + 659 529 l 1,9,10 + 624 512 624 512 627 480 c 2,11,-1 + 631 432 l 1,12,-1 + 631 407 l 2,13,14 + 631 390 631 390 627 372 c 1,15,16 + 627 347 627 347 596 330 c 0,17,18 + 569 315 569 315 542 315 c 0,19,20 + 488 315 488 315 431 379 c 2,21,-1 + 340 482 l 1,22,23 + 251 557 251 557 251 626 c 0,24,25 + 251 712 251 712 338 712 c 2,26,-1 + 376 712 l 1,27,-1 + 405 714 l 1,28,-1 + 434 724 l 1,29,-1 + 434 1169 l 1,30,-1 + 189 1169 l 1,31,-1 + 189 1325 l 1,32,-1 + 1394 1325 l 1,33,-1 + 1394 1169 l 1,0,-1 +1068 706 m 1,34,-1 + 1068 1169 l 1,35,-1 + 618 1169 l 1,36,-1 + 618 706 l 1,37,-1 + 1068 706 l 1,34,-1 +887 1370 m 1,38,-1 + 791 1370 l 1,39,-1 + 791 2058 l 1,40,-1 + 887 2058 l 1,41,-1 + 887 1370 l 1,38,-1 +EndSplineSet +Fore +SplineSet +844 2000 m 1,0,-1 + 844 1300 l 1,1,-1 + 744 1300 l 1,2,-1 + 744 2000 l 1,3,-1 + 844 2000 l 1,0,-1 +277 1532 m 1,4,-1 + 412 1532 l 1,5,-1 + 791 782 l 1,6,-1 + 1176 1534 l 1,7,-1 + 1307 1534 l 1,8,-1 + 1307 -2 l 1,9,-1 + 1145 -2 l 1,10,-1 + 1145 1156 l 1,11,-1 + 813 539 l 1,12,-1 + 746 539 l 1,13,-1 + 437 1148 l 1,14,-1 + 437 -2 l 1,15,-1 + 277 -2 l 1,16,-1 + 277 1532 l 1,4,-1 +EndSplineSet +Validated: 1 +Kerns2: 88 190 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: N +Encoding: 78 78 49 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1093 1168 m 1,0,-1 + 1004 1168 l 1,1,-1 + 1004 75 l 2,2,3 + 1005 1 1005 1 980 0 c 0,4,5 + 954 -1 954 -1 883 73 c 2,6,-1 + 832 130 l 2,7,8 + 806 159 806 159 801 188 c 1,9,-1 + 802 639 l 1,10,-1 + 489 639 l 2,11,12 + 454 639 454 639 424 614 c 0,13,14 + 404 598 404 598 400 566 c 1,15,-1 + 404 548 l 1,16,17 + 434 455 434 455 434 401 c 0,18,19 + 434 336 434 336 402 325 c 1,20,-1 + 342 318 l 1,21,22 + 282 318 282 318 223 364 c 1,23,-1 + 158 428 l 2,24,25 + 59 525 59 525 59 634 c 0,26,27 + 59 816 59 816 324 808 c 1,28,-1 + 823 807 l 1,29,-1 + 823 1168 l 1,30,-1 + 0 1168 l 1,31,-1 + 0 1325 l 1,32,-1 + 1093 1325 l 1,33,-1 + 1093 1168 l 1,0,-1 +1582 1169 m 1,34,-1 + 1433 1169 l 1,35,-1 + 1434 20 l 2,36,37 + 1434 -6 1434 -6 1423 -6 c 0,38,39 + 1414 -6 1414 -6 1394 8 c 2,40,-1 + 1339 58 l 1,41,-1 + 1285 112 l 2,42,43 + 1262 135 1262 135 1257 166 c 1,44,-1 + 1257 1169 l 1,45,-1 + 1095 1169 l 1,46,-1 + 1095 1325 l 1,47,-1 + 1283 1325 l 1,48,-1 + 1286 1365 l 2,49,50 + 1291 1433 1291 1433 1252 1520 c 2,51,-1 + 1211 1611 l 2,52,53 + 1181 1677 1181 1677 1114.5 1721.5 c 128,-1,54 + 1048 1766 1048 1766 976 1766 c 0,55,56 + 945 1766 945 1766 917 1757 c 0,57,58 + 769 1710 769 1710 777 1492 c 2,59,-1 + 779 1439 l 2,60,61 + 781 1394 781 1394 753 1394 c 0,62,63 + 700 1393 700 1393 639 1497 c 0,64,65 + 582 1594 582 1594 582 1653 c 0,66,67 + 582 1742 582 1742 640 1828 c 0,68,69 + 727 1956 727 1956 890 1956 c 0,70,71 + 1075 1956 1075 1956 1187 1807 c 0,72,73 + 1242 1733 1242 1733 1283 1642 c 0,74,75 + 1318 1565 1318 1565 1378 1325 c 1,76,-1 + 1582 1325 l 1,77,-1 + 1582 1169 l 1,34,-1 +1299 -400 m 1,78,-1 + 339 -400 l 1,79,-1 + 339 -312 l 1,80,-1 + 1299 -312 l 1,81,-1 + 1299 -400 l 1,78,-1 +EndSplineSet +Fore +SplineSet +1273 -400 m 1,0,-1 + 313 -400 l 1,1,-1 + 313 -300 l 1,2,-1 + 1273 -300 l 1,3,-1 + 1273 -400 l 1,0,-1 +295 0 m 1,4,-1 + 295 1532 l 1,5,-1 + 462 1532 l 1,6,-1 + 1106 396 l 1,7,-1 + 1106 1534 l 1,8,-1 + 1288 1534 l 1,9,10 + 1290 1519 1290 1519 1280 1502 c 0,11,12 + 1271 1485 1271 1485 1271 1468 c 2,13,-1 + 1271 -2 l 1,14,-1 + 1135 -2 l 1,15,-1 + 460 1205 l 1,16,-1 + 460 0 l 1,17,-1 + 295 0 l 1,4,-1 +EndSplineSet +Validated: 1 +Kerns2: 88 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: O +Encoding: 79 79 50 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: P +Encoding: 80 80 51 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Q +Encoding: 81 81 52 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +271 3639 m 1,0,-1 + 271 3640 l 1,1,-1 + 1499 3640 l 1,2,-1 + 1499 3309 l 1,3,-1 + 362 3309 l 1,4,-1 + 362 2498 l 1,5,-1 + 197 2498 l 1,6,-1 + 197 3639 l 1,7,-1 + 271 3639 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: R +Encoding: 82 82 53 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +955 1489 m 2,0,1 + 1002 1433 1002 1433 1002 1399 c 0,2,3 + 1002 1382 1002 1382 985 1379 c 0,4,5 + 952 1379 952 1379 910 1433 c 2,6,-1 + 769 1613 l 2,7,8 + 739 1651 739 1651 683 1684 c 0,9,10 + 652 1698 652 1698 623 1698 c 1,11,-1 + 580 1692 l 1,12,-1 + 536 1685 l 1,13,-1 + 508 1680 l 1,14,-1 + 479 1678 l 2,15,16 + 432 1675 432 1675 358 1777 c 2,17,-1 + 324 1824 l 2,18,19 + 297 1861 297 1861 297 1877 c 0,20,21 + 296 1907 296 1907 368 1907 c 0,22,23 + 606 1907 606 1907 789 1688 c 2,24,-1 + 955 1489 l 2,0,1 +1287 1169 m 1,25,-1 + 1019 1169 l 1,26,27 + 1019 1139 1019 1139 1021 1108 c 0,28,29 + 1023 1086 1023 1086 1027 1028 c 2,30,-1 + 1036 889 l 2,31,32 + 1038 858 1038 858 1038 839 c 0,33,34 + 1038 646 1038 646 942 507 c 0,35,36 + 903 450 903 450 903 402 c 0,37,38 + 903 363 903 363 928 336 c 0,39,40 + 1003 253 1003 253 1075 204 c 2,41,-1 + 1234 95 l 2,42,43 + 1287 59 1287 59 1287 -1 c 0,44,45 + 1287 -50 1287 -50 1246 -50 c 0,46,47 + 1220 -50 1220 -50 1190 -25 c 2,48,-1 + 1013 122 l 1,49,-1 + 840 274 l 2,50,51 + 769 336 769 336 678 448 c 0,52,53 + 667 461 667 461 632 510 c 0,54,55 + 595 556 595 556 533 656 c 0,56,57 + 525 673 525 673 520 689 c 2,58,-1 + 511 747 l 1,59,60 + 511 859 511 859 597 859 c 0,61,62 + 625 859 625 859 682 833.5 c 128,-1,63 + 739 808 739 808 768 808 c 0,64,65 + 792 808 792 808 807 816 c 1,66,67 + 850 879 850 879 850 994 c 0,68,69 + 850 1061 850 1061 840 1115 c 0,70,71 + 838 1144 838 1144 830 1169 c 1,72,-1 + 452 1169 l 1,73,-1 + 452 1325 l 1,74,-1 + 1287 1325 l 1,75,-1 + 1287 1169 l 1,25,-1 +1269 -400 m 1,76,-1 + 456 -400 l 1,77,-1 + 456 -312 l 1,78,-1 + 1269 -312 l 1,79,-1 + 1269 -400 l 1,76,-1 +EndSplineSet +Fore +SplineSet +1273 -400 m 1,0,-1 + 313 -400 l 1,1,-1 + 313 -300 l 1,2,-1 + 1273 -300 l 1,3,-1 + 1273 -400 l 1,0,-1 +291 1531 m 1,4,-1 + 743 1531 l 2,5,6 + 935 1531 935 1531 1036 1479 c 0,7,8 + 1139 1428 1139 1428 1195.5 1328.5 c 128,-1,9 + 1252 1229 1252 1229 1252 1111 c 0,10,11 + 1252 958 1252 958 1166 839 c 128,-1,12 + 1080 720 1080 720 940 683 c 1,13,-1 + 1294 0 l 1,14,-1 + 1102 0 l 1,15,-1 + 763 676 l 1,16,-1 + 465 676 l 1,17,-1 + 465 0 l 1,18,-1 + 291 0 l 1,19,-1 + 291 1531 l 1,4,-1 +465 1369 m 1,20,-1 + 465 828 l 1,21,-1 + 763 828 l 2,22,23 + 878 828 878 828 940 858 c 0,24,25 + 1006 892 1006 892 1040.5 954.5 c 128,-1,26 + 1075 1017 1075 1017 1075 1091 c 0,27,28 + 1075 1170 1075 1170 1038 1236.5 c 128,-1,29 + 1001 1303 1001 1303 930 1337 c 0,30,31 + 866 1369 866 1369 743 1369 c 2,32,-1 + 465 1369 l 1,20,-1 +EndSplineSet +Validated: 1 +Kerns2: 79 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: S +Encoding: 83 83 54 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: T +Encoding: 84 84 55 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: U +Encoding: 85 85 56 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-406 2303 m 1,0,-1 + -470 2225 l 1,1,-1 + -522 2167 l 1,2,3 + -544 2155 -544 2155 -556 2155 c 0,4,5 + -572 2155 -572 2155 -640 2235 c 2,6,-1 + -703 2307 l 1,7,-1 + -703 2344 l 1,8,-1 + -628 2446 l 2,9,10 + -600 2484 -600 2484 -572 2500 c 1,11,12 + -544 2500 -544 2500 -406 2344 c 1,13,-1 + -404 2323 l 1,14,-1 + -406 2303 l 1,0,-1 +-889 2303 m 1,15,-1 + -953 2225 l 1,16,-1 + -1005 2167 l 1,17,18 + -1027 2155 -1027 2155 -1039 2155 c 0,19,20 + -1055 2155 -1055 2155 -1123 2235 c 2,21,-1 + -1186 2307 l 1,22,-1 + -1186 2344 l 1,23,-1 + -1111 2446 l 2,24,25 + -1083 2484 -1083 2484 -1055 2500 c 1,26,27 + -1027 2500 -1027 2500 -889 2344 c 1,28,-1 + -887 2323 l 1,29,-1 + -889 2303 l 1,15,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: V +Encoding: 86 86 57 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: W +Encoding: 87 87 58 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-46 3643 m 1,0,-1 + 1547 3643 l 1,1,-1 + 1565 3625 l 1,2,-1 + 1565 3328 l 1,3,-1 + 1547 3310 l 1,4,-1 + 917 3310 l 1,5,-1 + 917 3166 l 1,6,-1 + 899 3148 l 1,7,-1 + 602 3148 l 1,8,-1 + 584 3166 l 1,9,-1 + 584 3310 l 1,10,-1 + -46 3310 l 1,11,-1 + -64 3328 l 1,12,-1 + -64 3625 l 1,13,-1 + -46 3643 l 1,0,-1 +602 2995 m 1,14,-1 + 899 2995 l 1,15,-1 + 917 2977 l 1,16,-1 + 917 2842 l 1,17,-1 + 899 2824 l 1,18,-1 + 602 2824 l 1,19,-1 + 584 2842 l 1,20,-1 + 584 2977 l 1,21,-1 + 602 2995 l 1,14,-1 +602 2671 m 1,22,-1 + 899 2671 l 1,23,-1 + 917 2653 l 1,24,-1 + 917 2518 l 1,25,-1 + 899 2500 l 1,26,-1 + 602 2500 l 1,27,-1 + 584 2518 l 1,28,-1 + 584 2653 l 1,29,-1 + 602 2671 l 1,22,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: X +Encoding: 88 88 59 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Y +Encoding: 89 89 60 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Z +Encoding: 90 90 61 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: bracketleft +Encoding: 91 91 62 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1038 1169 m 1,0,-1 + 862 1169 l 1,1,2 + 849 1136 849 1136 849 1109 c 0,3,4 + 849 1083 849 1083 867 987 c 0,5,6 + 878 929 878 929 878 899 c 2,7,-1 + 878 869 l 1,8,9 + 873 839 873 839 851 773 c 1,10,11 + 833 766 833 766 796 767 c 2,12,-1 + 635 771 l 2,13,14 + 402 777 402 777 315 674 c 0,15,16 + 251 598 251 598 251 509 c 0,17,18 + 251 415 251 415 313.5 347.5 c 128,-1,19 + 376 280 376 280 470 280 c 1,20,-1 + 521 285 l 2,21,22 + 550 291 550 291 576 306 c 0,23,24 + 589 316 589 316 588 345 c 2,25,-1 + 586 400 l 2,26,27 + 582 521 582 521 725 544 c 1,28,29 + 793 544 793 544 856.5 482 c 128,-1,30 + 920 420 920 420 920 352 c 0,31,32 + 920 317 920 317 905 285 c 0,33,34 + 899 271 899 271 858 231 c 0,35,36 + 821 195 821 195 821 182 c 1,37,-1 + 835 151 l 1,38,39 + 862 111 862 111 940 16 c 0,40,41 + 1053 -122 1053 -122 1053 -189 c 0,42,43 + 1053 -227 1053 -227 1024 -264 c 0,44,45 + 1007 -280 1007 -280 982 -280 c 0,46,47 + 939 -280 939 -280 872 -239 c 0,48,49 + 800 -195 800 -195 800 -156 c 0,50,51 + 800 -126 800 -126 828.5 -101 c 128,-1,52 + 857 -76 857 -76 860 -60 c 0,53,54 + 860 -16 860 -16 762 120 c 1,55,-1 + 744 139 l 2,56,57 + 729 151 729 151 704 155 c 1,58,-1 + 679 151 l 1,59,-1 + 619 146 l 2,60,61 + 607 145 607 145 593 145 c 0,62,63 + 453 145 453 145 290 274 c 0,64,65 + 117 411 117 411 95 609 c 1,66,67 + 95 763 95 763 203 844 c 0,68,69 + 300 918 300 918 459 916 c 2,70,-1 + 562 915 l 2,71,72 + 638 914 638 914 654 921 c 0,73,74 + 683 933 683 933 699 993 c 1,75,-1 + 699 1169 l 1,76,-1 + 42 1169 l 1,77,-1 + 42 1325 l 1,78,-1 + 1038 1325 l 1,79,-1 + 1038 1169 l 1,0,-1 +1540 1169 m 1,80,-1 + 1384 1169 l 1,81,-1 + 1383 44 l 2,82,83 + 1383 1 1383 1 1372 -3 c 1,84,85 + 1357 -3 1357 -3 1283 66 c 2,86,-1 + 1228 117 l 2,87,88 + 1206 137 1206 137 1202 170 c 1,89,-1 + 1202 1169 l 1,90,-1 + 1042 1169 l 1,91,-1 + 1042 1325 l 1,92,-1 + 1540 1325 l 1,93,-1 + 1540 1169 l 1,80,-1 +EndSplineSet +Fore +SplineSet +331 1157 m 1,0,-1 + 348 1189 l 1,1,2 + 538 1126 538 1126 654.5 959.5 c 128,-1,3 + 771 793 771 793 771 587 c 0,4,5 + 771 344 771 344 623 170 c 128,-1,6 + 475 -4 475 -4 273 -4 c 0,7,8 + 159 -4 159 -4 90 70 c 128,-1,9 + 21 144 21 144 21 259 c 0,10,11 + 21 450 21 450 175 606 c 128,-1,12 + 329 762 329 762 481 762 c 0,13,14 + 567 762 567 762 632 700 c 1,15,16 + 616 1052 616 1052 331 1157 c 1,0,-1 +480 719 m 0,17,18 + 360 719 360 719 257.5 546.5 c 128,-1,19 + 155 374 155 374 155 206 c 0,20,21 + 155 124 155 124 195 80 c 128,-1,22 + 235 36 235 36 302 36 c 0,23,24 + 410 36 410 36 512.5 207 c 128,-1,25 + 615 378 615 378 615 552 c 0,26,27 + 615 719 615 719 480 719 c 0,17,18 +1564 742 m 1,28,-1 + 1403 183 l 1,29,-1 + 1385 108 l 2,30,31 + 1382 97 1382 97 1382 90 c 0,32,33 + 1382 77 1382 77 1391 67 c 0,34,35 + 1397 59 1397 59 1407 59 c 0,36,37 + 1418 59 1418 59 1435 73 c 0,38,39 + 1467 96 1467 96 1521 172 c 1,40,-1 + 1549 152 l 1,41,42 + 1492 66 1492 66 1432 21 c 128,-1,43 + 1372 -24 1372 -24 1320 -24 c 0,44,45 + 1285 -24 1285 -24 1267 -6.5 c 128,-1,46 + 1249 11 1249 11 1249 45 c 0,47,48 + 1249 86 1249 86 1268 152 c 2,49,-1 + 1285 214 l 1,50,51 + 1177 73 1177 73 1086 16 c 0,52,53 + 1021 -24 1021 -24 958 -24 c 0,54,55 + 898 -24 898 -24 854.5 26 c 128,-1,56 + 811 76 811 76 811 163 c 0,57,58 + 811 294 811 294 889.5 440 c 128,-1,59 + 968 586 968 586 1089 673 c 0,60,61 + 1184 742 1184 742 1268 742 c 0,62,63 + 1319 742 1319 742 1352.5 716 c 128,-1,64 + 1386 690 1386 690 1403 629 c 1,65,-1 + 1433 723 l 1,66,-1 + 1564 742 l 1,28,-1 +1270 700 m 0,67,68 + 1217 700 1217 700 1158 650 c 0,69,70 + 1074 580 1074 580 1008.5 442 c 128,-1,71 + 943 304 943 304 943 193 c 0,72,73 + 943 137 943 137 971 104.5 c 128,-1,74 + 999 72 999 72 1035 72 c 0,75,76 + 1125 72 1125 72 1230 205 c 0,77,78 + 1372 381 1372 381 1372 567 c 0,79,80 + 1372 637 1372 637 1344.5 668.5 c 128,-1,81 + 1317 700 1317 700 1270 700 c 0,67,68 +EndSplineSet +Validated: 1 +EndChar + +StartChar: backslash +Encoding: 92 92 63 +Width: 3164 +Flags: W +LayerCount: 2 +Back +SplineSet +2740 1170 m 1,0,-1 + 2472 1170 l 1,1,2 + 2472 1140 2472 1140 2474 1109 c 0,3,4 + 2476 1087 2476 1087 2480 1029 c 2,5,-1 + 2489 890 l 2,6,7 + 2491 859 2491 859 2491 840 c 0,8,9 + 2491 647 2491 647 2395 508 c 0,10,11 + 2356 451 2356 451 2356 403 c 0,12,13 + 2356 364 2356 364 2381 337 c 0,14,15 + 2456 254 2456 254 2528 205 c 2,16,-1 + 2687 96 l 2,17,18 + 2740 60 2740 60 2740 0 c 0,19,20 + 2740 -49 2740 -49 2699 -49 c 0,21,22 + 2673 -49 2673 -49 2643 -24 c 2,23,-1 + 2466 123 l 1,24,-1 + 2293 275 l 2,25,26 + 2222 337 2222 337 2131 449 c 0,27,28 + 2120 462 2120 462 2085 511 c 0,29,30 + 2048 557 2048 557 1986 657 c 0,31,32 + 1978 674 1978 674 1973 690 c 2,33,-1 + 1964 748 l 1,34,35 + 1964 860 1964 860 2050 860 c 0,36,37 + 2078 860 2078 860 2135 834.5 c 128,-1,38 + 2192 809 2192 809 2221 809 c 0,39,40 + 2245 809 2245 809 2260 817 c 1,41,42 + 2303 880 2303 880 2303 995 c 0,43,44 + 2303 1062 2303 1062 2293 1116 c 0,45,46 + 2291 1145 2291 1145 2283 1170 c 1,47,-1 + 1905 1170 l 1,48,-1 + 1905 1326 l 1,49,-1 + 2740 1326 l 1,50,-1 + 2740 1170 l 1,0,-1 +1896 1170 m 1,51,-1 + 1720 1170 l 1,52,53 + 1707 1137 1707 1137 1707 1110 c 0,54,55 + 1707 1084 1707 1084 1725 988 c 0,56,57 + 1736 930 1736 930 1736 900 c 2,58,-1 + 1736 870 l 1,59,60 + 1731 840 1731 840 1709 774 c 1,61,62 + 1691 767 1691 767 1654 768 c 2,63,-1 + 1493 772 l 2,64,65 + 1260 778 1260 778 1173 675 c 0,66,67 + 1109 599 1109 599 1109 510 c 0,68,69 + 1109 416 1109 416 1171.5 348.5 c 128,-1,70 + 1234 281 1234 281 1328 281 c 1,71,-1 + 1379 286 l 2,72,73 + 1408 292 1408 292 1434 307 c 0,74,75 + 1447 317 1447 317 1446 346 c 2,76,-1 + 1444 401 l 2,77,78 + 1440 522 1440 522 1583 545 c 1,79,80 + 1651 545 1651 545 1714.5 483 c 128,-1,81 + 1778 421 1778 421 1778 353 c 0,82,83 + 1778 318 1778 318 1763 286 c 0,84,85 + 1757 272 1757 272 1716 232 c 0,86,87 + 1679 196 1679 196 1679 183 c 1,88,-1 + 1693 152 l 1,89,90 + 1720 112 1720 112 1798 17 c 0,91,92 + 1911 -121 1911 -121 1911 -188 c 0,93,94 + 1911 -226 1911 -226 1882 -263 c 0,95,96 + 1865 -279 1865 -279 1840 -279 c 0,97,98 + 1797 -279 1797 -279 1730 -238 c 0,99,100 + 1658 -194 1658 -194 1658 -155 c 0,101,102 + 1658 -125 1658 -125 1686.5 -100 c 128,-1,103 + 1715 -75 1715 -75 1718 -59 c 0,104,105 + 1718 -15 1718 -15 1620 121 c 1,106,-1 + 1602 140 l 2,107,108 + 1587 152 1587 152 1562 156 c 1,109,-1 + 1537 152 l 1,110,-1 + 1477 147 l 2,111,112 + 1465 146 1465 146 1451 146 c 0,113,114 + 1311 146 1311 146 1148 275 c 0,115,116 + 975 412 975 412 953 610 c 1,117,118 + 953 764 953 764 1061 845 c 0,119,120 + 1158 919 1158 919 1317 917 c 2,121,-1 + 1420 916 l 2,122,123 + 1496 915 1496 915 1512 922 c 0,124,125 + 1541 934 1541 934 1557 994 c 1,126,-1 + 1557 1170 l 1,127,-1 + 900 1170 l 1,128,-1 + 900 1326 l 1,129,-1 + 1896 1326 l 1,130,-1 + 1896 1170 l 1,51,-1 +1508 1506 m 2,131,132 + 1573 1438 1573 1438 1573 1396 c 0,133,134 + 1573 1368 1573 1368 1548 1367 c 0,135,136 + 1529 1366 1529 1366 1414 1488 c 0,137,138 + 1287 1622 1287 1622 1261 1641 c 0,139,140 + 1120 1740 1120 1740 975 1740 c 0,141,142 + 860 1740 860 1740 790.5 1664.5 c 128,-1,143 + 721 1589 721 1589 721 1472 c 0,144,145 + 721 1371 721 1371 686 1371 c 0,146,147 + 646 1371 646 1371 575 1493 c 0,148,149 + 544 1546 544 1546 544 1607 c 0,150,151 + 544 1727 544 1727 639.5 1817 c 128,-1,152 + 735 1907 735 1907 856 1907 c 0,153,154 + 868 1907 868 1907 881 1906 c 2,155,-1 + 931 1902 l 2,156,157 + 1144 1885 1144 1885 1292 1731 c 2,158,-1 + 1508 1506 l 2,131,132 +892 1169 m 1,159,-1 + 742 1169 l 1,160,-1 + 742 41 l 2,161,162 + 742 5 742 5 715 1 c 0,163,164 + 697 0 697 0 629 68 c 1,165,166 + 575 116 575 116 574 155 c 2,167,-1 + 575 1169 l 1,168,-1 + 424 1169 l 1,169,-1 + 424 1325 l 1,170,-1 + 892 1325 l 1,171,-1 + 892 1169 l 1,159,-1 +2722 -1200 m 1,172,-1 + 2769 -1200 l 1,173,174 + 2672 -1350 2672 -1350 2542 -1451 c 0,175,176 + 2357 -1594 2357 -1594 2105.5 -1672 c 128,-1,177 + 1854 -1750 1854 -1750 1584 -1750 c 0,178,179 + 1189 -1750 1189 -1750 863 -1597.5 c 128,-1,180 + 537 -1445 537 -1445 396 -1200 c 1,181,-1 + 450 -1200 l 1,182,183 + 537 -1322 537 -1322 687.5 -1400.5 c 128,-1,184 + 838 -1479 838 -1479 1069 -1518 c 128,-1,185 + 1300 -1557 1300 -1557 1551 -1557 c 0,186,187 + 1824 -1557 1824 -1557 2047 -1524 c 0,188,189 + 2223 -1498 2223 -1498 2329.5 -1461.5 c 128,-1,190 + 2436 -1425 2436 -1425 2534 -1362.5 c 128,-1,191 + 2632 -1300 2632 -1300 2722 -1200 c 1,172,-1 +EndSplineSet +Fore +SplineSet +2722 -1200 m 1,0,-1 + 2769 -1200 l 1,1,2 + 2672 -1350 2672 -1350 2542 -1451 c 0,3,4 + 2357 -1594 2357 -1594 2105.5 -1672 c 128,-1,5 + 1854 -1750 1854 -1750 1584 -1750 c 0,6,7 + 1189 -1750 1189 -1750 863 -1597.5 c 128,-1,8 + 537 -1445 537 -1445 396 -1200 c 1,9,-1 + 450 -1200 l 1,10,11 + 537 -1322 537 -1322 687.5 -1400.5 c 128,-1,12 + 838 -1479 838 -1479 1069 -1518 c 128,-1,13 + 1300 -1557 1300 -1557 1551 -1557 c 0,14,15 + 1824 -1557 1824 -1557 2047 -1524 c 0,16,17 + 2223 -1498 2223 -1498 2329.5 -1461.5 c 128,-1,18 + 2436 -1425 2436 -1425 2534 -1362.5 c 128,-1,19 + 2632 -1300 2632 -1300 2722 -1200 c 1,0,-1 +1842 701 m 1,20,-1 + 2127 747 l 1,21,-1 + 2008 346 l 1,22,23 + 2153 593 2153 593 2271 691 c 0,24,25 + 2337 747 2337 747 2380 747 c 0,26,27 + 2407 747 2407 747 2422.5 731 c 128,-1,28 + 2438 715 2438 715 2438 684 c 0,29,30 + 2438 630 2438 630 2410 580 c 0,31,32 + 2390 543 2390 543 2353 543 c 0,33,34 + 2334 543 2334 543 2320.5 555.5 c 128,-1,35 + 2307 568 2307 568 2304 594 c 0,36,37 + 2302 609 2302 609 2296 614 c 0,38,39 + 2290 621 2290 621 2281 621 c 0,40,41 + 2267 621 2267 621 2254 614 c 0,42,43 + 2233 603 2233 603 2189 550 c 0,44,45 + 2120 469 2120 469 2040 340 c 0,46,47 + 2006 286 2006 286 1981 217 c 0,48,49 + 1946 123 1946 123 1941 104 c 2,50,-1 + 1915 0 l 1,51,-1 + 1789 0 l 1,52,-1 + 1941 513 l 2,53,54 + 1968 602 1968 602 1968 640 c 0,55,56 + 1968 655 1968 655 1955 665 c 0,57,58 + 1939 678 1939 678 1912 678 c 0,59,60 + 1894 678 1894 678 1848 670 c 1,61,-1 + 1842 701 l 1,20,-1 +928 1161 m 1,62,-1 + 945 1193 l 1,63,64 + 1135 1130 1135 1130 1251.5 963.5 c 128,-1,65 + 1368 797 1368 797 1368 590 c 0,66,67 + 1368 348 1368 348 1220 174 c 128,-1,68 + 1072 0 1072 0 870 0 c 0,69,70 + 756 0 756 0 687 74 c 128,-1,71 + 618 148 618 148 618 263 c 0,72,73 + 618 454 618 454 772 610 c 128,-1,74 + 926 766 926 766 1078 766 c 0,75,76 + 1164 766 1164 766 1229 703 c 1,77,78 + 1213 1056 1213 1056 928 1161 c 1,62,-1 +1077 722 m 0,79,80 + 957 722 957 722 854.5 550 c 128,-1,81 + 752 378 752 378 752 210 c 0,82,83 + 752 128 752 128 792 84 c 128,-1,84 + 832 40 832 40 898 40 c 0,85,86 + 1006 40 1006 40 1109 211 c 128,-1,87 + 1212 382 1212 382 1212 556 c 0,88,89 + 1212 722 1212 722 1077 722 c 0,79,80 +1695 1071 m 0,90,91 + 1730 1071 1730 1071 1754 1047 c 128,-1,92 + 1778 1023 1778 1023 1778 988 c 0,93,94 + 1778 955 1778 955 1753.5 930.5 c 128,-1,95 + 1729 906 1729 906 1695 906 c 256,96,97 + 1661 906 1661 906 1637 930.5 c 128,-1,98 + 1613 955 1613 955 1613 988 c 0,99,100 + 1613 1023 1613 1023 1637 1047 c 128,-1,101 + 1661 1071 1661 1071 1695 1071 c 0,90,91 +1706 743 m 1,102,-1 + 1543 165 l 2,103,104 + 1526 107 1526 107 1526 95 c 0,105,106 + 1526 82 1526 82 1534 73.5 c 128,-1,107 + 1542 65 1542 65 1553 65 c 0,108,109 + 1565 65 1565 65 1582 78 c 0,110,111 + 1629 116 1629 116 1677 184 c 1,112,-1 + 1706 165 l 1,113,114 + 1650 79 1650 79 1574 21 c 0,115,116 + 1518 -23 1518 -23 1467 -23 c 0,117,118 + 1433 -23 1433 -23 1411.5 -3 c 128,-1,119 + 1390 17 1390 17 1390 48 c 0,120,121 + 1390 78 1390 78 1411 149 c 2,122,-1 + 1518 519 l 2,123,124 + 1544 610 1544 610 1544 633 c 0,125,126 + 1544 651 1544 651 1531.5 662.5 c 128,-1,127 + 1519 674 1519 674 1496 674 c 0,128,129 + 1478 674 1478 674 1421 665 c 1,130,-1 + 1421 697 l 1,131,-1 + 1706 743 l 1,102,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bracketright +Encoding: 93 93 64 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +957 1169 m 1,0,-1 + 689 1169 l 1,1,2 + 689 1139 689 1139 691 1108 c 0,3,4 + 693 1086 693 1086 697 1028 c 2,5,-1 + 706 889 l 2,6,7 + 708 858 708 858 708 839 c 0,8,9 + 708 646 708 646 612 507 c 0,10,11 + 573 450 573 450 573 402 c 0,12,13 + 573 363 573 363 598 336 c 0,14,15 + 673 253 673 253 745 204 c 2,16,-1 + 904 95 l 2,17,18 + 957 59 957 59 957 -1 c 0,19,20 + 957 -50 957 -50 916 -50 c 0,21,22 + 890 -50 890 -50 860 -25 c 2,23,-1 + 683 122 l 1,24,-1 + 510 274 l 2,25,26 + 439 336 439 336 348 448 c 0,27,28 + 337 461 337 461 302 510 c 0,29,30 + 265 556 265 556 203 656 c 0,31,32 + 195 673 195 673 190 689 c 2,33,-1 + 181 747 l 1,34,35 + 181 859 181 859 267 859 c 0,36,37 + 295 859 295 859 352 833.5 c 128,-1,38 + 409 808 409 808 438 808 c 0,39,40 + 462 808 462 808 477 816 c 1,41,42 + 520 879 520 879 520 994 c 0,43,44 + 520 1061 520 1061 510 1115 c 0,45,46 + 508 1144 508 1144 500 1169 c 1,47,-1 + 122 1169 l 1,48,-1 + 122 1325 l 1,49,-1 + 957 1325 l 1,50,-1 + 957 1169 l 1,0,-1 +1460 1169 m 1,51,-1 + 1304 1169 l 1,52,-1 + 1303 44 l 2,53,54 + 1303 1 1303 1 1292 -3 c 1,55,56 + 1277 -3 1277 -3 1203 66 c 2,57,-1 + 1148 117 l 2,58,59 + 1126 137 1126 137 1122 170 c 1,60,-1 + 1122 1169 l 1,61,-1 + 962 1169 l 1,62,-1 + 962 1325 l 1,63,-1 + 1460 1325 l 1,64,-1 + 1460 1169 l 1,51,-1 +EndSplineSet +Fore +SplineSet +1448 742 m 1,0,-1 + 1288 183 l 1,1,-1 + 1269 108 l 2,2,3 + 1267 97 1267 97 1267 90 c 0,4,5 + 1267 77 1267 77 1275 67 c 0,6,7 + 1282 59 1282 59 1292 59 c 256,8,9 + 1302 59 1302 59 1320 73 c 0,10,11 + 1352 96 1352 96 1405 172 c 1,12,-1 + 1434 152 l 1,13,14 + 1377 66 1377 66 1316.5 21 c 128,-1,15 + 1256 -24 1256 -24 1205 -24 c 0,16,17 + 1170 -24 1170 -24 1152 -6.5 c 128,-1,18 + 1134 11 1134 11 1134 45 c 0,19,20 + 1134 86 1134 86 1152 152 c 2,21,-1 + 1170 214 l 1,22,23 + 1061 73 1061 73 971 16 c 0,24,25 + 906 -24 906 -24 843 -24 c 0,26,27 + 783 -24 783 -24 739 26 c 128,-1,28 + 695 76 695 76 695 163 c 0,29,30 + 695 294 695 294 774 440 c 128,-1,31 + 853 586 853 586 974 673 c 0,32,33 + 1069 742 1069 742 1153 742 c 0,34,35 + 1203 742 1203 742 1236.5 716 c 128,-1,36 + 1270 690 1270 690 1288 629 c 1,37,-1 + 1317 723 l 1,38,-1 + 1448 742 l 1,0,-1 +1155 700 m 0,39,40 + 1102 700 1102 700 1042 650 c 0,41,42 + 958 580 958 580 892.5 442 c 128,-1,43 + 827 304 827 304 827 193 c 0,44,45 + 827 137 827 137 855 104.5 c 128,-1,46 + 883 72 883 72 920 72 c 0,47,48 + 1009 72 1009 72 1115 205 c 0,49,50 + 1256 381 1256 381 1256 567 c 0,51,52 + 1256 637 1256 637 1229 668.5 c 128,-1,53 + 1202 700 1202 700 1155 700 c 0,39,40 +190 700 m 1,54,-1 + 474 747 l 1,55,-1 + 355 346 l 1,56,57 + 500 592 500 592 618 691 c 0,58,59 + 685 747 685 747 727 747 c 0,60,61 + 754 747 754 747 769.5 730.5 c 128,-1,62 + 785 714 785 714 785 684 c 0,63,64 + 785 629 785 629 757 580 c 0,65,66 + 737 543 737 543 700 543 c 0,67,68 + 681 543 681 543 667.5 555.5 c 128,-1,69 + 654 568 654 568 651 593 c 0,70,71 + 649 609 649 609 643 614 c 0,72,73 + 637 620 637 620 628 620 c 0,74,75 + 614 620 614 620 601 614 c 0,76,77 + 580 602 580 602 536 549 c 0,78,79 + 468 469 468 469 388 340 c 0,80,81 + 353 285 353 285 328 217 c 0,82,83 + 294 123 294 123 289 104 c 2,84,-1 + 262 0 l 1,85,-1 + 136 0 l 1,86,-1 + 289 512 l 2,87,88 + 315 601 315 601 315 639 c 0,89,90 + 315 654 315 654 303 664 c 0,91,92 + 286 677 286 677 259 677 c 0,93,94 + 242 677 242 677 195 670 c 1,95,-1 + 190 700 l 1,54,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: asciicircum +Encoding: 94 94 65 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +8925 -1200 m 1,0,-1 + 9097 -1200 l 1,1,2 + 8741 -1391 8741 -1391 8265 -1519 c 0,3,4 + 7586 -1702 7586 -1702 6664 -1801 c 128,-1,5 + 5742 -1900 5742 -1900 4752 -1900 c 0,6,7 + 3304 -1900 3304 -1900 2108.5 -1705.5 c 128,-1,8 + 913 -1511 913 -1511 396 -1200 c 1,9,-1 + 594 -1200 l 1,10,11 + 913 -1355 913 -1355 1465 -1455.5 c 128,-1,12 + 2017 -1556 2017 -1556 2864 -1605.5 c 128,-1,13 + 3711 -1655 3711 -1655 4631 -1655 c 0,14,15 + 5632 -1655 5632 -1655 6450 -1613 c 0,16,17 + 7095 -1580 7095 -1580 7485.5 -1533 c 128,-1,18 + 7876 -1486 7876 -1486 8235.5 -1407 c 128,-1,19 + 8595 -1328 8595 -1328 8925 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: underscore +Encoding: 95 95 66 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +-72 440 m 1,0,-1 + -103 451 l 1,1,-1 + 63 588 l 1,2,-1 + 1688 588 l 1,3,-1 + 1718 578 l 1,4,-1 + 1534 440 l 1,5,-1 + -72 440 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: grave +Encoding: 96 96 67 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +5823 -2000 m 1,0,-1 + 5933 -2000 l 1,1,2 + 5707 -2242 5707 -2242 5403 -2407 c 0,3,4 + 4972 -2640 4972 -2640 4385 -2766.5 c 128,-1,5 + 3798 -2893 3798 -2893 3168 -2893 c 0,6,7 + 2246 -2893 2246 -2893 1485.5 -2645 c 128,-1,8 + 725 -2397 725 -2397 396 -2000 c 1,9,-1 + 522 -2000 l 1,10,11 + 725 -2198 725 -2198 1076 -2326 c 128,-1,12 + 1427 -2454 1427 -2454 1966 -2517 c 128,-1,13 + 2505 -2580 2505 -2580 3091 -2580 c 0,14,15 + 3728 -2580 3728 -2580 4248 -2527 c 0,16,17 + 4659 -2484 4659 -2484 4907.5 -2424 c 128,-1,18 + 5156 -2364 5156 -2364 5384.5 -2263 c 128,-1,19 + 5613 -2162 5613 -2162 5823 -2000 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: a +Encoding: 97 97 68 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: b +Encoding: 98 98 69 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: c +Encoding: 99 99 70 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: d +Encoding: 100 100 71 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1381 1169 m 1,0,-1 + 1265 1169 l 1,1,-1 + 1265 68 l 2,2,3 + 1265 -3 1265 -3 1252 -3 c 0,4,5 + 1238 -3 1238 -3 1152 79 c 0,6,7 + 1094 134 1094 134 1081 169 c 1,8,9 + 1072 206 1072 206 1072 358 c 1,10,-1 + 965 304 l 2,11,12 + 884 263 884 263 795 263 c 0,13,14 + 696 263 696 263 632 293 c 0,15,16 + 575 319 575 319 499 394 c 0,17,18 + 383 507 383 507 383 639 c 0,19,20 + 383 696 383 696 414 731 c 2,21,-1 + 476 801 l 1,22,23 + 460 829 460 829 422 858 c 1,24,-1 + 376 885 l 2,25,26 + 354 898 354 898 345 906 c 0,27,28 + 310 929 310 929 292 981 c 1,29,30 + 280 1046 280 1046 280 1101 c 2,31,-1 + 280 1123 l 2,32,33 + 280 1169 280 1169 201 1169 c 1,34,-1 + 201 1325 l 1,35,-1 + 433 1325 l 1,36,-1 + 528 1169 l 1,37,-1 + 483 1169 l 1,38,-1 + 454 1078 l 2,39,40 + 445 1049 445 1049 445 1007 c 0,41,42 + 445 911 445 911 538 838 c 1,43,44 + 624 871 624 871 690 871 c 0,45,46 + 758 871 758 871 808 811 c 2,47,-1 + 837 776 l 2,48,49 + 858 751 858 751 858 737 c 0,50,51 + 858 711 858 711 792 711 c 0,52,53 + 686 711 686 711 616 669 c 0,54,55 + 532 618 532 618 532 519 c 0,56,57 + 532 400 532 400 658 406 c 2,58,-1 + 701 408 l 2,59,60 + 818 413 818 413 940 486 c 0,61,62 + 1045 549 1045 549 1092 622 c 1,63,-1 + 1092 1169 l 1,64,-1 + 744 1169 l 1,65,-1 + 642 1325 l 1,66,-1 + 1381 1325 l 1,67,-1 + 1381 1169 l 1,0,-1 +EndSplineSet +Fore +SplineSet +292 1532 m 1,0,-1 + 648 1532 l 2,1,2 + 766 1532 766 1532 847.5 1516 c 128,-1,3 + 929 1500 929 1500 1005 1450 c 0,4,5 + 1150 1357 1150 1357 1220 1177.5 c 128,-1,6 + 1290 998 1290 998 1290 770 c 0,7,8 + 1290 517 1290 517 1202.5 330 c 128,-1,9 + 1115 143 1115 143 951 59 c 0,10,11 + 830 -2 830 -2 619 -2 c 2,12,-1 + 292 -2 l 1,13,-1 + 292 1532 l 1,0,-1 +454 1387 m 1,14,-1 + 454 133 l 1,15,-1 + 611 133 l 2,16,17 + 702 133 702 133 767.5 146.5 c 128,-1,18 + 833 160 833 160 897 202 c 0,19,20 + 1118 352 1118 352 1118 745 c 0,21,22 + 1118 1143 1118 1143 926 1301 c 0,23,24 + 862 1355 862 1355 795.5 1371 c 128,-1,25 + 729 1387 729 1387 639 1387 c 2,26,-1 + 454 1387 l 1,14,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: e +Encoding: 101 101 72 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +28 3643 m 0,0,1 + 651 3643 651 3643 1108 3094 c 1,2,3 + 1306 2811 1306 2811 1306 2509 c 1,4,-1 + 1297 2500 l 1,5,-1 + 1153 2500 l 2,6,7 + 1137 2500 1137 2500 1108 2761 c 1,8,9 + 1003 3063 1003 3063 775 3175 c 1,10,11 + 486 3310 486 3310 10 3310 c 1,12,-1 + 1 3319 l 1,13,-1 + 1 3625 l 2,14,15 + 1 3643 1 3643 28 3643 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f +Encoding: 102 102 73 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: g +Encoding: 103 103 74 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1398 1169 m 1,0,-1 + 1292 1169 l 1,1,-1 + 1292 59 l 2,2,3 + 1292 -1 1292 -1 1263 -2 c 0,4,5 + 1236 0 1236 0 1116 155 c 1,6,7 + 1097 193 1097 193 1097 247 c 2,8,-1 + 1097 1169 l 1,9,-1 + 626 1169 l 1,10,-1 + 687 891 l 2,11,12 + 716 760 716 760 716 660 c 0,13,14 + 716 525 716 525 651 445 c 0,15,16 + 605 389 605 389 534 389 c 1,17,18 + 433 400 433 400 341 528 c 0,19,20 + 258 643 258 643 247 750 c 1,21,22 + 247 830 247 830 301 830 c 0,23,24 + 337 830 337 830 386 797 c 0,25,26 + 420 774 420 774 443 774 c 0,27,28 + 519 773 519 773 519 979 c 0,29,30 + 519 1040 519 1040 510 1097 c 2,31,-1 + 499 1169 l 1,32,-1 + 187 1169 l 1,33,-1 + 187 1325 l 1,34,-1 + 1398 1325 l 1,35,-1 + 1398 1169 l 1,0,-1 +EndSplineSet +Fore +SplineSet +862 1550 m 0,0,1 + 1005 1550 1005 1550 1123 1481.5 c 128,-1,2 + 1241 1413 1241 1413 1307 1295 c 1,3,-1 + 1187 1172 l 1,4,5 + 1172 1182 1172 1182 1155 1219 c 0,6,7 + 1118 1300 1118 1300 1039.5 1350 c 128,-1,8 + 961 1400 961 1400 862 1400 c 0,9,10 + 759 1400 759 1400 667 1343.5 c 128,-1,11 + 575 1287 575 1287 518 1182 c 0,12,13 + 440 1037 440 1037 440 789 c 0,14,15 + 440 432 440 432 587 265 c 0,16,17 + 703 132 703 132 877 132 c 0,18,19 + 1022 132 1022 132 1152 226 c 1,20,-1 + 1152 589 l 1,21,-1 + 875 589 l 1,22,-1 + 875 739 l 1,23,-1 + 1312 739 l 1,24,-1 + 1312 140 l 1,25,26 + 1096 -20 1096 -20 862 -20 c 0,27,28 + 779 -20 779 -20 698 4.5 c 128,-1,29 + 617 29 617 29 538 87 c 128,-1,30 + 459 145 459 145 401.5 229.5 c 128,-1,31 + 344 314 344 314 307 449.5 c 128,-1,32 + 270 585 270 585 270 752 c 0,33,34 + 270 943 270 943 313 1092 c 128,-1,35 + 356 1241 356 1241 420 1324.5 c 128,-1,36 + 484 1408 484 1408 567.5 1462 c 128,-1,37 + 651 1516 651 1516 722 1533 c 128,-1,38 + 793 1550 793 1550 862 1550 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: h +Encoding: 104 104 75 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: i +Encoding: 105 105 76 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: j +Encoding: 106 106 77 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: k +Encoding: 107 107 78 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: l +Encoding: 108 108 79 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-643 -824 m 1,0,-1 + -707 -902 l 1,1,-1 + -759 -960 l 1,2,3 + -781 -972 -781 -972 -793 -972 c 0,4,5 + -809 -972 -809 -972 -877 -892 c 2,6,-1 + -940 -820 l 1,7,-1 + -940 -783 l 1,8,-1 + -865 -681 l 2,9,10 + -837 -643 -837 -643 -809 -627 c 1,11,12 + -781 -627 -781 -627 -643 -783 c 1,13,-1 + -641 -804 l 1,14,-1 + -643 -824 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: m +Encoding: 109 109 80 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1395 1169 m 1,0,-1 + 1254 1169 l 1,1,-1 + 1254 56 l 1,2,3 + 1258 -6 1258 -6 1231 0 c 1,4,5 + 1206 -6 1206 -6 1138.5 67 c 128,-1,6 + 1071 140 1071 140 1063 176 c 1,7,-1 + 1063 529 l 1,8,-1 + 660 529 l 1,9,10 + 625 512 625 512 628 480 c 2,11,-1 + 632 432 l 1,12,-1 + 632 407 l 2,13,14 + 632 390 632 390 628 372 c 1,15,16 + 628 347 628 347 597 330 c 0,17,18 + 570 315 570 315 543 315 c 0,19,20 + 489 315 489 315 432 379 c 2,21,-1 + 341 482 l 1,22,23 + 252 557 252 557 252 626 c 0,24,25 + 252 712 252 712 339 712 c 2,26,-1 + 377 712 l 1,27,-1 + 406 714 l 1,28,-1 + 435 724 l 1,29,-1 + 435 1169 l 1,30,-1 + 190 1169 l 1,31,-1 + 190 1325 l 1,32,-1 + 1395 1325 l 1,33,-1 + 1395 1169 l 1,0,-1 +1069 707 m 1,34,-1 + 1069 1170 l 1,35,-1 + 619 1170 l 1,36,-1 + 619 707 l 1,37,-1 + 1069 707 l 1,34,-1 +EndSplineSet +Fore +SplineSet +276 1532 m 1,0,-1 + 411 1532 l 1,1,-1 + 790 782 l 1,2,-1 + 1175 1534 l 1,3,-1 + 1306 1534 l 1,4,-1 + 1306 -2 l 1,5,-1 + 1144 -2 l 1,6,-1 + 1144 1156 l 1,7,-1 + 812 539 l 1,8,-1 + 745 539 l 1,9,-1 + 436 1148 l 1,10,-1 + 436 -2 l 1,11,-1 + 276 -2 l 1,12,-1 + 276 1532 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: n +Encoding: 110 110 81 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1101 1168 m 1,0,-1 + 1012 1168 l 1,1,-1 + 1012 75 l 2,2,3 + 1013 1 1013 1 988 0 c 0,4,5 + 962 0 962 0 891 73 c 1,6,-1 + 840 130 l 2,7,8 + 814 159 814 159 809 188 c 1,9,-1 + 810 639 l 1,10,-1 + 497 639 l 2,11,12 + 462 639 462 639 432 614 c 0,13,14 + 412 598 412 598 408 566 c 1,15,-1 + 412 548 l 1,16,17 + 442 455 442 455 442 401 c 0,18,19 + 442 336 442 336 410 325 c 1,20,-1 + 350 318 l 1,21,22 + 290 318 290 318 231 364 c 1,23,-1 + 166 428 l 2,24,25 + 67 525 67 525 67 634 c 0,26,27 + 67 816 67 816 332 808 c 1,28,-1 + 831 807 l 1,29,-1 + 831 1168 l 1,30,-1 + 8 1168 l 1,31,-1 + 8 1325 l 1,32,-1 + 1101 1325 l 1,33,-1 + 1101 1168 l 1,0,-1 +1590 1170 m 1,34,-1 + 1441 1170 l 1,35,-1 + 1442 21 l 2,36,37 + 1442 -6 1442 -6 1431 -6 c 0,38,39 + 1422 -6 1422 -6 1402 9 c 2,40,-1 + 1347 59 l 1,41,-1 + 1293 113 l 2,42,43 + 1270 136 1270 136 1265 167 c 1,44,-1 + 1265 1170 l 1,45,-1 + 1103 1170 l 1,46,-1 + 1103 1326 l 1,47,-1 + 1291 1326 l 1,48,-1 + 1294 1366 l 2,49,50 + 1299 1434 1299 1434 1260 1521 c 2,51,-1 + 1219 1612 l 2,52,53 + 1189 1678 1189 1678 1122.5 1722.5 c 128,-1,54 + 1056 1767 1056 1767 984 1767 c 0,55,56 + 953 1767 953 1767 925 1758 c 0,57,58 + 777 1711 777 1711 785 1493 c 2,59,-1 + 787 1440 l 2,60,61 + 789 1395 789 1395 761 1395 c 0,62,63 + 708 1394 708 1394 647 1498 c 0,64,65 + 590 1595 590 1595 590 1654 c 0,66,67 + 590 1743 590 1743 648 1829 c 0,68,69 + 735 1957 735 1957 898 1957 c 0,70,71 + 1083 1957 1083 1957 1195 1808 c 0,72,73 + 1250 1734 1250 1734 1291 1643 c 0,74,75 + 1326 1566 1326 1566 1386 1326 c 1,76,-1 + 1590 1326 l 1,77,-1 + 1590 1170 l 1,34,-1 +EndSplineSet +Fore +SplineSet +294 0 m 1,0,-1 + 294 1532 l 1,1,-1 + 461 1532 l 1,2,-1 + 1105 396 l 1,3,-1 + 1105 1534 l 1,4,-1 + 1287 1534 l 1,5,6 + 1289 1519 1289 1519 1279 1502 c 0,7,8 + 1270 1485 1270 1485 1270 1468 c 2,9,-1 + 1270 -2 l 1,10,-1 + 1134 -2 l 1,11,-1 + 459 1205 l 1,12,-1 + 459 0 l 1,13,-1 + 294 0 l 1,0,-1 +EndSplineSet +Validated: 1 +Kerns2: 88 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: o +Encoding: 111 111 82 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: p +Encoding: 112 112 83 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1296 1169 m 1,0,-1 + 1184 1169 l 1,1,-1 + 1184 71 l 2,2,3 + 1184 -6 1184 -6 1161 -6 c 0,4,5 + 1142 -6 1142 -6 1104 25 c 2,6,-1 + 1047 72 l 2,7,8 + 980 128 980 128 981 232 c 2,9,-1 + 982 305 l 1,10,-1 + 991 370 l 1,11,-1 + 989 404 l 2,12,13 + 987 432 987 432 981 454 c 1,14,-1 + 912 439 l 1,15,-1 + 864 436 l 1,16,-1 + 821 436 l 2,17,18 + 733 436 733 436 669 468 c 0,19,20 + 643 481 643 481 553 552 c 0,21,22 + 475 613 475 613 453 637 c 0,23,24 + 404 688 404 688 389 749 c 1,25,-1 + 389 1169 l 1,26,-1 + 286 1169 l 1,27,-1 + 286 1325 l 1,28,-1 + 1296 1325 l 1,29,-1 + 1296 1169 l 1,0,-1 +1005 716 m 1,30,-1 + 1005 1170 l 1,31,-1 + 565 1170 l 1,32,-1 + 565 689 l 1,33,34 + 571 639 571 639 601 614 c 1,35,36 + 635 592 635 592 685 592 c 1,37,-1 + 746 598 l 1,38,-1 + 807 614 l 2,39,40 + 873 631 873 631 907 648 c 0,41,42 + 960 674 960 674 1005 716 c 1,30,-1 +EndSplineSet +Fore +SplineSet +304 1531 m 1,0,-1 + 771 1531 l 2,1,2 + 958 1531 958 1531 1058 1479 c 0,3,4 + 1164 1425 1164 1425 1222 1322 c 128,-1,5 + 1280 1219 1280 1219 1280 1100 c 128,-1,6 + 1280 981 1280 981 1223.5 880 c 128,-1,7 + 1167 779 1167 779 1063 725 c 0,8,9 + 965 676 965 676 783 676 c 2,10,-1 + 481 676 l 1,11,-1 + 481 0 l 1,12,-1 + 304 0 l 1,13,-1 + 304 1531 l 1,0,-1 +481 1369 m 1,14,-1 + 478 828 l 1,15,-1 + 788 828 l 2,16,17 + 904 828 904 828 968 858 c 0,18,19 + 1031 892 1031 892 1067 954.5 c 128,-1,20 + 1103 1017 1103 1017 1103 1091 c 0,21,22 + 1103 1170 1103 1170 1065 1236.5 c 128,-1,23 + 1027 1303 1027 1303 958 1337 c 0,24,25 + 891 1369 891 1369 771 1369 c 2,26,-1 + 481 1369 l 1,14,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: q +Encoding: 113 113 84 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +1501 3625 m 2,1,-1 + 1501 3319 l 1,2,-1 + 1492 3310 l 1,3,4 + 1016 3310 1016 3310 727 3175 c 1,5,6 + 499 3063 499 3063 394 2761 c 1,7,8 + 365 2500 365 2500 349 2500 c 2,9,-1 + 205 2500 l 1,10,-1 + 196 2509 l 1,11,12 + 196 2811 196 2811 394 3094 c 1,13,14 + 851 3643 851 3643 1474 3643 c 0,15,0 + 1501 3643 1501 3643 1501 3625 c 2,1,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: r +Encoding: 114 114 85 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +955 1488 m 2,0,1 + 1002 1432 1002 1432 1002 1398 c 0,2,3 + 1002 1381 1002 1381 985 1378 c 0,4,5 + 952 1378 952 1378 910 1432 c 2,6,-1 + 769 1612 l 2,7,8 + 739 1650 739 1650 683 1683 c 0,9,10 + 652 1697 652 1697 623 1697 c 1,11,-1 + 580 1691 l 1,12,-1 + 536 1684 l 1,13,-1 + 508 1679 l 1,14,-1 + 479 1677 l 2,15,16 + 432 1674 432 1674 358 1776 c 2,17,-1 + 324 1823 l 2,18,19 + 297 1860 297 1860 297 1876 c 0,20,21 + 296 1906 296 1906 368 1906 c 0,22,23 + 606 1906 606 1906 789 1687 c 2,24,-1 + 955 1488 l 2,0,1 +1286 1169 m 1,25,-1 + 1018 1169 l 1,26,27 + 1018 1139 1018 1139 1020 1108 c 0,28,29 + 1022 1086 1022 1086 1026 1028 c 2,30,-1 + 1035 889 l 2,31,32 + 1037 858 1037 858 1037 839 c 0,33,34 + 1037 646 1037 646 941 507 c 0,35,36 + 902 450 902 450 902 402 c 0,37,38 + 902 363 902 363 927 336 c 0,39,40 + 1002 253 1002 253 1074 204 c 2,41,-1 + 1233 95 l 2,42,43 + 1286 59 1286 59 1286 -1 c 0,44,45 + 1286 -50 1286 -50 1245 -50 c 0,46,47 + 1219 -50 1219 -50 1189 -25 c 2,48,-1 + 1012 122 l 1,49,-1 + 839 274 l 2,50,51 + 768 336 768 336 677 448 c 0,52,53 + 666 461 666 461 631 510 c 0,54,55 + 594 556 594 556 532 656 c 0,56,57 + 524 673 524 673 519 689 c 2,58,-1 + 510 747 l 1,59,60 + 510 859 510 859 596 859 c 0,61,62 + 624 859 624 859 681 833.5 c 128,-1,63 + 738 808 738 808 767 808 c 0,64,65 + 791 808 791 808 806 816 c 1,66,67 + 849 879 849 879 849 994 c 0,68,69 + 849 1061 849 1061 839 1115 c 0,70,71 + 837 1144 837 1144 829 1169 c 1,72,-1 + 451 1169 l 1,73,-1 + 451 1325 l 1,74,-1 + 1286 1325 l 1,75,-1 + 1286 1169 l 1,25,-1 +EndSplineSet +Fore +SplineSet +290 1531 m 1,0,-1 + 742 1531 l 2,1,2 + 934 1531 934 1531 1035 1479 c 0,3,4 + 1138 1428 1138 1428 1194.5 1328.5 c 128,-1,5 + 1251 1229 1251 1229 1251 1111 c 0,6,7 + 1251 958 1251 958 1165 839 c 128,-1,8 + 1079 720 1079 720 939 683 c 1,9,-1 + 1293 0 l 1,10,-1 + 1101 0 l 1,11,-1 + 762 676 l 1,12,-1 + 464 676 l 1,13,-1 + 464 0 l 1,14,-1 + 290 0 l 1,15,-1 + 290 1531 l 1,0,-1 +464 1369 m 1,16,-1 + 464 828 l 1,17,-1 + 762 828 l 2,18,19 + 877 828 877 828 939 858 c 0,20,21 + 1005 892 1005 892 1039.5 954.5 c 128,-1,22 + 1074 1017 1074 1017 1074 1091 c 0,23,24 + 1074 1170 1074 1170 1037 1236.5 c 128,-1,25 + 1000 1303 1000 1303 929 1337 c 0,26,27 + 865 1369 865 1369 742 1369 c 2,28,-1 + 464 1369 l 1,16,-1 +EndSplineSet +Validated: 1 +Kerns2: 79 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: s +Encoding: 115 115 86 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1428 1170 m 1,0,-1 + 1321 1170 l 1,1,-1 + 1322 54 l 2,2,3 + 1322 37 1322 37 1318 22 c 1,4,5 + 1318 6 1318 6 1305 4 c 0,6,7 + 1284 4 1284 4 1242 52 c 1,8,9 + 1205 85 1205 85 1193 99 c 0,10,11 + 1140 157 1140 157 1141 257 c 2,12,-1 + 1144 582 l 1,13,14 + 1066 559 1066 559 1009 561 c 2,15,-1 + 930 564 l 2,16,17 + 837 568 837 568 796 586 c 0,18,19 + 774 596 774 596 716 651 c 0,20,21 + 695 671 695 671 673 680 c 1,22,-1 + 623 688 l 1,23,24 + 610 645 610 645 589 609 c 2,25,-1 + 523 494 l 1,26,-1 + 502 454 l 1,27,-1 + 496 420 l 1,28,29 + 496 370 496 370 599 272 c 1,30,-1 + 716 181 l 2,31,32 + 821 99 821 99 830 24 c 0,33,34 + 830 -3 830 -3 800 -3 c 0,35,36 + 756 -3 756 -3 713 36 c 0,37,38 + 597 140 597 140 530 222 c 2,39,-1 + 375 411 l 2,40,41 + 205 618 205 618 205 756 c 0,42,43 + 205 866 205 866 276 866 c 1,44,45 + 316 861 316 861 348 841 c 1,46,47 + 386 824 386 824 409 816 c 1,48,49 + 441 816 441 816 468 864 c 0,50,51 + 482 897 482 897 485 920 c 2,52,-1 + 485 1170 l 1,53,-1 + 154 1170 l 1,54,-1 + 154 1325 l 1,55,-1 + 1428 1325 l 1,56,-1 + 1428 1170 l 1,0,-1 +1144 1170 m 1,57,-1 + 652 1170 l 1,58,-1 + 652 756 l 1,59,60 + 675 733 675 733 742 731 c 2,61,-1 + 883 727 l 2,62,63 + 1049 722 1049 722 1144 781 c 1,64,-1 + 1144 1170 l 1,57,-1 +EndSplineSet +Fore +SplineSet +1238 1354 m 1,0,-1 + 1130 1206 l 1,1,2 + 1118 1211 1118 1211 1116.5 1227 c 128,-1,3 + 1115 1243 1115 1243 1110 1251 c 0,4,5 + 1064 1319 1064 1319 983 1361 c 128,-1,6 + 902 1403 902 1403 801 1403 c 0,7,8 + 673 1403 673 1403 598 1336.5 c 128,-1,9 + 523 1270 523 1270 523 1179 c 0,10,11 + 523 1042 523 1042 680 951 c 0,12,13 + 715 929 715 929 903 850 c 128,-1,14 + 1091 771 1091 771 1169 698 c 0,15,16 + 1287 587 1287 587 1287 422 c 0,17,18 + 1287 344 1287 344 1259 270 c 128,-1,19 + 1231 196 1231 196 1173 128.5 c 128,-1,20 + 1115 61 1115 61 1013 20.5 c 128,-1,21 + 911 -20 911 -20 776 -20 c 0,22,23 + 479 -20 479 -20 297 177 c 1,24,-1 + 398 354 l 1,25,26 + 410 346 410 346 410 329 c 256,27,28 + 410 312 410 312 417 302 c 0,29,30 + 474 231 474 231 570 183 c 128,-1,31 + 666 135 666 135 781 135 c 0,32,33 + 938 135 938 135 1028 218.5 c 128,-1,34 + 1118 302 1118 302 1118 413 c 0,35,36 + 1118 543 1118 543 988 624 c 0,37,38 + 943 651 943 651 766 723.5 c 128,-1,39 + 589 796 589 796 511 852 c 0,40,41 + 346 973 346 973 346 1152 c 0,42,43 + 346 1312 346 1312 479 1428.5 c 128,-1,44 + 612 1545 612 1545 813 1545 c 0,45,46 + 938 1545 938 1545 1049 1495 c 128,-1,47 + 1160 1445 1160 1445 1238 1354 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: t +Encoding: 116 116 87 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: u +Encoding: 117 117 88 +Width: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +-643 2303 m 1,0,-1 + -707 2225 l 1,1,-1 + -759 2167 l 1,2,3 + -781 2155 -781 2155 -793 2155 c 0,4,5 + -809 2155 -809 2155 -877 2235 c 2,6,-1 + -940 2307 l 1,7,-1 + -940 2344 l 1,8,-1 + -865 2446 l 2,9,10 + -837 2484 -837 2484 -809 2500 c 1,11,12 + -781 2500 -781 2500 -643 2344 c 1,13,-1 + -641 2323 l 1,14,-1 + -643 2303 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: v +Encoding: 118 118 89 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: w +Encoding: 119 119 90 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-43 3643 m 1,0,-1 + 1550 3643 l 1,1,-1 + 1568 3625 l 1,2,-1 + 1568 3328 l 1,3,-1 + 1550 3310 l 1,4,-1 + -43 3310 l 1,5,-1 + -61 3328 l 1,6,-1 + -61 3625 l 1,7,-1 + -43 3643 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: x +Encoding: 120 120 91 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +341 892 m 1,0,-1 + 425 972 l 1,1,-1 + 792 605 l 1,2,-1 + 1158 972 l 1,3,-1 + 1242 892 l 1,4,-1 + 871 523 l 1,5,-1 + 1242 155 l 1,6,-1 + 1158 75 l 1,7,-1 + 792 441 l 1,8,-1 + 425 75 l 1,9,-1 + 341 155 l 1,10,-1 + 710 523 l 1,11,-1 + 341 892 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: y +Encoding: 121 121 92 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: z +Encoding: 122 122 93 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: braceleft +Encoding: 123 123 94 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: bar +Encoding: 124 124 95 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +879 -3 m 1,0,-1 + 703 184 l 1,1,-1 + 703 1397 l 1,2,-1 + 879 1231 l 1,3,-1 + 879 -3 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: braceright +Encoding: 125 125 96 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: asciitilde +Encoding: 126 126 97 +Width: 8 +Flags: W +LayerCount: 2 +Fore +SplineSet +12022 -2000 m 1,0,-1 + 12258 -2000 l 1,1,2 + 11773 -2273 11773 -2273 11123 -2456 c 0,3,4 + 10198 -2717 10198 -2717 8941.5 -2858.5 c 128,-1,5 + 7685 -3000 7685 -3000 6333 -3000 c 0,6,7 + 4356 -3000 4356 -3000 2727 -2722.5 c 128,-1,8 + 1098 -2445 1098 -2445 396 -2000 c 1,9,-1 + 664 -2000 l 1,10,11 + 1098 -2222 1098 -2222 1850.5 -2365.5 c 128,-1,12 + 2603 -2509 2603 -2509 3757 -2579.5 c 128,-1,13 + 4911 -2650 4911 -2650 6168 -2650 c 0,14,15 + 7532 -2650 7532 -2650 8648 -2590 c 0,16,17 + 9528 -2543 9528 -2543 10060.5 -2476 c 128,-1,18 + 10593 -2409 10593 -2409 11084.5 -2295.5 c 128,-1,19 + 11576 -2182 11576 -2182 12022 -2000 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: Adieresis +Encoding: 196 196 98 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Aring +Encoding: 197 197 99 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ccedilla +Encoding: 199 199 100 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eacute +Encoding: 201 201 101 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ntilde +Encoding: 209 209 102 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Odieresis +Encoding: 214 214 103 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Udieresis +Encoding: 220 220 104 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aacute +Encoding: 225 225 105 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: agrave +Encoding: 224 224 106 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: acircumflex +Encoding: 226 226 107 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: adieresis +Encoding: 228 228 108 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: atilde +Encoding: 227 227 109 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aring +Encoding: 229 229 110 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ccedilla +Encoding: 231 231 111 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eacute +Encoding: 233 233 112 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: egrave +Encoding: 232 232 113 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ecircumflex +Encoding: 234 234 114 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: edieresis +Encoding: 235 235 115 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iacute +Encoding: 237 237 116 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: igrave +Encoding: 236 236 117 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: icircumflex +Encoding: 238 238 118 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: idieresis +Encoding: 239 239 119 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ntilde +Encoding: 241 241 120 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oacute +Encoding: 243 243 121 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ograve +Encoding: 242 242 122 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ocircumflex +Encoding: 244 244 123 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: odieresis +Encoding: 246 246 124 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: otilde +Encoding: 245 245 125 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uacute +Encoding: 250 250 126 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ugrave +Encoding: 249 249 127 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ucircumflex +Encoding: 251 251 128 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: udieresis +Encoding: 252 252 129 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dagger +Encoding: 8224 8224 130 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: degree +Encoding: 176 176 131 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: cent +Encoding: 162 162 132 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sterling +Encoding: 163 163 133 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: section +Encoding: 167 167 134 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: bullet +Encoding: 8226 8226 135 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: paragraph +Encoding: 182 182 136 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: germandbls +Encoding: 223 223 137 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: registered +Encoding: 174 174 138 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: copyright +Encoding: 169 169 139 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: trademark +Encoding: 8482 8482 140 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: acute +Encoding: 180 180 141 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dieresis +Encoding: 168 168 142 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: notequal +Encoding: 8800 8800 143 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: AE +Encoding: 198 198 144 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Oslash +Encoding: 216 216 145 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: infinity +Encoding: 8734 8734 146 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: plusminus +Encoding: 177 177 147 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lessequal +Encoding: 8804 8804 148 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: greaterequal +Encoding: 8805 8805 149 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: yen +Encoding: 165 165 150 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: mu +Encoding: 181 181 151 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: partialdiff +Encoding: 8706 8706 152 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: summation +Encoding: 8721 8721 153 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: product +Encoding: 8719 8719 154 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: glyph155 +Encoding: 65539 -1 155 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: integral +Encoding: 8747 8747 156 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ordfeminine +Encoding: 170 170 157 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ordmasculine +Encoding: 186 186 158 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omega +Encoding: 8486 8486 159 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ae +Encoding: 230 230 160 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oslash +Encoding: 248 248 161 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: questiondown +Encoding: 191 191 162 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: exclamdown +Encoding: 161 161 163 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: logicalnot +Encoding: 172 172 164 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: radical +Encoding: 8730 8730 165 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: florin +Encoding: 402 402 166 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: approxequal +Encoding: 8776 8776 167 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Delta +Encoding: 8710 8710 168 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: guillemotleft +Encoding: 171 171 169 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: guillemotright +Encoding: 187 187 170 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ellipsis +Encoding: 8230 8230 171 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Agrave +Encoding: 192 192 172 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Atilde +Encoding: 195 195 173 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Otilde +Encoding: 213 213 174 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: OE +Encoding: 338 338 175 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oe +Encoding: 339 339 176 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: endash +Encoding: 8211 8211 177 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: emdash +Encoding: 8212 8212 178 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotedblleft +Encoding: 8220 8220 179 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotedblright +Encoding: 8221 8221 180 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quoteleft +Encoding: 8216 8216 181 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quoteright +Encoding: 8217 8217 182 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +464 849 m 1,0,-1 + 809 905 l 1,1,-1 + 665 419 l 1,2,3 + 840 718 840 718 983 837 c 0,4,5 + 1064 905 1064 905 1115 905 c 0,6,7 + 1148 905 1148 905 1167 885.5 c 128,-1,8 + 1186 866 1186 866 1186 829 c 0,9,10 + 1186 763 1186 763 1152 703 c 0,11,12 + 1128 658 1128 658 1083 658 c 0,13,14 + 1060 658 1060 658 1043.5 673 c 128,-1,15 + 1027 688 1027 688 1023 719 c 0,16,17 + 1021 738 1021 738 1014 744 c 0,18,19 + 1006 752 1006 752 995 752 c 0,20,21 + 978 752 978 752 963 744 c 0,22,23 + 937 730 937 730 884 666 c 0,24,25 + 801 568 801 568 704 412 c 0,26,27 + 662 346 662 346 632 263 c 0,28,29 + 590 149 590 149 584 126 c 2,30,-1 + 552 0 l 1,31,-1 + 399 0 l 1,32,-1 + 584 621 l 2,33,34 + 616 729 616 729 616 775 c 0,35,36 + 616 793 616 793 601 805 c 0,37,38 + 581 821 581 821 548 821 c 0,39,40 + 527 821 527 821 471 812 c 1,41,-1 + 464 849 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: divide +Encoding: 247 247 183 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lozenge +Encoding: 9674 9674 184 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ydieresis +Encoding: 255 255 185 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ydieresis +Encoding: 376 376 186 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: fraction +Encoding: 8260 8260 187 +AltUni2: 002215.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Euro +Encoding: 8364 8364 188 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: guilsinglleft +Encoding: 8249 8249 189 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: guilsinglright +Encoding: 8250 8250 190 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF001 +Encoding: 61441 61441 191 +AltUni2: 00fb01.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF002 +Encoding: 61442 61442 192 +AltUni2: 00fb02.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: daggerdbl +Encoding: 8225 8225 193 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: periodcentered +Encoding: 183 183 194 +AltUni2: 002219.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotesinglbase +Encoding: 8218 8218 195 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotedblbase +Encoding: 8222 8222 196 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: perthousand +Encoding: 8240 8240 197 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Acircumflex +Encoding: 194 194 198 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ecircumflex +Encoding: 202 202 199 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Aacute +Encoding: 193 193 200 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Edieresis +Encoding: 203 203 201 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Egrave +Encoding: 200 200 202 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iacute +Encoding: 205 205 203 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Icircumflex +Encoding: 206 206 204 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Idieresis +Encoding: 207 207 205 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Igrave +Encoding: 204 204 206 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Oacute +Encoding: 211 211 207 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ocircumflex +Encoding: 212 212 208 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ograve +Encoding: 210 210 209 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Uacute +Encoding: 218 218 210 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ucircumflex +Encoding: 219 219 211 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ugrave +Encoding: 217 217 212 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dotlessi +Encoding: 305 305 213 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: circumflex +Encoding: 710 710 214 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tilde +Encoding: 732 732 215 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni02C9 +Encoding: 713 713 216 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: breve +Encoding: 728 728 217 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dotaccent +Encoding: 729 729 218 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ring +Encoding: 730 730 219 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: cedilla +Encoding: 184 184 220 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: hungarumlaut +Encoding: 733 733 221 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ogonek +Encoding: 731 731 222 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: caron +Encoding: 711 711 223 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lslash +Encoding: 321 321 224 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lslash +Encoding: 322 322 225 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Scaron +Encoding: 352 352 226 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: scaron +Encoding: 353 353 227 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Zcaron +Encoding: 381 381 228 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zcaron +Encoding: 382 382 229 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: brokenbar +Encoding: 166 166 230 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eth +Encoding: 208 208 231 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eth +Encoding: 240 240 232 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Yacute +Encoding: 221 221 233 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: yacute +Encoding: 253 253 234 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Thorn +Encoding: 222 222 235 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: thorn +Encoding: 254 254 236 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: minus +Encoding: 8722 8722 237 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: multiply +Encoding: 215 215 238 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni00B9 +Encoding: 185 185 239 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni00B2 +Encoding: 178 178 240 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni00B3 +Encoding: 179 179 241 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: onehalf +Encoding: 189 189 242 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: onequarter +Encoding: 188 188 243 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: threequarters +Encoding: 190 190 244 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: franc +Encoding: 8355 8355 245 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gbreve +Encoding: 286 286 246 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gbreve +Encoding: 287 287 247 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Idotaccent +Encoding: 304 304 248 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Scedilla +Encoding: 350 350 249 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: scedilla +Encoding: 351 351 250 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Cacute +Encoding: 262 262 251 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: cacute +Encoding: 263 263 252 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ccaron +Encoding: 268 268 253 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ccaron +Encoding: 269 269 254 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dcroat +Encoding: 273 273 255 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: currency +Encoding: 164 164 256 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: macron +Encoding: 175 175 257 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Amacron +Encoding: 256 256 258 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: amacron +Encoding: 257 257 259 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Abreve +Encoding: 258 258 260 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: abreve +Encoding: 259 259 261 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Aogonek +Encoding: 260 260 262 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aogonek +Encoding: 261 261 263 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ccircumflex +Encoding: 264 264 264 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ccircumflex +Encoding: 265 265 265 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Cdotaccent +Encoding: 266 266 266 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: cdotaccent +Encoding: 267 267 267 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Dcaron +Encoding: 270 270 268 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dcaron +Encoding: 271 271 269 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Dcroat +Encoding: 272 272 270 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Emacron +Encoding: 274 274 271 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: emacron +Encoding: 275 275 272 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ebreve +Encoding: 276 276 273 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ebreve +Encoding: 277 277 274 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Edotaccent +Encoding: 278 278 275 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: edotaccent +Encoding: 279 279 276 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eogonek +Encoding: 280 280 277 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eogonek +Encoding: 281 281 278 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ecaron +Encoding: 282 282 279 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ecaron +Encoding: 283 283 280 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gcircumflex +Encoding: 284 284 281 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gcircumflex +Encoding: 285 285 282 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gdotaccent +Encoding: 288 288 283 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gdotaccent +Encoding: 289 289 284 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gcommaaccent +Encoding: 290 290 285 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gcommaaccent +Encoding: 291 291 286 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Hcircumflex +Encoding: 292 292 287 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: hcircumflex +Encoding: 293 293 288 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Hbar +Encoding: 294 294 289 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: hbar +Encoding: 295 295 290 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Itilde +Encoding: 296 296 291 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: itilde +Encoding: 297 297 292 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Imacron +Encoding: 298 298 293 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: imacron +Encoding: 299 299 294 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ibreve +Encoding: 300 300 295 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ibreve +Encoding: 301 301 296 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iogonek +Encoding: 302 302 297 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iogonek +Encoding: 303 303 298 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: IJ +Encoding: 306 306 299 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ij +Encoding: 307 307 300 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Jcircumflex +Encoding: 308 308 301 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: jcircumflex +Encoding: 309 309 302 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Kcommaaccent +Encoding: 310 310 303 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: kcommaaccent +Encoding: 311 311 304 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: kgreenlandic +Encoding: 312 312 305 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lacute +Encoding: 313 313 306 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lacute +Encoding: 314 314 307 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lcommaaccent +Encoding: 315 315 308 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lcommaaccent +Encoding: 316 316 309 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lcaron +Encoding: 317 317 310 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lcaron +Encoding: 318 318 311 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ldot +Encoding: 319 319 312 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ldot +Encoding: 320 320 313 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Nacute +Encoding: 323 323 314 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: nacute +Encoding: 324 324 315 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ncommaaccent +Encoding: 325 325 316 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ncommaaccent +Encoding: 326 326 317 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ncaron +Encoding: 327 327 318 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ncaron +Encoding: 328 328 319 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: napostrophe +Encoding: 329 329 320 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eng +Encoding: 330 330 321 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eng +Encoding: 331 331 322 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omacron +Encoding: 332 332 323 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omacron +Encoding: 333 333 324 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Obreve +Encoding: 334 334 325 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: obreve +Encoding: 335 335 326 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ohungarumlaut +Encoding: 336 336 327 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ohungarumlaut +Encoding: 337 337 328 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Racute +Encoding: 340 340 329 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: racute +Encoding: 341 341 330 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Rcommaaccent +Encoding: 342 342 331 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: rcommaaccent +Encoding: 343 343 332 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Rcaron +Encoding: 344 344 333 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: rcaron +Encoding: 345 345 334 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Sacute +Encoding: 346 346 335 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sacute +Encoding: 347 347 336 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Scircumflex +Encoding: 348 348 337 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: scircumflex +Encoding: 349 349 338 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Tcommaaccent +Encoding: 354 354 339 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tcommaaccent +Encoding: 355 355 340 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Tcaron +Encoding: 356 356 341 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tcaron +Encoding: 357 357 342 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Tbar +Encoding: 358 358 343 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tbar +Encoding: 359 359 344 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Utilde +Encoding: 360 360 345 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: utilde +Encoding: 361 361 346 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Umacron +Encoding: 362 362 347 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: umacron +Encoding: 363 363 348 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ubreve +Encoding: 364 364 349 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ubreve +Encoding: 365 365 350 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Uring +Encoding: 366 366 351 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uring +Encoding: 367 367 352 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Uhungarumlaut +Encoding: 368 368 353 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uhungarumlaut +Encoding: 369 369 354 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Uogonek +Encoding: 370 370 355 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uogonek +Encoding: 371 371 356 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Wcircumflex +Encoding: 372 372 357 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: wcircumflex +Encoding: 373 373 358 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ycircumflex +Encoding: 374 374 359 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ycircumflex +Encoding: 375 375 360 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Zacute +Encoding: 377 377 361 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zacute +Encoding: 378 378 362 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Zdotaccent +Encoding: 379 379 363 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zdotaccent +Encoding: 380 380 364 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: longs +Encoding: 383 383 365 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Aringacute +Encoding: 506 506 366 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aringacute +Encoding: 507 507 367 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: AEacute +Encoding: 508 508 368 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aeacute +Encoding: 509 509 369 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Oslashacute +Encoding: 510 510 370 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oslashacute +Encoding: 511 511 371 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tonos +Encoding: 900 900 372 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dieresistonos +Encoding: 901 901 373 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Alphatonos +Encoding: 902 902 374 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: anoteleia +Encoding: 903 903 375 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Epsilontonos +Encoding: 904 904 376 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Etatonos +Encoding: 905 905 377 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iotatonos +Encoding: 906 906 378 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omicrontonos +Encoding: 908 908 379 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Upsilontonos +Encoding: 910 910 380 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omegatonos +Encoding: 911 911 381 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iotadieresistonos +Encoding: 912 912 382 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Alpha +Encoding: 913 913 383 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Beta +Encoding: 914 914 384 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gamma +Encoding: 915 915 385 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni0394 +Encoding: 916 916 386 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Epsilon +Encoding: 917 917 387 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Zeta +Encoding: 918 918 388 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eta +Encoding: 919 919 389 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Theta +Encoding: 920 920 390 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iota +Encoding: 921 921 391 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Kappa +Encoding: 922 922 392 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lambda +Encoding: 923 923 393 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Mu +Encoding: 924 924 394 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Nu +Encoding: 925 925 395 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Xi +Encoding: 926 926 396 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omicron +Encoding: 927 927 397 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Pi +Encoding: 928 928 398 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Rho +Encoding: 929 929 399 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Sigma +Encoding: 931 931 400 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Tau +Encoding: 932 932 401 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Upsilon +Encoding: 933 933 402 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Phi +Encoding: 934 934 403 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Chi +Encoding: 935 935 404 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Psi +Encoding: 936 936 405 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni03A9 +Encoding: 937 937 406 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iotadieresis +Encoding: 938 938 407 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Upsilondieresis +Encoding: 939 939 408 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: alphatonos +Encoding: 940 940 409 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: epsilontonos +Encoding: 941 941 410 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: etatonos +Encoding: 942 942 411 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iotatonos +Encoding: 943 943 412 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upsilondieresistonos +Encoding: 944 944 413 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: alpha +Encoding: 945 945 414 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: beta +Encoding: 946 946 415 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gamma +Encoding: 947 947 416 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: delta +Encoding: 948 948 417 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: epsilon +Encoding: 949 949 418 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zeta +Encoding: 950 950 419 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eta +Encoding: 951 951 420 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: theta +Encoding: 952 952 421 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iota +Encoding: 953 953 422 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: kappa +Encoding: 954 954 423 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lambda +Encoding: 955 955 424 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni03BC +Encoding: 956 956 425 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: nu +Encoding: 957 957 426 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: xi +Encoding: 958 958 427 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omicron +Encoding: 959 959 428 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: pi +Encoding: 960 960 429 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: rho +Encoding: 961 961 430 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sigma1 +Encoding: 962 962 431 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sigma +Encoding: 963 963 432 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tau +Encoding: 964 964 433 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upsilon +Encoding: 965 965 434 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: phi +Encoding: 966 966 435 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: chi +Encoding: 967 967 436 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: psi +Encoding: 968 968 437 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omega +Encoding: 969 969 438 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iotadieresis +Encoding: 970 970 439 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upsilondieresis +Encoding: 971 971 440 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omicrontonos +Encoding: 972 972 441 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upsilontonos +Encoding: 973 973 442 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omegatonos +Encoding: 974 974 443 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10023 +Encoding: 1025 1025 444 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10051 +Encoding: 1026 1026 445 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10052 +Encoding: 1027 1027 446 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10053 +Encoding: 1028 1028 447 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10054 +Encoding: 1029 1029 448 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10055 +Encoding: 1030 1030 449 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10056 +Encoding: 1031 1031 450 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10057 +Encoding: 1032 1032 451 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10058 +Encoding: 1033 1033 452 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10059 +Encoding: 1034 1034 453 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10060 +Encoding: 1035 1035 454 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10061 +Encoding: 1036 1036 455 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10062 +Encoding: 1038 1038 456 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10145 +Encoding: 1039 1039 457 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10017 +Encoding: 1040 1040 458 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10018 +Encoding: 1041 1041 459 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10019 +Encoding: 1042 1042 460 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10020 +Encoding: 1043 1043 461 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10021 +Encoding: 1044 1044 462 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10022 +Encoding: 1045 1045 463 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10024 +Encoding: 1046 1046 464 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10025 +Encoding: 1047 1047 465 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10026 +Encoding: 1048 1048 466 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10027 +Encoding: 1049 1049 467 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10028 +Encoding: 1050 1050 468 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10029 +Encoding: 1051 1051 469 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10030 +Encoding: 1052 1052 470 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10031 +Encoding: 1053 1053 471 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10032 +Encoding: 1054 1054 472 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10033 +Encoding: 1055 1055 473 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10034 +Encoding: 1056 1056 474 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10035 +Encoding: 1057 1057 475 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10036 +Encoding: 1058 1058 476 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10037 +Encoding: 1059 1059 477 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10038 +Encoding: 1060 1060 478 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10039 +Encoding: 1061 1061 479 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10040 +Encoding: 1062 1062 480 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10041 +Encoding: 1063 1063 481 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10042 +Encoding: 1064 1064 482 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10043 +Encoding: 1065 1065 483 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10044 +Encoding: 1066 1066 484 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10045 +Encoding: 1067 1067 485 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10046 +Encoding: 1068 1068 486 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10047 +Encoding: 1069 1069 487 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10048 +Encoding: 1070 1070 488 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10049 +Encoding: 1071 1071 489 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10065 +Encoding: 1072 1072 490 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10066 +Encoding: 1073 1073 491 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10067 +Encoding: 1074 1074 492 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10068 +Encoding: 1075 1075 493 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10069 +Encoding: 1076 1076 494 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10070 +Encoding: 1077 1077 495 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10072 +Encoding: 1078 1078 496 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10073 +Encoding: 1079 1079 497 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10074 +Encoding: 1080 1080 498 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10075 +Encoding: 1081 1081 499 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10076 +Encoding: 1082 1082 500 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10077 +Encoding: 1083 1083 501 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10078 +Encoding: 1084 1084 502 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10079 +Encoding: 1085 1085 503 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10080 +Encoding: 1086 1086 504 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10081 +Encoding: 1087 1087 505 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10082 +Encoding: 1088 1088 506 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10083 +Encoding: 1089 1089 507 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10084 +Encoding: 1090 1090 508 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10085 +Encoding: 1091 1091 509 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10086 +Encoding: 1092 1092 510 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10087 +Encoding: 1093 1093 511 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10088 +Encoding: 1094 1094 512 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10089 +Encoding: 1095 1095 513 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10090 +Encoding: 1096 1096 514 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10091 +Encoding: 1097 1097 515 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10092 +Encoding: 1098 1098 516 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10093 +Encoding: 1099 1099 517 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10094 +Encoding: 1100 1100 518 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10095 +Encoding: 1101 1101 519 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10096 +Encoding: 1102 1102 520 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10097 +Encoding: 1103 1103 521 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10071 +Encoding: 1105 1105 522 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10099 +Encoding: 1106 1106 523 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10100 +Encoding: 1107 1107 524 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10101 +Encoding: 1108 1108 525 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10102 +Encoding: 1109 1109 526 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10103 +Encoding: 1110 1110 527 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10104 +Encoding: 1111 1111 528 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10105 +Encoding: 1112 1112 529 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10106 +Encoding: 1113 1113 530 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10107 +Encoding: 1114 1114 531 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10108 +Encoding: 1115 1115 532 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10109 +Encoding: 1116 1116 533 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10110 +Encoding: 1118 1118 534 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10193 +Encoding: 1119 1119 535 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10050 +Encoding: 1168 1168 536 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10098 +Encoding: 1169 1169 537 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Wgrave +Encoding: 7808 7808 538 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: wgrave +Encoding: 7809 7809 539 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Wacute +Encoding: 7810 7810 540 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: wacute +Encoding: 7811 7811 541 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Wdieresis +Encoding: 7812 7812 542 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: wdieresis +Encoding: 7813 7813 543 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ygrave +Encoding: 7922 7922 544 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ygrave +Encoding: 7923 7923 545 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii00208 +Encoding: 8213 8213 546 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: underscoredbl +Encoding: 8215 8215 547 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotereversed +Encoding: 8219 8219 548 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: minute +Encoding: 8242 8242 549 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: second +Encoding: 8243 8243 550 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: exclamdbl +Encoding: 8252 8252 551 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni203E +Encoding: 8254 8254 552 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni207F +Encoding: 8319 8319 553 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lira +Encoding: 8356 8356 554 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: peseta +Encoding: 8359 8359 555 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii61248 +Encoding: 8453 8453 556 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii61289 +Encoding: 8467 8467 557 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii61352 +Encoding: 8470 8470 558 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: estimated +Encoding: 8494 8494 559 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oneeighth +Encoding: 8539 8539 560 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: threeeighths +Encoding: 8540 8540 561 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: fiveeighths +Encoding: 8541 8541 562 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: seveneighths +Encoding: 8542 8542 563 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowleft +Encoding: 8592 8592 564 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowup +Encoding: 8593 8593 565 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowright +Encoding: 8594 8594 566 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowdown +Encoding: 8595 8595 567 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowboth +Encoding: 8596 8596 568 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowupdn +Encoding: 8597 8597 569 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowupdnbse +Encoding: 8616 8616 570 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: orthogonal +Encoding: 8735 8735 571 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: intersection +Encoding: 8745 8745 572 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: equivalence +Encoding: 8801 8801 573 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: house +Encoding: 8962 8962 574 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: revlogicalnot +Encoding: 8976 8976 575 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: integraltp +Encoding: 8992 8992 576 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: integralbt +Encoding: 8993 8993 577 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF100000 +Encoding: 9472 9472 578 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF110000 +Encoding: 9474 9474 579 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF010000 +Encoding: 9484 9484 580 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF030000 +Encoding: 9488 9488 581 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF020000 +Encoding: 9492 9492 582 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF040000 +Encoding: 9496 9496 583 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF080000 +Encoding: 9500 9500 584 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF090000 +Encoding: 9508 9508 585 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF060000 +Encoding: 9516 9516 586 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF070000 +Encoding: 9524 9524 587 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF050000 +Encoding: 9532 9532 588 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF430000 +Encoding: 9552 9552 589 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF240000 +Encoding: 9553 9553 590 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF510000 +Encoding: 9554 9554 591 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF520000 +Encoding: 9555 9555 592 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF390000 +Encoding: 9556 9556 593 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF220000 +Encoding: 9557 9557 594 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF210000 +Encoding: 9558 9558 595 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF250000 +Encoding: 9559 9559 596 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF500000 +Encoding: 9560 9560 597 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF490000 +Encoding: 9561 9561 598 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF380000 +Encoding: 9562 9562 599 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF280000 +Encoding: 9563 9563 600 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF270000 +Encoding: 9564 9564 601 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF260000 +Encoding: 9565 9565 602 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF360000 +Encoding: 9566 9566 603 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF370000 +Encoding: 9567 9567 604 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF420000 +Encoding: 9568 9568 605 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF190000 +Encoding: 9569 9569 606 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF200000 +Encoding: 9570 9570 607 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF230000 +Encoding: 9571 9571 608 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF470000 +Encoding: 9572 9572 609 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF480000 +Encoding: 9573 9573 610 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF410000 +Encoding: 9574 9574 611 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF450000 +Encoding: 9575 9575 612 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF460000 +Encoding: 9576 9576 613 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF400000 +Encoding: 9577 9577 614 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF540000 +Encoding: 9578 9578 615 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF530000 +Encoding: 9579 9579 616 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF440000 +Encoding: 9580 9580 617 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upblock +Encoding: 9600 9600 618 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dnblock +Encoding: 9604 9604 619 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: block +Encoding: 9608 9608 620 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lfblock +Encoding: 9612 9612 621 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: rtblock +Encoding: 9616 9616 622 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ltshade +Encoding: 9617 9617 623 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: shade +Encoding: 9618 9618 624 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dkshade +Encoding: 9619 9619 625 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: filledbox +Encoding: 9632 9632 626 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: H22073 +Encoding: 9633 9633 627 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: H18543 +Encoding: 9642 9642 628 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: H18551 +Encoding: 9643 9643 629 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: filledrect +Encoding: 9644 9644 630 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: triagup +Encoding: 9650 9650 631 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: triagrt +Encoding: 9658 9658 632 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: triagdn +Encoding: 9660 9660 633 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: triaglf +Encoding: 9668 9668 634 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: circle +Encoding: 9675 9675 635 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: H18533 +Encoding: 9679 9679 636 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: invbullet +Encoding: 9688 9688 637 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: invcircle +Encoding: 9689 9689 638 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: openbullet +Encoding: 9702 9702 639 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: smileface +Encoding: 9786 9786 640 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: invsmileface +Encoding: 9787 9787 641 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sun +Encoding: 9788 9788 642 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: female +Encoding: 9792 9792 643 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: male +Encoding: 9794 9794 644 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: spade +Encoding: 9824 9824 645 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: club +Encoding: 9827 9827 646 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: heart +Encoding: 9829 9829 647 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: diamond +Encoding: 9830 9830 648 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: musicalnote +Encoding: 9834 9834 649 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: musicalnotedbl +Encoding: 9835 9835 650 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF004 +Encoding: 61444 61444 651 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF005 +Encoding: 61445 61445 652 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar +EndChars +EndSplineFont diff --git a/bhatkhande/english/OmeBhatkhandeEnglish.sfd b/bhatkhande/english/English.sfd similarity index 100% rename from bhatkhande/english/OmeBhatkhandeEnglish.sfd rename to bhatkhande/english/English.sfd diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.sfd b/bhatkhande/hindi/Hindi.sfd similarity index 100% rename from bhatkhande/hindi/OmeBhatkhandeHindi.sfd rename to bhatkhande/hindi/Hindi.sfd diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.sfd b/bhatkhande/punjabi/Punjabi.sfd similarity index 100% rename from bhatkhande/punjabi/OmeBhatkhandePunjabi.sfd rename to bhatkhande/punjabi/Punjabi.sfd From e264fe7523bb5fb8f854118e5c7f764a4dadd8ca Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Mon, 2 Sep 2024 13:25:14 -0400 Subject: [PATCH 04/14] Generate new output --- .../OmeBhatkhandeEnglish.ufo/fontinfo.plist | 18 ++++++-------- .../OmeBhatkhandeHindi.ufo/fontinfo.plist | 18 ++++++-------- .../OmeBhatkhandeHindi.ufo/glyphs/A_.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/A_E_.glif | 2 +- .../glyphs/A_E_acute.glif | 2 +- .../glyphs/A_acute.glif | 2 +- .../glyphs/A_breve.glif | 2 +- .../glyphs/A_circumflex.glif | 2 +- .../glyphs/A_dieresis.glif | 2 +- .../glyphs/A_grave.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/A_lpha.glif | 2 +- .../glyphs/A_lphatonos.glif | 2 +- .../glyphs/A_macron.glif | 2 +- .../glyphs/A_ogonek.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/A_ring.glif | 2 +- .../glyphs/A_ringacute.glif | 2 +- .../glyphs/A_tilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/B_.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/B_eta.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/C_.glif | 2 +- .../glyphs/C_acute.glif | 2 +- .../glyphs/C_caron.glif | 2 +- .../glyphs/C_cedilla.glif | 2 +- .../glyphs/C_circumflex.glif | 2 +- .../glyphs/C_dotaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/C_hi.glif | 2 +- .../glyphs/D_caron.glif | 2 +- .../glyphs/D_croat.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/D_elta.glif | 2 +- .../glyphs/E_acute.glif | 2 +- .../glyphs/E_breve.glif | 2 +- .../glyphs/E_caron.glif | 2 +- .../glyphs/E_circumflex.glif | 2 +- .../glyphs/E_dieresis.glif | 2 +- .../glyphs/E_dotaccent.glif | 2 +- .../glyphs/E_grave.glif | 2 +- .../glyphs/E_macron.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/E_ng.glif | 2 +- .../glyphs/E_ogonek.glif | 2 +- .../glyphs/E_psilon.glif | 2 +- .../glyphs/E_psilontonos.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/E_ta.glif | 2 +- .../glyphs/E_tatonos.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/E_th.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/E_uro.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/F_.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/G_amma.glif | 2 +- .../glyphs/G_breve.glif | 2 +- .../glyphs/G_circumflex.glif | 2 +- .../glyphs/G_commaaccent.glif | 2 +- .../glyphs/G_dotaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/H_.glif | 2 +- .../glyphs/H_18533.glif | 2 +- .../glyphs/H_18543.glif | 2 +- .../glyphs/H_18551.glif | 2 +- .../glyphs/H_22073.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/H_bar.glif | 2 +- .../glyphs/H_circumflex.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/I_.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/I_J_.glif | 2 +- .../glyphs/I_acute.glif | 2 +- .../glyphs/I_breve.glif | 2 +- .../glyphs/I_circumflex.glif | 2 +- .../glyphs/I_dieresis.glif | 2 +- .../glyphs/I_dotaccent.glif | 2 +- .../glyphs/I_grave.glif | 2 +- .../glyphs/I_macron.glif | 2 +- .../glyphs/I_ogonek.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/I_ota.glif | 2 +- .../glyphs/I_otadieresis.glif | 2 +- .../glyphs/I_otatonos.glif | 2 +- .../glyphs/I_tilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/J_.glif | 2 +- .../glyphs/J_circumflex.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/K_.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/K_appa.glif | 2 +- .../glyphs/K_commaaccent.glif | 2 +- .../glyphs/L_acute.glif | 2 +- .../glyphs/L_ambda.glif | 2 +- .../glyphs/L_caron.glif | 2 +- .../glyphs/L_commaaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/L_dot.glif | 2 +- .../glyphs/L_slash.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/M_u.glif | 2 +- .../glyphs/N_acute.glif | 2 +- .../glyphs/N_caron.glif | 2 +- .../glyphs/N_commaaccent.glif | 2 +- .../glyphs/N_tilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/N_u.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/O_.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/O_E_.glif | 2 +- .../glyphs/O_acute.glif | 2 +- .../glyphs/O_breve.glif | 2 +- .../glyphs/O_circumflex.glif | 2 +- .../glyphs/O_dieresis.glif | 2 +- .../glyphs/O_grave.glif | 2 +- .../glyphs/O_hungarumlaut.glif | 2 +- .../glyphs/O_macron.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/O_mega.glif | 2 +- .../glyphs/O_megatonos.glif | 2 +- .../glyphs/O_micron.glif | 2 +- .../glyphs/O_microntonos.glif | 2 +- .../glyphs/O_slash.glif | 2 +- .../glyphs/O_slashacute.glif | 2 +- .../glyphs/O_tilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/P_.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/P_hi.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/P_i.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/P_si.glif | 2 +- .../glyphs/R_acute.glif | 2 +- .../glyphs/R_caron.glif | 2 +- .../glyphs/R_commaaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/R_ho.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/S_.glif | 2 +- .../glyphs/S_F_010000.glif | 2 +- .../glyphs/S_F_020000.glif | 2 +- .../glyphs/S_F_030000.glif | 2 +- .../glyphs/S_F_040000.glif | 2 +- .../glyphs/S_F_050000.glif | 2 +- .../glyphs/S_F_060000.glif | 2 +- .../glyphs/S_F_070000.glif | 2 +- .../glyphs/S_F_080000.glif | 2 +- .../glyphs/S_F_090000.glif | 2 +- .../glyphs/S_F_100000.glif | 2 +- .../glyphs/S_F_110000.glif | 2 +- .../glyphs/S_F_190000.glif | 2 +- .../glyphs/S_F_200000.glif | 2 +- .../glyphs/S_F_210000.glif | 2 +- .../glyphs/S_F_220000.glif | 2 +- .../glyphs/S_F_230000.glif | 2 +- .../glyphs/S_F_240000.glif | 2 +- .../glyphs/S_F_250000.glif | 2 +- .../glyphs/S_F_260000.glif | 2 +- .../glyphs/S_F_270000.glif | 2 +- .../glyphs/S_F_280000.glif | 2 +- .../glyphs/S_F_360000.glif | 2 +- .../glyphs/S_F_370000.glif | 2 +- .../glyphs/S_F_380000.glif | 2 +- .../glyphs/S_F_390000.glif | 2 +- .../glyphs/S_F_400000.glif | 2 +- .../glyphs/S_F_410000.glif | 2 +- .../glyphs/S_F_420000.glif | 2 +- .../glyphs/S_F_430000.glif | 2 +- .../glyphs/S_F_440000.glif | 2 +- .../glyphs/S_F_450000.glif | 2 +- .../glyphs/S_F_460000.glif | 2 +- .../glyphs/S_F_470000.glif | 2 +- .../glyphs/S_F_480000.glif | 2 +- .../glyphs/S_F_490000.glif | 2 +- .../glyphs/S_F_500000.glif | 2 +- .../glyphs/S_F_510000.glif | 2 +- .../glyphs/S_F_520000.glif | 2 +- .../glyphs/S_F_530000.glif | 2 +- .../glyphs/S_F_540000.glif | 2 +- .../glyphs/S_acute.glif | 2 +- .../glyphs/S_caron.glif | 2 +- .../glyphs/S_cedilla.glif | 2 +- .../glyphs/S_circumflex.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/S_igma.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/T_.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/T_au.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/T_bar.glif | 2 +- .../glyphs/T_caron.glif | 2 +- .../glyphs/T_commaaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/T_heta.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/T_horn.glif | 2 +- .../glyphs/U_acute.glif | 2 +- .../glyphs/U_breve.glif | 2 +- .../glyphs/U_circumflex.glif | 2 +- .../glyphs/U_dieresis.glif | 2 +- .../glyphs/U_grave.glif | 2 +- .../glyphs/U_hungarumlaut.glif | 2 +- .../glyphs/U_macron.glif | 2 +- .../glyphs/U_ogonek.glif | 2 +- .../glyphs/U_psilon.glif | 2 +- .../glyphs/U_psilondieresis.glif | 2 +- .../glyphs/U_psilontonos.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/U_ring.glif | 2 +- .../glyphs/U_tilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/V_.glif | 2 +- .../glyphs/W_acute.glif | 2 +- .../glyphs/W_circumflex.glif | 2 +- .../glyphs/W_dieresis.glif | 2 +- .../glyphs/W_grave.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/X_.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/X_i.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/Y_.glif | 2 +- .../glyphs/Y_acute.glif | 2 +- .../glyphs/Y_circumflex.glif | 2 +- .../glyphs/Y_dieresis.glif | 2 +- .../glyphs/Y_grave.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/Z_.glif | 2 +- .../glyphs/Z_acute.glif | 2 +- .../glyphs/Z_caron.glif | 2 +- .../glyphs/Z_dotaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/Z_eta.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/a.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/aacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/abreve.glif | 2 +- .../glyphs/acircumflex.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/acute.glif | 2 +- .../glyphs/adieresis.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ae.glif | 2 +- .../glyphs/aeacute.glif | 2 +- .../glyphs/afii00208.glif | 2 +- .../glyphs/afii10017.glif | 2 +- .../glyphs/afii10018.glif | 2 +- .../glyphs/afii10019.glif | 2 +- .../glyphs/afii10020.glif | 2 +- .../glyphs/afii10021.glif | 2 +- .../glyphs/afii10022.glif | 2 +- .../glyphs/afii10023.glif | 2 +- .../glyphs/afii10024.glif | 2 +- .../glyphs/afii10025.glif | 2 +- .../glyphs/afii10026.glif | 2 +- .../glyphs/afii10027.glif | 2 +- .../glyphs/afii10028.glif | 2 +- .../glyphs/afii10029.glif | 2 +- .../glyphs/afii10030.glif | 2 +- .../glyphs/afii10031.glif | 2 +- .../glyphs/afii10032.glif | 2 +- .../glyphs/afii10033.glif | 2 +- .../glyphs/afii10034.glif | 2 +- .../glyphs/afii10035.glif | 2 +- .../glyphs/afii10036.glif | 2 +- .../glyphs/afii10037.glif | 2 +- .../glyphs/afii10038.glif | 2 +- .../glyphs/afii10039.glif | 2 +- .../glyphs/afii10040.glif | 2 +- .../glyphs/afii10041.glif | 2 +- .../glyphs/afii10042.glif | 2 +- .../glyphs/afii10043.glif | 2 +- .../glyphs/afii10044.glif | 2 +- .../glyphs/afii10045.glif | 2 +- .../glyphs/afii10046.glif | 2 +- .../glyphs/afii10047.glif | 2 +- .../glyphs/afii10048.glif | 2 +- .../glyphs/afii10049.glif | 2 +- .../glyphs/afii10050.glif | 2 +- .../glyphs/afii10051.glif | 2 +- .../glyphs/afii10052.glif | 2 +- .../glyphs/afii10053.glif | 2 +- .../glyphs/afii10054.glif | 2 +- .../glyphs/afii10055.glif | 2 +- .../glyphs/afii10056.glif | 2 +- .../glyphs/afii10057.glif | 2 +- .../glyphs/afii10058.glif | 2 +- .../glyphs/afii10059.glif | 2 +- .../glyphs/afii10060.glif | 2 +- .../glyphs/afii10061.glif | 2 +- .../glyphs/afii10062.glif | 2 +- .../glyphs/afii10065.glif | 2 +- .../glyphs/afii10066.glif | 2 +- .../glyphs/afii10067.glif | 2 +- .../glyphs/afii10068.glif | 2 +- .../glyphs/afii10069.glif | 2 +- .../glyphs/afii10070.glif | 2 +- .../glyphs/afii10071.glif | 2 +- .../glyphs/afii10072.glif | 2 +- .../glyphs/afii10073.glif | 2 +- .../glyphs/afii10074.glif | 2 +- .../glyphs/afii10075.glif | 2 +- .../glyphs/afii10076.glif | 2 +- .../glyphs/afii10077.glif | 2 +- .../glyphs/afii10078.glif | 2 +- .../glyphs/afii10079.glif | 2 +- .../glyphs/afii10080.glif | 2 +- .../glyphs/afii10081.glif | 2 +- .../glyphs/afii10082.glif | 2 +- .../glyphs/afii10083.glif | 2 +- .../glyphs/afii10084.glif | 2 +- .../glyphs/afii10085.glif | 2 +- .../glyphs/afii10086.glif | 2 +- .../glyphs/afii10087.glif | 2 +- .../glyphs/afii10088.glif | 2 +- .../glyphs/afii10089.glif | 2 +- .../glyphs/afii10090.glif | 2 +- .../glyphs/afii10091.glif | 2 +- .../glyphs/afii10092.glif | 2 +- .../glyphs/afii10093.glif | 2 +- .../glyphs/afii10094.glif | 2 +- .../glyphs/afii10095.glif | 2 +- .../glyphs/afii10096.glif | 2 +- .../glyphs/afii10097.glif | 2 +- .../glyphs/afii10098.glif | 2 +- .../glyphs/afii10099.glif | 2 +- .../glyphs/afii10100.glif | 2 +- .../glyphs/afii10101.glif | 2 +- .../glyphs/afii10102.glif | 2 +- .../glyphs/afii10103.glif | 2 +- .../glyphs/afii10104.glif | 2 +- .../glyphs/afii10105.glif | 2 +- .../glyphs/afii10106.glif | 2 +- .../glyphs/afii10107.glif | 2 +- .../glyphs/afii10108.glif | 2 +- .../glyphs/afii10109.glif | 2 +- .../glyphs/afii10110.glif | 2 +- .../glyphs/afii10145.glif | 2 +- .../glyphs/afii10193.glif | 2 +- .../glyphs/afii61248.glif | 2 +- .../glyphs/afii61289.glif | 2 +- .../glyphs/afii61352.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/agrave.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/alpha.glif | 2 +- .../glyphs/alphatonos.glif | 2 +- .../glyphs/amacron.glif | 2 +- .../glyphs/anoteleia.glif | 2 +- .../glyphs/aogonek.glif | 2 +- .../glyphs/approxequal.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/aring.glif | 2 +- .../glyphs/aringacute.glif | 2 +- .../glyphs/arrowboth.glif | 2 +- .../glyphs/arrowdown.glif | 2 +- .../glyphs/arrowleft.glif | 2 +- .../glyphs/arrowright.glif | 2 +- .../glyphs/arrowup.glif | 2 +- .../glyphs/arrowupdn.glif | 2 +- .../glyphs/arrowupdnbse.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/atilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/b.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/beta.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/block.glif | 2 +- .../glyphs/braceleft.glif | 2 +- .../glyphs/braceright.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/breve.glif | 2 +- .../glyphs/brokenbar.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/bullet.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/c.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/cacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/caron.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ccaron.glif | 2 +- .../glyphs/ccedilla.glif | 2 +- .../glyphs/ccircumflex.glif | 2 +- .../glyphs/cdotaccent.glif | 2 +- .../glyphs/cedilla.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/cent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/chi.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/circle.glif | 2 +- .../glyphs/circumflex.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/club.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/colon.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/comma.glif | 2 +- .../glyphs/copyright.glif | 2 +- .../glyphs/currency.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/dagger.glif | 2 +- .../glyphs/daggerdbl.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/dcaron.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/dcroat.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/degree.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/delta.glif | 2 +- .../glyphs/diamond.glif | 2 +- .../glyphs/dieresis.glif | 2 +- .../glyphs/dieresistonos.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/divide.glif | 2 +- .../glyphs/dkshade.glif | 2 +- .../glyphs/dnblock.glif | 2 +- .../glyphs/dotaccent.glif | 2 +- .../glyphs/dotlessi.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/eacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ebreve.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ecaron.glif | 2 +- .../glyphs/ecircumflex.glif | 2 +- .../glyphs/edieresis.glif | 2 +- .../glyphs/edotaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/egrave.glif | 2 +- .../glyphs/ellipsis.glif | 2 +- .../glyphs/emacron.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/emdash.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/endash.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/eng.glif | 2 +- .../glyphs/eogonek.glif | 2 +- .../glyphs/epsilon.glif | 2 +- .../glyphs/epsilontonos.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/equal.glif | 2 +- .../glyphs/equivalence.glif | 2 +- .../glyphs/estimated.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/eta.glif | 2 +- .../glyphs/etatonos.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/eth.glif | 2 +- .../glyphs/exclamdbl.glif | 2 +- .../glyphs/exclamdown.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/f.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/female.glif | 2 +- .../glyphs/filledbox.glif | 2 +- .../glyphs/filledrect.glif | 2 +- .../glyphs/fiveeighths.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/florin.glif | 2 +- .../glyphs/fraction.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/franc.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/gamma.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/gbreve.glif | 2 +- .../glyphs/gcircumflex.glif | 2 +- .../glyphs/gcommaaccent.glif | 2 +- .../glyphs/gdotaccent.glif | 2 +- .../glyphs/germandbls.glif | 2 +- .../glyphs/glyph155.glif | 2 +- .../glyphs/greater.glif | 2 +- .../glyphs/greaterequal.glif | 2 +- .../glyphs/guillemotleft.glif | 2 +- .../glyphs/guillemotright.glif | 2 +- .../glyphs/guilsinglleft.glif | 2 +- .../glyphs/guilsinglright.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/h.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/hbar.glif | 2 +- .../glyphs/hcircumflex.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/heart.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/house.glif | 2 +- .../glyphs/hungarumlaut.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/i.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/iacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ibreve.glif | 2 +- .../glyphs/icircumflex.glif | 2 +- .../glyphs/idieresis.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/igrave.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ij.glif | 2 +- .../glyphs/imacron.glif | 2 +- .../glyphs/infinity.glif | 2 +- .../glyphs/integral.glif | 2 +- .../glyphs/integralbt.glif | 2 +- .../glyphs/integraltp.glif | 2 +- .../glyphs/intersection.glif | 2 +- .../glyphs/invbullet.glif | 2 +- .../glyphs/invcircle.glif | 2 +- .../glyphs/invsmileface.glif | 2 +- .../glyphs/iogonek.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/iota.glif | 2 +- .../glyphs/iotadieresis.glif | 2 +- .../glyphs/iotadieresistonos.glif | 2 +- .../glyphs/iotatonos.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/itilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/j.glif | 2 +- .../glyphs/jcircumflex.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/k.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/kappa.glif | 2 +- .../glyphs/kcommaaccent.glif | 2 +- .../glyphs/kgreenlandic.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/lacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/lambda.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/lcaron.glif | 2 +- .../glyphs/lcommaaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ldot.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/less.glif | 2 +- .../glyphs/lessequal.glif | 2 +- .../glyphs/lfblock.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/lira.glif | 2 +- .../glyphs/logicalnot.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/longs.glif | 2 +- .../glyphs/lozenge.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/lslash.glif | 2 +- .../glyphs/ltshade.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/macron.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/male.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/minus.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/minute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/mu.glif | 2 +- .../glyphs/multiply.glif | 2 +- .../glyphs/musicalnote.glif | 2 +- .../glyphs/musicalnotedbl.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/nacute.glif | 2 +- .../glyphs/napostrophe.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ncaron.glif | 2 +- .../glyphs/ncommaaccent.glif | 2 +- .../glyphs/nonmarkingreturn.glif | 2 +- .../glyphs/notequal.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ntilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/nu.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/o.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/oacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/obreve.glif | 2 +- .../glyphs/ocircumflex.glif | 2 +- .../glyphs/odieresis.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/oe.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ogonek.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ograve.glif | 2 +- .../glyphs/ohungarumlaut.glif | 2 +- .../glyphs/omacron.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/omega.glif | 2 +- .../glyphs/omegatonos.glif | 2 +- .../glyphs/omicron.glif | 2 +- .../glyphs/omicrontonos.glif | 2 +- .../glyphs/oneeighth.glif | 2 +- .../glyphs/onehalf.glif | 2 +- .../glyphs/onequarter.glif | 2 +- .../glyphs/openbullet.glif | 2 +- .../glyphs/ordfeminine.glif | 2 +- .../glyphs/ordmasculine.glif | 2 +- .../glyphs/orthogonal.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/oslash.glif | 2 +- .../glyphs/oslashacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/otilde.glif | 2 +- .../glyphs/paragraph.glif | 2 +- .../glyphs/partialdiff.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/period.glif | 2 +- .../glyphs/periodcentered.glif | 2 +- .../glyphs/perthousand.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/peseta.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/phi.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/pi.glif | 2 +- .../glyphs/plusminus.glif | 2 +- .../glyphs/product.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/psi.glif | 2 +- .../glyphs/question.glif | 2 +- .../glyphs/questiondown.glif | 2 +- .../glyphs/quotedbl.glif | 2 +- .../glyphs/quotedblbase.glif | 2 +- .../glyphs/quotedblleft.glif | 2 +- .../glyphs/quotedblright.glif | 2 +- .../glyphs/quoteleft.glif | 2 +- .../glyphs/quotereversed.glif | 2 +- .../glyphs/quotesinglbase.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/racute.glif | 2 +- .../glyphs/radical.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/rcaron.glif | 2 +- .../glyphs/rcommaaccent.glif | 2 +- .../glyphs/registered.glif | 2 +- .../glyphs/revlogicalnot.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/rho.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ring.glif | 2 +- .../glyphs/rtblock.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/sacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/scaron.glif | 2 +- .../glyphs/scedilla.glif | 2 +- .../glyphs/scircumflex.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/second.glif | 2 +- .../glyphs/section.glif | 2 +- .../glyphs/seveneighths.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/shade.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/sigma.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/sigma1.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/slash.glif | 2 +- .../glyphs/smileface.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/spade.glif | 2 +- .../glyphs/sterling.glif | 2 +- .../glyphs/summation.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/sun.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/t.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/tau.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/tbar.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/tcaron.glif | 2 +- .../glyphs/tcommaaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/theta.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/thorn.glif | 2 +- .../glyphs/threeeighths.glif | 2 +- .../glyphs/threequarters.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/tilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/tonos.glif | 2 +- .../glyphs/trademark.glif | 2 +- .../glyphs/triagdn.glif | 2 +- .../glyphs/triaglf.glif | 2 +- .../glyphs/triagrt.glif | 2 +- .../glyphs/triagup.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/uacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ubreve.glif | 2 +- .../glyphs/ucircumflex.glif | 2 +- .../glyphs/udieresis.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ugrave.glif | 2 +- .../glyphs/uhungarumlaut.glif | 2 +- .../glyphs/umacron.glif | 2 +- .../glyphs/underscoredbl.glif | 2 +- .../glyphs/uni00B_2.glif | 2 +- .../glyphs/uni00B_3.glif | 2 +- .../glyphs/uni00B_9.glif | 2 +- .../glyphs/uni02C_9.glif | 2 +- .../glyphs/uni0394.glif | 2 +- .../glyphs/uni03A_9.glif | 2 +- .../glyphs/uni03B_C_.glif | 2 +- .../glyphs/uni203E_.glif | 2 +- .../glyphs/uni207F_.glif | 2 +- .../glyphs/uniF_001.glif | 2 +- .../glyphs/uniF_002.glif | 2 +- .../glyphs/uniF_004.glif | 2 +- .../glyphs/uniF_005.glif | 2 +- .../glyphs/uogonek.glif | 2 +- .../glyphs/upblock.glif | 2 +- .../glyphs/upsilon.glif | 2 +- .../glyphs/upsilondieresis.glif | 2 +- .../glyphs/upsilondieresistonos.glif | 2 +- .../glyphs/upsilontonos.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/uring.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/utilde.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/v.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/wacute.glif | 2 +- .../glyphs/wcircumflex.glif | 2 +- .../glyphs/wdieresis.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/wgrave.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/xi.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/y.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/yacute.glif | 2 +- .../glyphs/ycircumflex.glif | 2 +- .../glyphs/ydieresis.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/yen.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/ygrave.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/z.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/zacute.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/zcaron.glif | 2 +- .../glyphs/zdotaccent.glif | 2 +- .../OmeBhatkhandeHindi.ufo/glyphs/zeta.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/fontinfo.plist | 22 +++++++----------- .../OmeBhatkhandePunjabi.ufo/glyphs/A_.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/A_E_.glif | 2 +- .../glyphs/A_E_acute.glif | 2 +- .../glyphs/A_acute.glif | 2 +- .../glyphs/A_breve.glif | 2 +- .../glyphs/A_circumflex.glif | 2 +- .../glyphs/A_dieresis.glif | 2 +- .../glyphs/A_grave.glif | 2 +- .../glyphs/A_lpha.glif | 2 +- .../glyphs/A_lphatonos.glif | 2 +- .../glyphs/A_macron.glif | 2 +- .../glyphs/A_ogonek.glif | 2 +- .../glyphs/A_ring.glif | 2 +- .../glyphs/A_ringacute.glif | 2 +- .../glyphs/A_tilde.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/B_.glif | 2 +- .../glyphs/B_eta.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/C_.glif | 2 +- .../glyphs/C_acute.glif | 2 +- .../glyphs/C_caron.glif | 2 +- .../glyphs/C_cedilla.glif | 2 +- .../glyphs/C_circumflex.glif | 2 +- .../glyphs/C_dotaccent.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/C_hi.glif | 2 +- .../glyphs/D_caron.glif | 2 +- .../glyphs/D_croat.glif | 2 +- .../glyphs/D_elta.glif | 2 +- .../glyphs/E_acute.glif | 2 +- .../glyphs/E_breve.glif | 2 +- .../glyphs/E_caron.glif | 2 +- .../glyphs/E_circumflex.glif | 2 +- .../glyphs/E_dieresis.glif | 2 +- .../glyphs/E_dotaccent.glif | 2 +- .../glyphs/E_grave.glif | 2 +- .../glyphs/E_macron.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/E_ng.glif | 2 +- .../glyphs/E_ogonek.glif | 2 +- .../glyphs/E_psilon.glif | 2 +- .../glyphs/E_psilontonos.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/E_ta.glif | 2 +- .../glyphs/E_tatonos.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/E_th.glif | 2 +- .../glyphs/E_uro.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/F_.glif | 2 +- .../glyphs/G_amma.glif | 2 +- .../glyphs/G_breve.glif | 2 +- .../glyphs/G_circumflex.glif | 2 +- .../glyphs/G_commaaccent.glif | 2 +- .../glyphs/G_dotaccent.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/H_.glif | 2 +- .../glyphs/H_18533.glif | 2 +- .../glyphs/H_18543.glif | 2 +- .../glyphs/H_18551.glif | 2 +- .../glyphs/H_22073.glif | 2 +- .../glyphs/H_bar.glif | 2 +- .../glyphs/H_circumflex.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/I_.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/I_J_.glif | 2 +- .../glyphs/I_acute.glif | 2 +- .../glyphs/I_breve.glif | 2 +- .../glyphs/I_circumflex.glif | 2 +- .../glyphs/I_dieresis.glif | 2 +- .../glyphs/I_dotaccent.glif | 2 +- .../glyphs/I_grave.glif | 2 +- .../glyphs/I_macron.glif | 2 +- .../glyphs/I_ogonek.glif | 2 +- .../glyphs/I_ota.glif | 2 +- .../glyphs/I_otadieresis.glif | 2 +- .../glyphs/I_otatonos.glif | 2 +- .../glyphs/I_tilde.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/J_.glif | 2 +- .../glyphs/J_circumflex.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/K_.glif | 2 +- .../glyphs/K_appa.glif | 2 +- .../glyphs/K_commaaccent.glif | 2 +- .../glyphs/L_acute.glif | 2 +- .../glyphs/L_ambda.glif | 2 +- .../glyphs/L_caron.glif | 2 +- .../glyphs/L_commaaccent.glif | 2 +- .../glyphs/L_dot.glif | 2 +- .../glyphs/L_slash.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/M_u.glif | 2 +- .../glyphs/N_acute.glif | 2 +- .../glyphs/N_caron.glif | 2 +- .../glyphs/N_commaaccent.glif | 2 +- .../glyphs/N_tilde.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/N_u.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/O_.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/O_E_.glif | 2 +- .../glyphs/O_acute.glif | 2 +- .../glyphs/O_breve.glif | 2 +- .../glyphs/O_circumflex.glif | 2 +- .../glyphs/O_dieresis.glif | 2 +- .../glyphs/O_grave.glif | 2 +- .../glyphs/O_hungarumlaut.glif | 2 +- .../glyphs/O_macron.glif | 2 +- .../glyphs/O_mega.glif | 2 +- .../glyphs/O_megatonos.glif | 2 +- .../glyphs/O_micron.glif | 2 +- .../glyphs/O_microntonos.glif | 2 +- .../glyphs/O_slash.glif | 2 +- .../glyphs/O_slashacute.glif | 2 +- .../glyphs/O_tilde.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/P_.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/P_hi.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/P_i.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/P_si.glif | 2 +- .../glyphs/R_acute.glif | 2 +- .../glyphs/R_caron.glif | 2 +- .../glyphs/R_commaaccent.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/R_ho.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/S_.glif | 2 +- .../glyphs/S_F_010000.glif | 2 +- .../glyphs/S_F_020000.glif | 2 +- .../glyphs/S_F_030000.glif | 2 +- .../glyphs/S_F_040000.glif | 2 +- .../glyphs/S_F_050000.glif | 2 +- .../glyphs/S_F_060000.glif | 2 +- .../glyphs/S_F_070000.glif | 2 +- .../glyphs/S_F_080000.glif | 2 +- .../glyphs/S_F_090000.glif | 2 +- .../glyphs/S_F_100000.glif | 2 +- .../glyphs/S_F_110000.glif | 2 +- .../glyphs/S_F_190000.glif | 2 +- .../glyphs/S_F_200000.glif | 2 +- .../glyphs/S_F_210000.glif | 2 +- .../glyphs/S_F_220000.glif | 2 +- .../glyphs/S_F_230000.glif | 2 +- .../glyphs/S_F_240000.glif | 2 +- .../glyphs/S_F_250000.glif | 2 +- .../glyphs/S_F_260000.glif | 2 +- .../glyphs/S_F_270000.glif | 2 +- .../glyphs/S_F_280000.glif | 2 +- .../glyphs/S_F_360000.glif | 2 +- .../glyphs/S_F_370000.glif | 2 +- .../glyphs/S_F_380000.glif | 2 +- .../glyphs/S_F_390000.glif | 2 +- .../glyphs/S_F_400000.glif | 2 +- .../glyphs/S_F_410000.glif | 2 +- .../glyphs/S_F_420000.glif | 2 +- .../glyphs/S_F_430000.glif | 2 +- .../glyphs/S_F_440000.glif | 2 +- .../glyphs/S_F_450000.glif | 2 +- .../glyphs/S_F_460000.glif | 2 +- .../glyphs/S_F_470000.glif | 2 +- .../glyphs/S_F_480000.glif | 2 +- .../glyphs/S_F_490000.glif | 2 +- .../glyphs/S_F_500000.glif | 2 +- .../glyphs/S_F_510000.glif | 2 +- .../glyphs/S_F_520000.glif | 2 +- .../glyphs/S_F_530000.glif | 2 +- .../glyphs/S_F_540000.glif | 2 +- .../glyphs/S_acute.glif | 2 +- .../glyphs/S_caron.glif | 2 +- .../glyphs/S_cedilla.glif | 2 +- .../glyphs/S_circumflex.glif | 2 +- .../glyphs/S_igma.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/T_.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/T_au.glif | 2 +- .../glyphs/T_bar.glif | 2 +- .../glyphs/T_caron.glif | 2 +- .../glyphs/T_commaaccent.glif | 2 +- .../glyphs/T_heta.glif | 2 +- .../glyphs/T_horn.glif | 2 +- .../glyphs/U_acute.glif | 2 +- .../glyphs/U_breve.glif | 2 +- .../glyphs/U_circumflex.glif | 2 +- .../glyphs/U_dieresis.glif | 2 +- .../glyphs/U_grave.glif | 2 +- .../glyphs/U_hungarumlaut.glif | 2 +- .../glyphs/U_macron.glif | 2 +- .../glyphs/U_ogonek.glif | 2 +- .../glyphs/U_psilon.glif | 2 +- .../glyphs/U_psilondieresis.glif | 2 +- .../glyphs/U_psilontonos.glif | 2 +- .../glyphs/U_ring.glif | 2 +- .../glyphs/U_tilde.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/V_.glif | 2 +- .../glyphs/W_acute.glif | 2 +- .../glyphs/W_circumflex.glif | 2 +- .../glyphs/W_dieresis.glif | 2 +- .../glyphs/W_grave.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/X_.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/X_i.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/Y_.glif | 2 +- .../glyphs/Y_acute.glif | 2 +- .../glyphs/Y_circumflex.glif | 2 +- .../glyphs/Y_dieresis.glif | 2 +- .../glyphs/Y_grave.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/Z_.glif | 2 +- .../glyphs/Z_acute.glif | 2 +- .../glyphs/Z_caron.glif | 2 +- .../glyphs/Z_dotaccent.glif | 2 +- .../glyphs/Z_eta.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/a.glif | 2 +- .../glyphs/aacute.glif | 2 +- .../glyphs/abreve.glif | 2 +- .../glyphs/acircumflex.glif | 2 +- .../glyphs/acute.glif | 2 +- .../glyphs/adieresis.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/ae.glif | 2 +- .../glyphs/aeacute.glif | 2 +- .../glyphs/afii00208.glif | 2 +- .../glyphs/afii10017.glif | 2 +- .../glyphs/afii10018.glif | 2 +- .../glyphs/afii10019.glif | 2 +- .../glyphs/afii10020.glif | 2 +- .../glyphs/afii10021.glif | 2 +- .../glyphs/afii10022.glif | 2 +- .../glyphs/afii10023.glif | 2 +- .../glyphs/afii10024.glif | 2 +- .../glyphs/afii10025.glif | 2 +- .../glyphs/afii10026.glif | 2 +- .../glyphs/afii10027.glif | 2 +- .../glyphs/afii10028.glif | 2 +- .../glyphs/afii10029.glif | 2 +- .../glyphs/afii10030.glif | 2 +- .../glyphs/afii10031.glif | 2 +- .../glyphs/afii10032.glif | 2 +- .../glyphs/afii10033.glif | 2 +- .../glyphs/afii10034.glif | 2 +- .../glyphs/afii10035.glif | 2 +- .../glyphs/afii10036.glif | 2 +- .../glyphs/afii10037.glif | 2 +- .../glyphs/afii10038.glif | 2 +- .../glyphs/afii10039.glif | 2 +- .../glyphs/afii10040.glif | 2 +- .../glyphs/afii10041.glif | 2 +- .../glyphs/afii10042.glif | 2 +- .../glyphs/afii10043.glif | 2 +- .../glyphs/afii10044.glif | 2 +- .../glyphs/afii10045.glif | 2 +- .../glyphs/afii10046.glif | 2 +- .../glyphs/afii10047.glif | 2 +- .../glyphs/afii10048.glif | 2 +- .../glyphs/afii10049.glif | 2 +- .../glyphs/afii10050.glif | 2 +- .../glyphs/afii10051.glif | 2 +- .../glyphs/afii10052.glif | 2 +- .../glyphs/afii10053.glif | 2 +- .../glyphs/afii10054.glif | 2 +- .../glyphs/afii10055.glif | 2 +- .../glyphs/afii10056.glif | 2 +- .../glyphs/afii10057.glif | 2 +- .../glyphs/afii10058.glif | 2 +- .../glyphs/afii10059.glif | 2 +- .../glyphs/afii10060.glif | 2 +- .../glyphs/afii10061.glif | 2 +- .../glyphs/afii10062.glif | 2 +- .../glyphs/afii10065.glif | 2 +- .../glyphs/afii10066.glif | 2 +- .../glyphs/afii10067.glif | 2 +- .../glyphs/afii10068.glif | 2 +- .../glyphs/afii10069.glif | 2 +- .../glyphs/afii10070.glif | 2 +- .../glyphs/afii10071.glif | 2 +- .../glyphs/afii10072.glif | 2 +- .../glyphs/afii10073.glif | 2 +- .../glyphs/afii10074.glif | 2 +- .../glyphs/afii10075.glif | 2 +- .../glyphs/afii10076.glif | 2 +- .../glyphs/afii10077.glif | 2 +- .../glyphs/afii10078.glif | 2 +- .../glyphs/afii10079.glif | 2 +- .../glyphs/afii10080.glif | 2 +- .../glyphs/afii10081.glif | 2 +- .../glyphs/afii10082.glif | 2 +- .../glyphs/afii10083.glif | 2 +- .../glyphs/afii10084.glif | 2 +- .../glyphs/afii10085.glif | 2 +- .../glyphs/afii10086.glif | 2 +- .../glyphs/afii10087.glif | 2 +- .../glyphs/afii10088.glif | 2 +- .../glyphs/afii10089.glif | 2 +- .../glyphs/afii10090.glif | 2 +- .../glyphs/afii10091.glif | 2 +- .../glyphs/afii10092.glif | 2 +- .../glyphs/afii10093.glif | 2 +- .../glyphs/afii10094.glif | 2 +- .../glyphs/afii10095.glif | 2 +- .../glyphs/afii10096.glif | 2 +- .../glyphs/afii10097.glif | 2 +- .../glyphs/afii10098.glif | 2 +- .../glyphs/afii10099.glif | 2 +- .../glyphs/afii10100.glif | 2 +- .../glyphs/afii10101.glif | 2 +- .../glyphs/afii10102.glif | 2 +- .../glyphs/afii10103.glif | 2 +- .../glyphs/afii10104.glif | 2 +- .../glyphs/afii10105.glif | 2 +- .../glyphs/afii10106.glif | 2 +- .../glyphs/afii10107.glif | 2 +- .../glyphs/afii10108.glif | 2 +- .../glyphs/afii10109.glif | 2 +- .../glyphs/afii10110.glif | 2 +- .../glyphs/afii10145.glif | 2 +- .../glyphs/afii10193.glif | 2 +- .../glyphs/afii61248.glif | 2 +- .../glyphs/afii61289.glif | 2 +- .../glyphs/afii61352.glif | 2 +- .../glyphs/agrave.glif | 2 +- .../glyphs/alpha.glif | 2 +- .../glyphs/alphatonos.glif | 2 +- .../glyphs/amacron.glif | 2 +- .../glyphs/anoteleia.glif | 2 +- .../glyphs/aogonek.glif | 2 +- .../glyphs/approxequal.glif | 2 +- .../glyphs/aring.glif | 2 +- .../glyphs/aringacute.glif | 2 +- .../glyphs/arrowboth.glif | 2 +- .../glyphs/arrowdown.glif | 2 +- .../glyphs/arrowleft.glif | 2 +- .../glyphs/arrowright.glif | 2 +- .../glyphs/arrowup.glif | 2 +- .../glyphs/arrowupdn.glif | 2 +- .../glyphs/arrowupdnbse.glif | 2 +- .../glyphs/atilde.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/b.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/beta.glif | 2 +- .../glyphs/block.glif | 2 +- .../glyphs/braceleft.glif | 2 +- .../glyphs/braceright.glif | 2 +- .../glyphs/breve.glif | 2 +- .../glyphs/brokenbar.glif | 2 +- .../glyphs/bullet.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/c.glif | 2 +- .../glyphs/cacute.glif | 2 +- .../glyphs/caron.glif | 2 +- .../glyphs/ccaron.glif | 2 +- .../glyphs/ccedilla.glif | 2 +- .../glyphs/ccircumflex.glif | 2 +- .../glyphs/cdotaccent.glif | 2 +- .../glyphs/cedilla.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/cent.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/chi.glif | 2 +- .../glyphs/circle.glif | 2 +- .../glyphs/circumflex.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/club.glif | 2 +- .../glyphs/colon.glif | 2 +- .../glyphs/comma.glif | 2 +- .../glyphs/copyright.glif | 2 +- .../glyphs/currency.glif | 2 +- .../glyphs/dagger.glif | 2 +- .../glyphs/daggerdbl.glif | 2 +- .../glyphs/dcaron.glif | 2 +- .../glyphs/dcroat.glif | 2 +- .../glyphs/degree.glif | 2 +- .../glyphs/delta.glif | 2 +- .../glyphs/diamond.glif | 2 +- .../glyphs/dieresis.glif | 2 +- .../glyphs/dieresistonos.glif | 2 +- .../glyphs/divide.glif | 2 +- .../glyphs/dkshade.glif | 2 +- .../glyphs/dnblock.glif | 2 +- .../glyphs/dotaccent.glif | 2 +- .../glyphs/dotlessi.glif | 2 +- .../glyphs/eacute.glif | 2 +- .../glyphs/ebreve.glif | 2 +- .../glyphs/ecaron.glif | 2 +- .../glyphs/ecircumflex.glif | 2 +- .../glyphs/edieresis.glif | 2 +- .../glyphs/edotaccent.glif | 2 +- .../glyphs/egrave.glif | 2 +- .../glyphs/ellipsis.glif | 2 +- .../glyphs/emacron.glif | 2 +- .../glyphs/emdash.glif | 2 +- .../glyphs/endash.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/eng.glif | 2 +- .../glyphs/eogonek.glif | 2 +- .../glyphs/epsilon.glif | 2 +- .../glyphs/epsilontonos.glif | 2 +- .../glyphs/equal.glif | 2 +- .../glyphs/equivalence.glif | 2 +- .../glyphs/estimated.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/eta.glif | 2 +- .../glyphs/etatonos.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/eth.glif | 2 +- .../glyphs/exclamdbl.glif | 2 +- .../glyphs/exclamdown.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/f.glif | 2 +- .../glyphs/female.glif | 2 +- .../glyphs/filledbox.glif | 2 +- .../glyphs/filledrect.glif | 2 +- .../glyphs/fiveeighths.glif | 2 +- .../glyphs/florin.glif | 2 +- .../glyphs/fraction.glif | 2 +- .../glyphs/franc.glif | 2 +- .../glyphs/gamma.glif | 2 +- .../glyphs/gbreve.glif | 2 +- .../glyphs/gcircumflex.glif | 2 +- .../glyphs/gcommaaccent.glif | 2 +- .../glyphs/gdotaccent.glif | 2 +- .../glyphs/germandbls.glif | 2 +- .../glyphs/glyph155.glif | 2 +- .../glyphs/greater.glif | 2 +- .../glyphs/greaterequal.glif | 2 +- .../glyphs/guillemotleft.glif | 2 +- .../glyphs/guillemotright.glif | 2 +- .../glyphs/guilsinglleft.glif | 2 +- .../glyphs/guilsinglright.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/h.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/hbar.glif | 2 +- .../glyphs/hcircumflex.glif | 2 +- .../glyphs/heart.glif | 2 +- .../glyphs/house.glif | 2 +- .../glyphs/hungarumlaut.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/i.glif | 2 +- .../glyphs/iacute.glif | 2 +- .../glyphs/ibreve.glif | 2 +- .../glyphs/icircumflex.glif | 2 +- .../glyphs/idieresis.glif | 2 +- .../glyphs/igrave.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/ij.glif | 2 +- .../glyphs/imacron.glif | 2 +- .../glyphs/infinity.glif | 2 +- .../glyphs/integral.glif | 2 +- .../glyphs/integralbt.glif | 2 +- .../glyphs/integraltp.glif | 2 +- .../glyphs/intersection.glif | 2 +- .../glyphs/invbullet.glif | 2 +- .../glyphs/invcircle.glif | 2 +- .../glyphs/invsmileface.glif | 2 +- .../glyphs/iogonek.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/iota.glif | 2 +- .../glyphs/iotadieresis.glif | 2 +- .../glyphs/iotadieresistonos.glif | 2 +- .../glyphs/iotatonos.glif | 2 +- .../glyphs/itilde.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/j.glif | 2 +- .../glyphs/jcircumflex.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/k.glif | 2 +- .../glyphs/kappa.glif | 2 +- .../glyphs/kcommaaccent.glif | 2 +- .../glyphs/kgreenlandic.glif | 2 +- .../glyphs/lacute.glif | 2 +- .../glyphs/lambda.glif | 2 +- .../glyphs/lcaron.glif | 2 +- .../glyphs/lcommaaccent.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/ldot.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/less.glif | 2 +- .../glyphs/lessequal.glif | 2 +- .../glyphs/lfblock.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/lira.glif | 2 +- .../glyphs/logicalnot.glif | 2 +- .../glyphs/longs.glif | 2 +- .../glyphs/lozenge.glif | 2 +- .../glyphs/lslash.glif | 2 +- .../glyphs/ltshade.glif | 2 +- .../glyphs/macron.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/male.glif | 2 +- .../glyphs/minus.glif | 2 +- .../glyphs/minute.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/mu.glif | 2 +- .../glyphs/multiply.glif | 2 +- .../glyphs/musicalnote.glif | 2 +- .../glyphs/musicalnotedbl.glif | 2 +- .../glyphs/nacute.glif | 2 +- .../glyphs/napostrophe.glif | 2 +- .../glyphs/ncaron.glif | 2 +- .../glyphs/ncommaaccent.glif | 2 +- .../glyphs/nonmarkingreturn.glif | 2 +- .../glyphs/notequal.glif | 2 +- .../glyphs/ntilde.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/nu.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/o.glif | 2 +- .../glyphs/oacute.glif | 2 +- .../glyphs/obreve.glif | 2 +- .../glyphs/ocircumflex.glif | 2 +- .../glyphs/odieresis.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/oe.glif | 2 +- .../glyphs/ogonek.glif | 2 +- .../glyphs/ograve.glif | 2 +- .../glyphs/ohungarumlaut.glif | 2 +- .../glyphs/omacron.glif | 2 +- .../glyphs/omega.glif | 2 +- .../glyphs/omegatonos.glif | 2 +- .../glyphs/omicron.glif | 2 +- .../glyphs/omicrontonos.glif | 2 +- .../glyphs/oneeighth.glif | 2 +- .../glyphs/onehalf.glif | 2 +- .../glyphs/onequarter.glif | 2 +- .../glyphs/openbullet.glif | 2 +- .../glyphs/ordfeminine.glif | 2 +- .../glyphs/ordmasculine.glif | 2 +- .../glyphs/orthogonal.glif | 2 +- .../glyphs/oslash.glif | 2 +- .../glyphs/oslashacute.glif | 2 +- .../glyphs/otilde.glif | 2 +- .../glyphs/paragraph.glif | 2 +- .../glyphs/partialdiff.glif | 2 +- .../glyphs/period.glif | 2 +- .../glyphs/periodcentered.glif | 2 +- .../glyphs/perthousand.glif | 2 +- .../glyphs/peseta.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/phi.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/pi.glif | 2 +- .../glyphs/plusminus.glif | 2 +- .../glyphs/product.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/psi.glif | 2 +- .../glyphs/question.glif | 2 +- .../glyphs/questiondown.glif | 2 +- .../glyphs/quotedbl.glif | 2 +- .../glyphs/quotedblbase.glif | 2 +- .../glyphs/quotedblleft.glif | 2 +- .../glyphs/quotedblright.glif | 2 +- .../glyphs/quoteleft.glif | 2 +- .../glyphs/quotereversed.glif | 2 +- .../glyphs/quotesinglbase.glif | 2 +- .../glyphs/racute.glif | 2 +- .../glyphs/radical.glif | 2 +- .../glyphs/rcaron.glif | 2 +- .../glyphs/rcommaaccent.glif | 2 +- .../glyphs/registered.glif | 2 +- .../glyphs/revlogicalnot.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/rho.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/ring.glif | 2 +- .../glyphs/rtblock.glif | 2 +- .../glyphs/sacute.glif | 2 +- .../glyphs/scaron.glif | 2 +- .../glyphs/scedilla.glif | 2 +- .../glyphs/scircumflex.glif | 2 +- .../glyphs/second.glif | 2 +- .../glyphs/section.glif | 2 +- .../glyphs/seveneighths.glif | 2 +- .../glyphs/shade.glif | 2 +- .../glyphs/sigma.glif | 2 +- .../glyphs/sigma1.glif | 2 +- .../glyphs/slash.glif | 2 +- .../glyphs/smileface.glif | 2 +- .../glyphs/spade.glif | 2 +- .../glyphs/sterling.glif | 2 +- .../glyphs/summation.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/sun.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/t.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/tau.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/tbar.glif | 2 +- .../glyphs/tcaron.glif | 2 +- .../glyphs/tcommaaccent.glif | 2 +- .../glyphs/theta.glif | 2 +- .../glyphs/thorn.glif | 2 +- .../glyphs/threeeighths.glif | 2 +- .../glyphs/threequarters.glif | 2 +- .../glyphs/tilde.glif | 2 +- .../glyphs/tonos.glif | 2 +- .../glyphs/trademark.glif | 2 +- .../glyphs/triagdn.glif | 2 +- .../glyphs/triaglf.glif | 2 +- .../glyphs/triagrt.glif | 2 +- .../glyphs/triagup.glif | 2 +- .../glyphs/uacute.glif | 2 +- .../glyphs/ubreve.glif | 2 +- .../glyphs/ucircumflex.glif | 2 +- .../glyphs/udieresis.glif | 2 +- .../glyphs/ugrave.glif | 2 +- .../glyphs/uhungarumlaut.glif | 2 +- .../glyphs/umacron.glif | 2 +- .../glyphs/underscoredbl.glif | 2 +- .../glyphs/uni00B_2.glif | 2 +- .../glyphs/uni00B_3.glif | 2 +- .../glyphs/uni00B_9.glif | 2 +- .../glyphs/uni02C_9.glif | 2 +- .../glyphs/uni0394.glif | 2 +- .../glyphs/uni03A_9.glif | 2 +- .../glyphs/uni03B_C_.glif | 2 +- .../glyphs/uni203E_.glif | 2 +- .../glyphs/uni207F_.glif | 2 +- .../glyphs/uniF_001.glif | 2 +- .../glyphs/uniF_002.glif | 2 +- .../glyphs/uniF_004.glif | 2 +- .../glyphs/uniF_005.glif | 2 +- .../glyphs/uogonek.glif | 2 +- .../glyphs/upblock.glif | 2 +- .../glyphs/upsilon.glif | 2 +- .../glyphs/upsilondieresis.glif | 2 +- .../glyphs/upsilondieresistonos.glif | 2 +- .../glyphs/upsilontonos.glif | 2 +- .../glyphs/uring.glif | 2 +- .../glyphs/utilde.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/v.glif | 2 +- .../glyphs/wacute.glif | 2 +- .../glyphs/wcircumflex.glif | 2 +- .../glyphs/wdieresis.glif | 2 +- .../glyphs/wgrave.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/xi.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/y.glif | 2 +- .../glyphs/yacute.glif | 2 +- .../glyphs/ycircumflex.glif | 2 +- .../glyphs/ydieresis.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/yen.glif | 2 +- .../glyphs/ygrave.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/z.glif | 2 +- .../glyphs/zacute.glif | 2 +- .../glyphs/zcaron.glif | 2 +- .../glyphs/zdotaccent.glif | 2 +- .../OmeBhatkhandePunjabi.ufo/glyphs/zeta.glif | 2 +- ttf/OmeBhatkhandeEnglish.ttf | Bin 31004 -> 31068 bytes ttf/OmeBhatkhandeHindi.ttf | Bin 34100 -> 33052 bytes ttf/OmeBhatkhandePunjabi.ttf | Bin 32928 -> 31924 bytes ttf/OmeSwarlipi.ttf | Bin 30144 -> 30144 bytes 1197 files changed, 1213 insertions(+), 1225 deletions(-) diff --git a/bhatkhande/english/OmeBhatkhandeEnglish.ufo/fontinfo.plist b/bhatkhande/english/OmeBhatkhandeEnglish.ufo/fontinfo.plist index 1a15e7f..2d8ff1a 100644 --- a/bhatkhande/english/OmeBhatkhandeEnglish.ufo/fontinfo.plist +++ b/bhatkhande/english/OmeBhatkhandeEnglish.ufo/fontinfo.plist @@ -8,12 +8,8 @@ Regular styleMapFamilyName Ome Bhatkhande English - versionMajor - 1 - versionMinor - 1 copyright - Omenad 2006-2017 + Omenad 2006-2024 unitsPerEm 2048 ascender @@ -35,9 +31,9 @@ openTypeNameDesigner Terence Tuhinanshu openTypeNameDesignerURL - http://www.tuhinanshu.com + https://tuhinanshu.com openTypeNameLicense - Copyright (c) 2017, Omenad (http://omenad.net), + Copyright (c) 2024, Omenad (http://omenad.net), with Reserved Font Name Ome Bhatkhande. This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -58,7 +54,7 @@ with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, +fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The @@ -134,13 +130,13 @@ OTHER DEALINGS IN THE FONT SOFTWARE. openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeNameVersion - Version 1.01 Oct 5, 2022 + Version 2.0 Sep 2, 2024 openTypeNameUniqueID - OmeBhatkhandeEng:1.00 + OmeBhatkhandeEng:2.0 openTypeNameDescription For writing Indian Classical Music in Bhatkhande script using Roman characters openTypeNameSampleText - ~#qswRwG%wMepDlNu ;'[] + su sU ml mL `@DLr@gm qsUwWrUEMU [];'’\ 1234567890 openTypeOS2Panose 2 diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/fontinfo.plist b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/fontinfo.plist index 9b85734..3917198 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/fontinfo.plist +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/fontinfo.plist @@ -8,12 +8,8 @@ Regular styleMapFamilyName Ome Bhatkhande Hindi - versionMajor - 1 - versionMinor - 1 copyright - Omenad 2006-2017 + Omenad 2006-2024 unitsPerEm 2048 ascender @@ -35,9 +31,9 @@ openTypeNameDesigner Terence Tuhinanshu openTypeNameDesignerURL - http://www.tuhinanshu.com + https://tuhinanshu.com openTypeNameLicense - Copyright (c) 2017, Omenad (http://omenad.net), + Copyright (c) 2024, Omenad (http://omenad.net), with Reserved Font Name Ome Bhatkhande. This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -58,7 +54,7 @@ with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, +fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The @@ -134,13 +130,13 @@ OTHER DEALINGS IN THE FONT SOFTWARE. openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeNameVersion - Version 1.00 Aug 12, 2017 + Version 2.0 Sep 2, 2024 openTypeNameUniqueID - OmeBhatkhandeHin:1.00 + OmeBhatkhandeHin:2.0 openTypeNameDescription For writing Indian Classical Music in Bhatkhande script using Devanagari characters openTypeNameSampleText - ~#qswRwG%wMepDlNu ;'[] + su sU ml mL `@DLr@gm qsUwWrUEMU [];'’\ 1234567890 openTypeOS2Panose 2 diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_.glif index 9764a25..81c3262 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_E_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_E_.glif index e0b18e4..5b176cd 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_E_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_E_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_E_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_E_acute.glif index 2b8546d..f8ce481 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_E_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_E_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_acute.glif index 205b8c2..58d2ae2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_breve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_breve.glif index c256864..93fe948 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_breve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_circumflex.glif index 5a41181..05a104f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_dieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_dieresis.glif index f7ed299..6b978e9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_dieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_grave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_grave.glif index 76f5eb8..f72be8b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_grave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_lpha.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_lpha.glif index 9c86daf..48ed9f8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_lpha.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_lpha.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_lphatonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_lphatonos.glif index 8b7490a..470e99b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_lphatonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_lphatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_macron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_macron.glif index 1f6e51a..d7c235f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_macron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ogonek.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ogonek.glif index af3c9ee..8c706f9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ogonek.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ring.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ring.glif index a719921..60f6404 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ring.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ringacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ringacute.glif index bd902de..a68e567 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ringacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_ringacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_tilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_tilde.glif index 4486fd4..926c3c2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_tilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/A_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/B_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/B_.glif index 5935d63..15ba24a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/B_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/B_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/B_eta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/B_eta.glif index b4323c8..5256c10 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/B_eta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/B_eta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_.glif index ea9b7a6..9933570 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_acute.glif index 170eefb..25f0c36 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_caron.glif index 0b73e03..b8173ec 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_cedilla.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_cedilla.glif index 069f76a..a0b9cea 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_cedilla.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_cedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_circumflex.glif index 70f159d..ca81cb3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_dotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_dotaccent.glif index e5e95cd..aa3ccec 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_dotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_hi.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_hi.glif index b0a0bc4..ee55df7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_hi.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/C_hi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_caron.glif index 55f7c47..6573796 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_croat.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_croat.glif index f4f5561..1cc96ce 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_croat.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_croat.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_elta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_elta.glif index 22cacab..e981c86 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_elta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/D_elta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_acute.glif index 0247a2e..71ed6ee 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_breve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_breve.glif index 41b6a74..74c11ae 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_breve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_caron.glif index 5102082..e135166 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_circumflex.glif index 297da15..deb4084 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_dieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_dieresis.glif index 703d353..a5c9b37 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_dieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_dotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_dotaccent.glif index 3d97e56..ef4b22f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_dotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_grave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_grave.glif index 28f72ea..b977e24 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_grave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_macron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_macron.glif index 53fca1b..6e173aa 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_macron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ng.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ng.glif index b0e366d..6e9c90a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ng.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ng.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ogonek.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ogonek.glif index babcedd..a6a835b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ogonek.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_psilon.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_psilon.glif index b8e8e65..1991d36 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_psilon.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_psilon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_psilontonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_psilontonos.glif index 9373e54..6a1df7b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_psilontonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_psilontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ta.glif index 130b4a4..f32cfbf 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_ta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_tatonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_tatonos.glif index 56b4dc5..6519c41 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_tatonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_tatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_th.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_th.glif index 4e11c49..10f1d4b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_th.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_th.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_uro.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_uro.glif index edc0c14..602b175 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_uro.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/E_uro.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/F_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/F_.glif index 637585f..d026425 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/F_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/F_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_amma.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_amma.glif index e88a5fb..05d0f3c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_amma.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_amma.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_breve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_breve.glif index df5147e..4cf80c9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_breve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_circumflex.glif index 62bf6f8..c5fc50b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_commaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_commaaccent.glif index 3beaee1..2bd2f43 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_commaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_dotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_dotaccent.glif index ae35a37..2bf5277 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_dotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/G_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_.glif index ac59269..1fea7f9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18533.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18533.glif index 2cb711f..2714268 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18533.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18533.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18543.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18543.glif index 0aabc70..961e81f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18543.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18543.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18551.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18551.glif index efd66ab..9b0ffc4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18551.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_18551.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_22073.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_22073.glif index 1c4d438..97772f1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_22073.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_22073.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_bar.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_bar.glif index f3fb653..c527095 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_bar.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_bar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_circumflex.glif index 9c8c87b..c66dd13 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/H_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_.glif index 0560222..843dfc0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_J_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_J_.glif index eef271f..df3130a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_J_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_J_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_acute.glif index 5473833..e15b54a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_breve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_breve.glif index eb06b77..a4e8ba4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_breve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_circumflex.glif index 2635810..e4de48a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_dieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_dieresis.glif index 028bbee..e54c333 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_dieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_dotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_dotaccent.glif index b1742f1..0c02d47 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_dotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_grave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_grave.glif index f678ee0..336cd98 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_grave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_macron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_macron.glif index 2a0ac37..1c020db 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_macron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_ogonek.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_ogonek.glif index d59cc74..45064bf 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_ogonek.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_ota.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_ota.glif index 1407030..6c52ef6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_ota.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_ota.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_otadieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_otadieresis.glif index e106731..d2f75d9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_otadieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_otadieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_otatonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_otatonos.glif index 5a115c1..623e3f5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_otatonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_otatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_tilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_tilde.glif index bb06d62..14d53ed 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_tilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/I_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/J_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/J_.glif index ef76fb1..a98ab88 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/J_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/J_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/J_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/J_circumflex.glif index 9a5b199..99d8880 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/J_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/J_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_.glif index 1a27a47..800d502 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_appa.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_appa.glif index 24d1859..a836e18 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_appa.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_appa.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_commaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_commaaccent.glif index f1f1074..39d07d7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_commaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/K_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_acute.glif index 5705d3c..ba2c19a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_ambda.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_ambda.glif index 665bca2..3d5fbe0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_ambda.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_ambda.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_caron.glif index a0bc6a7..fc6586b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_commaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_commaaccent.glif index ff61ae3..23c9ba5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_commaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_dot.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_dot.glif index 1375ad6..411c5ec 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_dot.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_dot.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_slash.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_slash.glif index d4a7d02..28bd47e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_slash.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/L_slash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/M_u.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/M_u.glif index 6c8f50b..98b5316 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/M_u.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/M_u.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_acute.glif index fb1cae0..c03a301 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_caron.glif index 190344f..d0e9663 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_commaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_commaaccent.glif index 933127a..13e4551 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_commaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_tilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_tilde.glif index 3a35196..6ce4962 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_tilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_u.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_u.glif index be1507b..54c01ee 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_u.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/N_u.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_.glif index 7c98754..a6c2e70 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_E_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_E_.glif index 1929b2b..04dd801 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_E_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_E_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_acute.glif index be842ad..ebad2d0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_breve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_breve.glif index 04a4548..dc24e8d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_breve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_circumflex.glif index 4ee4ee3..f25b8c7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_dieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_dieresis.glif index 55cc2e9..812f884 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_dieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_grave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_grave.glif index 487b8c8..d2125ed 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_grave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_hungarumlaut.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_hungarumlaut.glif index 06f3d84..415dbc4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_hungarumlaut.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_hungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_macron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_macron.glif index 2c67a2b..c33dc29 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_macron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_mega.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_mega.glif index 9579097..87da26d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_mega.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_mega.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_megatonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_megatonos.glif index bbb379c..8b41a92 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_megatonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_megatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_micron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_micron.glif index af69ed0..74f2c19 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_micron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_micron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_microntonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_microntonos.glif index d6e52b0..bac6424 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_microntonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_microntonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_slash.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_slash.glif index afd2a3c..0192a67 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_slash.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_slash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_slashacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_slashacute.glif index b01c3e7..4b6b8bc 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_slashacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_slashacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_tilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_tilde.glif index 10cb9c3..239976f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_tilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/O_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_.glif index 36c9166..d38bfc4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_hi.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_hi.glif index 5c1a405..e067a0c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_hi.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_hi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_i.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_i.glif index 1f68c44..e4103ab 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_i.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_i.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_si.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_si.glif index 3da2c19..4c6bc46 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_si.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/P_si.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_acute.glif index e7dcbfb..e547821 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_caron.glif index a519e6b..b0d62df 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_commaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_commaaccent.glif index 501c618..9a0e3ef 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_commaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_ho.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_ho.glif index 94e62a4..8014df4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_ho.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/R_ho.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_.glif index f72b9ed..033f19b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_010000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_010000.glif index 6ee1965..abd30f1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_010000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_010000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_020000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_020000.glif index b846cdd..440c486 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_020000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_020000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_030000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_030000.glif index ca44ddd..bac4f97 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_030000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_030000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_040000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_040000.glif index 41cf687..3a53bb3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_040000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_040000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_050000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_050000.glif index 1463c18..08c8388 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_050000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_050000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_060000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_060000.glif index 2dc38f0..6d5ef65 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_060000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_060000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_070000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_070000.glif index 17fa0bc..d7fb5b1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_070000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_070000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_080000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_080000.glif index ce5661b..99e05f1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_080000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_080000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_090000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_090000.glif index cb88e22..9707367 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_090000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_090000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_100000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_100000.glif index c5667dd..87945de 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_100000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_100000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_110000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_110000.glif index 81685f8..99b6ed2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_110000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_110000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_190000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_190000.glif index c744dac..41fe834 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_190000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_190000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_200000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_200000.glif index a80c1aa..133aa3b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_200000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_200000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_210000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_210000.glif index 7f49d33..b1d45f3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_210000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_210000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_220000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_220000.glif index 381d3f3..66fd8fa 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_220000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_220000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_230000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_230000.glif index 0a39bf8..62f7b11 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_230000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_230000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_240000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_240000.glif index 3045807..a61ce23 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_240000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_240000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_250000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_250000.glif index 0723717..69d70fb 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_250000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_250000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_260000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_260000.glif index fe5d459..8f0c58b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_260000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_260000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_270000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_270000.glif index 592863f..7ac5df1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_270000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_270000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_280000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_280000.glif index 9ecd9f8..ebb4882 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_280000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_280000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_360000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_360000.glif index 512b29e..b373574 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_360000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_360000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_370000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_370000.glif index ce00222..0af0590 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_370000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_370000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_380000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_380000.glif index 16c1fd6..86c6b76 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_380000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_380000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_390000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_390000.glif index 85f6b61..5336296 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_390000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_390000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_400000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_400000.glif index cd8fb31..e08fdb4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_400000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_400000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_410000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_410000.glif index ac01df2..7751353 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_410000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_410000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_420000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_420000.glif index 7cd3b5f..cf51470 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_420000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_420000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_430000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_430000.glif index 54075d1..7a6ef12 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_430000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_430000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_440000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_440000.glif index 41bbc5e..4bd9ef3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_440000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_440000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_450000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_450000.glif index 91b0d10..ace3138 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_450000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_450000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_460000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_460000.glif index 38a0f01..1b1cb5b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_460000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_460000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_470000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_470000.glif index 20cda74..6536737 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_470000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_470000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_480000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_480000.glif index 2a8f187..bddcf8e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_480000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_480000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_490000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_490000.glif index 0f876fc..4a2c01a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_490000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_490000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_500000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_500000.glif index c1a6b41..dea6667 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_500000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_500000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_510000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_510000.glif index 0638773..06329c9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_510000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_510000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_520000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_520000.glif index d027101..2c17192 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_520000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_520000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_530000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_530000.glif index 45691dd..0ead913 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_530000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_530000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_540000.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_540000.glif index 92bdc5e..5644f38 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_540000.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_F_540000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_acute.glif index 2869857..bf8fd71 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_caron.glif index ec803ce..36e7c3a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_cedilla.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_cedilla.glif index 443fd0a..cebba37 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_cedilla.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_cedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_circumflex.glif index c78cda5..1ca6fcb 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_igma.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_igma.glif index a846555..c4796dc 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_igma.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/S_igma.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_.glif index 4fa0937..86202c6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_au.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_au.glif index 353ac5e..2c52578 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_au.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_au.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_bar.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_bar.glif index 7429565..fe5dddd 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_bar.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_bar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_caron.glif index c812d38..7731154 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_commaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_commaaccent.glif index cb7ff1a..07e20e1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_commaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_heta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_heta.glif index d4e182a..ef1d91a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_heta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_heta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_horn.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_horn.glif index 87cc97e..1e320d5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_horn.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/T_horn.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_acute.glif index 2bf0142..f7c0f22 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_breve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_breve.glif index caa265c..bd4e372 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_breve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_circumflex.glif index 8335474..f79964c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_dieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_dieresis.glif index faff2cc..c0470bd 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_dieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_grave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_grave.glif index 8d033c6..9f6af6b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_grave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_hungarumlaut.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_hungarumlaut.glif index 75ea74d..0d21a81 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_hungarumlaut.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_hungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_macron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_macron.glif index c3b598e..0f8df10 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_macron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_ogonek.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_ogonek.glif index e2a4c4c..32ad63e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_ogonek.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilon.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilon.glif index 080467b..9c56642 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilon.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilondieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilondieresis.glif index b8495fd..e6f2b65 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilondieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilondieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilontonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilontonos.glif index 971bb8c..a212a11 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilontonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_psilontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_ring.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_ring.glif index 09bdbae..d986f7f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_ring.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_ring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_tilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_tilde.glif index 0623508..2d40a58 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_tilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/U_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/V_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/V_.glif index a8a59ee..a55214e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/V_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/V_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_acute.glif index 802956c..c1e1a19 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_circumflex.glif index 68afcc7..0f5a4d8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_dieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_dieresis.glif index a824308..c39b496 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_dieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_grave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_grave.glif index 9934a99..97a916a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_grave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/W_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/X_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/X_.glif index 78baa57..e7085a8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/X_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/X_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/X_i.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/X_i.glif index 6174579..b656b6d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/X_i.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/X_i.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_.glif index a6da3c5..f1612e1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_acute.glif index 4d99d85..00a75cc 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_circumflex.glif index a0966b9..401f8b0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_dieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_dieresis.glif index 49f92e7..98e6974 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_dieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_grave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_grave.glif index 4bb8e5d..1ed08af 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_grave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Y_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_.glif index 0446bb3..dec972d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_acute.glif index 0197650..3baef6b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_caron.glif index 32b3138..4b42c4c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_dotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_dotaccent.glif index 4960888..8967b6c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_dotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_eta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_eta.glif index 598da14..dabc52e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_eta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/Z_eta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/a.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/a.glif index 900c366..7a8f3cf 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/a.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/a.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aacute.glif index c0d5fab..a71c21f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/abreve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/abreve.glif index e7296bc..2a98ab3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/abreve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/abreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/acircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/acircumflex.glif index e43ff30..6fbcdf0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/acircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/acircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/acute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/acute.glif index f323e01..df70745 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/acute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/adieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/adieresis.glif index 5d06e0f..8d9f483 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/adieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/adieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ae.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ae.glif index 0ff5533..e771b7b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ae.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ae.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aeacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aeacute.glif index 5614212..fabd15f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aeacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aeacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii00208.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii00208.glif index 4d83cf4..79f3ea8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii00208.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii00208.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10017.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10017.glif index 9d05746..d956581 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10017.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10017.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10018.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10018.glif index 3c31d88..57a2227 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10018.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10018.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10019.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10019.glif index cd4012b..92f9642 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10019.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10019.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10020.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10020.glif index ea14544..3236c0f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10020.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10020.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10021.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10021.glif index 2ce74b5..59d80e3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10021.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10021.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10022.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10022.glif index 5e15359..b434b6a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10022.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10022.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10023.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10023.glif index 4ca4b59..04932d0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10023.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10023.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10024.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10024.glif index 528d9c6..dee706b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10024.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10024.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10025.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10025.glif index 63b9835..0c1d6e0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10025.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10025.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10026.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10026.glif index 929954a..0c328aa 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10026.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10026.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10027.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10027.glif index 4314a74..d00a0d7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10027.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10027.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10028.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10028.glif index 92a87ac..d12391c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10028.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10028.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10029.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10029.glif index 515fe94..e24b661 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10029.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10029.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10030.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10030.glif index 46b6016..b6c0d4d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10030.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10030.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10031.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10031.glif index 250776a..a7ba732 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10031.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10031.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10032.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10032.glif index 4bf137e..712f183 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10032.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10032.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10033.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10033.glif index bb5a160..4d525a2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10033.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10033.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10034.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10034.glif index 85b72cc..b5a5fd4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10034.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10034.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10035.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10035.glif index 86a534c..e3fc250 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10035.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10035.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10036.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10036.glif index 21b51c9..3a51c6a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10036.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10036.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10037.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10037.glif index 57aecee..1eedd5e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10037.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10037.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10038.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10038.glif index 37eefe5..b0c1699 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10038.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10038.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10039.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10039.glif index 3a12077..121e6f6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10039.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10039.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10040.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10040.glif index 6f71c21..0b782e8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10040.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10040.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10041.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10041.glif index 405f6b1..b90bf3e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10041.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10041.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10042.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10042.glif index 112246f..bf0463d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10042.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10042.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10043.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10043.glif index 66fa508..fe8127a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10043.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10043.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10044.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10044.glif index b659ca0..a0c5143 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10044.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10044.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10045.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10045.glif index 2679536..1ea1115 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10045.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10045.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10046.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10046.glif index bf49c89..1888659 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10046.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10046.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10047.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10047.glif index bf639fd..faec2b3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10047.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10047.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10048.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10048.glif index a9d3ba6..817a70e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10048.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10048.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10049.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10049.glif index 28eda67..b79a925 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10049.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10049.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10050.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10050.glif index d63e421..999388d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10050.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10050.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10051.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10051.glif index f11c050..c0378b7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10051.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10051.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10052.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10052.glif index 12469a7..5738af5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10052.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10052.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10053.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10053.glif index 7164720..923103f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10053.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10053.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10054.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10054.glif index 15dfb3f..8602148 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10054.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10054.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10055.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10055.glif index 6c284cb..c28345c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10055.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10055.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10056.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10056.glif index da4827f..eeaddd0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10056.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10056.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10057.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10057.glif index cea1599..7f26787 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10057.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10057.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10058.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10058.glif index 376b3ba..13802e1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10058.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10058.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10059.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10059.glif index 2e02b9f..24f323c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10059.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10059.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10060.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10060.glif index c531aa1..1bcf7fc 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10060.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10060.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10061.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10061.glif index ec0e91e..1928d18 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10061.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10061.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10062.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10062.glif index 07169d6..e7a676a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10062.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10062.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10065.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10065.glif index 0261475..dce472b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10065.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10065.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10066.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10066.glif index ab0d439..5abdd85 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10066.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10066.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10067.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10067.glif index 8303392..d386dd8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10067.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10067.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10068.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10068.glif index 0949c48..250dcd1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10068.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10068.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10069.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10069.glif index 2fd2664..05655b9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10069.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10069.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10070.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10070.glif index d818a07..2ccac7a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10070.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10070.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10071.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10071.glif index d39ee7b..9f261fe 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10071.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10071.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10072.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10072.glif index 31e9cfa..0eda74a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10072.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10072.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10073.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10073.glif index e0f8e20..583e053 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10073.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10073.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10074.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10074.glif index 23dcf5b..4809e57 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10074.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10074.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10075.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10075.glif index 7bb6589..c9eedef 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10075.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10075.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10076.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10076.glif index c0ae6e7..23880d4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10076.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10076.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10077.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10077.glif index 1251cc3..72068ca 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10077.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10077.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10078.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10078.glif index 99a29fc..0bb569b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10078.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10078.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10079.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10079.glif index d616ba8..8e54650 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10079.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10079.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10080.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10080.glif index c030633..58e6f8e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10080.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10080.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10081.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10081.glif index c5dfad3..9763ba2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10081.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10081.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10082.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10082.glif index 401c562..f305dd9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10082.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10082.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10083.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10083.glif index b9d3895..4840057 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10083.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10083.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10084.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10084.glif index a1729f4..d16e0e7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10084.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10084.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10085.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10085.glif index 3372550..79edbf6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10085.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10085.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10086.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10086.glif index be89e11..a7e7b96 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10086.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10086.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10087.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10087.glif index c117757..c571726 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10087.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10087.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10088.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10088.glif index ebdc2fe..3b627a9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10088.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10088.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10089.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10089.glif index dfd29c8..d788aa5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10089.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10089.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10090.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10090.glif index 5756a15..3ad850a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10090.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10090.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10091.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10091.glif index d710e23..41ae4c1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10091.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10091.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10092.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10092.glif index 8d52bc2..b53f041 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10092.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10092.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10093.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10093.glif index 195edd8..3511759 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10093.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10093.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10094.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10094.glif index d26ed7f..31c62b5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10094.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10094.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10095.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10095.glif index f25be40..08f199c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10095.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10095.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10096.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10096.glif index 4c36a05..81f3ea1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10096.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10096.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10097.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10097.glif index ea2f584..5a3f0f4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10097.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10097.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10098.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10098.glif index fff5ad8..7c57ab7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10098.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10098.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10099.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10099.glif index 5acee1a..ef0928f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10099.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10099.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10100.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10100.glif index 80fe9bf..c5ad3f5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10100.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10100.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10101.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10101.glif index 0236ca6..4927ab2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10101.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10101.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10102.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10102.glif index cd08237..21f8cc1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10102.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10102.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10103.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10103.glif index 3d79886..783a530 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10103.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10103.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10104.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10104.glif index a33fb8d..001c887 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10104.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10104.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10105.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10105.glif index 9c8d425..3c8278c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10105.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10105.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10106.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10106.glif index f56b3d9..6807822 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10106.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10106.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10107.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10107.glif index c924877..d1d5209 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10107.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10107.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10108.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10108.glif index 05e25cc..aed1693 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10108.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10108.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10109.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10109.glif index 7f1c49b..027a95e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10109.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10109.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10110.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10110.glif index 45cc3bb..f34b861 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10110.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10110.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10145.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10145.glif index bb97e99..ce3292e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10145.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10145.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10193.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10193.glif index 0d52b84..579e234 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10193.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii10193.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61248.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61248.glif index beb2475..d817070 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61248.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61248.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61289.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61289.glif index f486384..d9570b4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61289.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61289.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61352.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61352.glif index 017d494..e4189a1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61352.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/afii61352.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/agrave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/agrave.glif index f19326d..fdee263 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/agrave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/agrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/alpha.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/alpha.glif index 74ea89a..9858fca 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/alpha.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/alpha.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/alphatonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/alphatonos.glif index 3713c08..753d021 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/alphatonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/alphatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/amacron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/amacron.glif index 9be4445..abe5198 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/amacron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/amacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/anoteleia.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/anoteleia.glif index ee607d7..1f1bf63 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/anoteleia.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/anoteleia.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aogonek.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aogonek.glif index 05f7447..bd49527 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aogonek.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/approxequal.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/approxequal.glif index 269c3fb..3a6a823 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/approxequal.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/approxequal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aring.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aring.glif index e163316..e8cc9cf 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aring.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aringacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aringacute.glif index a75ed42..55a29ba 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aringacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/aringacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowboth.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowboth.glif index e161a8e..d7b5dc6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowboth.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowboth.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowdown.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowdown.glif index 1dcff84..250e36e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowdown.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowdown.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowleft.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowleft.glif index 7a286eb..b2d0f02 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowleft.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowright.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowright.glif index 2923a7c..e616255 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowright.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowup.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowup.glif index 11a9514..deb2222 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowup.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowup.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowupdn.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowupdn.glif index 23561ce..74aff22 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowupdn.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowupdn.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowupdnbse.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowupdnbse.glif index 6f84732..2dcebee 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowupdnbse.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/arrowupdnbse.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/atilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/atilde.glif index 6ca43c0..d642f16 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/atilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/atilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/b.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/b.glif index 19c74b9..b85961e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/b.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/b.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/beta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/beta.glif index 81fb778..1d2d1f4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/beta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/beta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/block.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/block.glif index 68186e3..b74bf38 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/block.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/block.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/braceleft.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/braceleft.glif index eeb7e03..b5a7100 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/braceleft.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/braceleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/braceright.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/braceright.glif index b3a3f17..0f928d3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/braceright.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/braceright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/breve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/breve.glif index ca88522..adeae60 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/breve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/brokenbar.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/brokenbar.glif index 2d6d586..920bc59 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/brokenbar.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/brokenbar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/bullet.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/bullet.glif index bf23790..189db7e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/bullet.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/bullet.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/c.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/c.glif index 4761137..1737f35 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/c.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/c.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cacute.glif index 3269102..77451d1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/caron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/caron.glif index d0ec7ee..01c5c38 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/caron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccaron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccaron.glif index 657382c..500eed3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccaron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccedilla.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccedilla.glif index 38c2dcb..49a5168 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccedilla.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccircumflex.glif index 49c176a..47921a5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ccircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cdotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cdotaccent.glif index 0344c9c..40b8692 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cdotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cdotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cedilla.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cedilla.glif index a4b9f89..ae25fd4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cedilla.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cent.glif index 96a6d3d..9e9cbb2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/cent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/chi.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/chi.glif index c5ee13a..d6860d2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/chi.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/chi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/circle.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/circle.glif index bebcc71..4c57088 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/circle.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/circle.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/circumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/circumflex.glif index 061bf21..2a2ad0b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/circumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/club.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/club.glif index e70fa1f..8519e7d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/club.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/club.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/colon.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/colon.glif index 88306df..28bf3a9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/colon.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/colon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/comma.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/comma.glif index 6725fa4..4ae2939 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/comma.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/comma.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/copyright.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/copyright.glif index 834bf48..f56d32d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/copyright.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/copyright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/currency.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/currency.glif index 7cd8a0f..ef1a827 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/currency.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/currency.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dagger.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dagger.glif index f4eb1f7..89a387c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dagger.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dagger.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/daggerdbl.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/daggerdbl.glif index 187865e..52377bd 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/daggerdbl.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/daggerdbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dcaron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dcaron.glif index bcc3881..66dd53b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dcaron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dcroat.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dcroat.glif index 2b0c894..4e4c966 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dcroat.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dcroat.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/degree.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/degree.glif index a986825..fa9d50d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/degree.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/degree.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/delta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/delta.glif index 37d699c..fd87b9c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/delta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/delta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/diamond.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/diamond.glif index 27553f7..8d2a792 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/diamond.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/diamond.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dieresis.glif index 46551b0..0acd592 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dieresistonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dieresistonos.glif index 400112a..fd901b7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dieresistonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dieresistonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/divide.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/divide.glif index 3589c00..c95fc31 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/divide.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/divide.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dkshade.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dkshade.glif index 7c5bc11..904470d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dkshade.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dkshade.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dnblock.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dnblock.glif index 585359a..da5ac8a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dnblock.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dnblock.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dotaccent.glif index 98fe8db..f6296b7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dotlessi.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dotlessi.glif index d9de745..db2c88c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dotlessi.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/dotlessi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eacute.glif index ac5835e..23581da 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ebreve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ebreve.glif index 05a07e4..d2d1f55 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ebreve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ebreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ecaron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ecaron.glif index a11d9eb..712c247 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ecaron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ecaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ecircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ecircumflex.glif index 5006426..2f4840f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ecircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ecircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/edieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/edieresis.glif index 4c15422..f047871 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/edieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/edieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/edotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/edotaccent.glif index 47084f2..800b2d2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/edotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/edotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/egrave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/egrave.glif index 258138e..72f8020 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/egrave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/egrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ellipsis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ellipsis.glif index 08e589f..38c7836 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ellipsis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ellipsis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/emacron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/emacron.glif index fdf2465..e7ea867 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/emacron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/emacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/emdash.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/emdash.glif index 1c55922..8c7db31 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/emdash.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/emdash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/endash.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/endash.glif index 9af2907..2170370 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/endash.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/endash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eng.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eng.glif index 454bb6c..da598c3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eng.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eng.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eogonek.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eogonek.glif index 2e355eb..951b5e5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eogonek.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/epsilon.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/epsilon.glif index f0519ff..22dc283 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/epsilon.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/epsilon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/epsilontonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/epsilontonos.glif index 098314b..f5bbd54 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/epsilontonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/epsilontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/equal.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/equal.glif index 69aca8f..0df13c9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/equal.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/equal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/equivalence.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/equivalence.glif index e4baf1d..e8917b8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/equivalence.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/equivalence.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/estimated.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/estimated.glif index 201c732..2b00f0c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/estimated.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/estimated.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eta.glif index fe7d6b7..6ab983b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/etatonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/etatonos.glif index 250264c..6be2220 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/etatonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/etatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eth.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eth.glif index fd18d82..9af9d62 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eth.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/eth.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/exclamdbl.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/exclamdbl.glif index 0c4d36f..1622dbd 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/exclamdbl.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/exclamdbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/exclamdown.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/exclamdown.glif index 594f01f..07933d7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/exclamdown.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/exclamdown.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/f.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/f.glif index 23ff3ff..71d6446 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/f.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/f.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/female.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/female.glif index 48680de..b646cc9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/female.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/female.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/filledbox.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/filledbox.glif index 61a694f..ba3822d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/filledbox.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/filledbox.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/filledrect.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/filledrect.glif index b8c1423..dc5ea42 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/filledrect.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/filledrect.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/fiveeighths.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/fiveeighths.glif index f142674..4ee464b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/fiveeighths.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/fiveeighths.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/florin.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/florin.glif index 7490602..387b989 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/florin.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/florin.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/fraction.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/fraction.glif index 50b012a..ddb5b59 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/fraction.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/fraction.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/franc.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/franc.glif index 29c05dd..3893c55 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/franc.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/franc.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gamma.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gamma.glif index ddddbd8..c778c55 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gamma.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gamma.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gbreve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gbreve.glif index 37de7e6..9a7c490 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gbreve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gbreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gcircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gcircumflex.glif index f7e2913..e3a1def 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gcircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gcircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gcommaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gcommaaccent.glif index 1226a22..f48cc36 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gcommaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gdotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gdotaccent.glif index 162909e..5863577 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gdotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/gdotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/germandbls.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/germandbls.glif index c300b36..b32916b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/germandbls.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/germandbls.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/glyph155.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/glyph155.glif index 6ca5441..ff95010 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/glyph155.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/glyph155.glif @@ -1,4 +1,4 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/greater.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/greater.glif index 5e8f885..2fb279b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/greater.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/greater.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/greaterequal.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/greaterequal.glif index 763aba7..176d2f2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/greaterequal.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/greaterequal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guillemotleft.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guillemotleft.glif index 7e15305..f0038c2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guillemotleft.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guillemotleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guillemotright.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guillemotright.glif index 79b2ad8..47bb461 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guillemotright.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guillemotright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guilsinglleft.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guilsinglleft.glif index 57a3cf2..817be05 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guilsinglleft.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guilsinglleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guilsinglright.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guilsinglright.glif index f786a6f..dbdbb07 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guilsinglright.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/guilsinglright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/h.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/h.glif index f679337..7d2d63d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/h.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/h.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hbar.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hbar.glif index e5e712e..3f53474 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hbar.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hbar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hcircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hcircumflex.glif index c5b120b..73d983b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hcircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hcircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/heart.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/heart.glif index 1e39bb1..82b57d5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/heart.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/heart.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/house.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/house.glif index 83320ce..86eb796 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/house.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/house.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hungarumlaut.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hungarumlaut.glif index a53aa0b..99a29af 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hungarumlaut.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/hungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/i.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/i.glif index 4a50102..2b8bf78 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/i.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/i.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iacute.glif index 2e14776..5aa13d7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ibreve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ibreve.glif index b438b51..e050b8d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ibreve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ibreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/icircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/icircumflex.glif index e203020..cd29323 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/icircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/icircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/idieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/idieresis.glif index 054c49f..a73a262 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/idieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/idieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/igrave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/igrave.glif index 98de527..034a3f1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/igrave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/igrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ij.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ij.glif index 58925e2..089f42f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ij.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ij.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/imacron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/imacron.glif index 8a8517d..88a93d6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/imacron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/imacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/infinity.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/infinity.glif index 51cc491..285a16e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/infinity.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/infinity.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integral.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integral.glif index dab51a7..c3f5c18 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integral.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integral.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integralbt.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integralbt.glif index 8cca823..c13d658 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integralbt.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integralbt.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integraltp.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integraltp.glif index 9d14a68..38aefe6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integraltp.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/integraltp.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/intersection.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/intersection.glif index 9a12d61..02653ad 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/intersection.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/intersection.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invbullet.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invbullet.glif index 93e23ab..d2c7ac4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invbullet.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invbullet.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invcircle.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invcircle.glif index 91776c5..1b47480 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invcircle.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invcircle.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invsmileface.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invsmileface.glif index 5349cda..fd4dd78 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invsmileface.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/invsmileface.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iogonek.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iogonek.glif index 18e6839..97e37d4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iogonek.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iota.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iota.glif index 13a9656..371fc21 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iota.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iota.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotadieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotadieresis.glif index 60cdbe3..bbc744d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotadieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotadieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotadieresistonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotadieresistonos.glif index e127a38..97ffaf4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotadieresistonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotadieresistonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotatonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotatonos.glif index ad07e28..de0fb75 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotatonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/iotatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/itilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/itilde.glif index d81ee5b..411b173 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/itilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/itilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/j.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/j.glif index 2951fdb..b830adc 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/j.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/j.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/jcircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/jcircumflex.glif index d288497..3b76709 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/jcircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/jcircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/k.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/k.glif index fd3fb15..3b4cc15 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/k.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/k.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kappa.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kappa.glif index fee9cc4..1769cbc 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kappa.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kappa.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kcommaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kcommaaccent.glif index 830dd42..8be5868 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kcommaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kgreenlandic.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kgreenlandic.glif index 7c8d7ee..9777033 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kgreenlandic.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/kgreenlandic.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lacute.glif index c8a18e5..5489f35 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lambda.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lambda.glif index dd8be61..c0ad28d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lambda.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lambda.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lcaron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lcaron.glif index 9a7a949..ab9160a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lcaron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lcommaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lcommaaccent.glif index 9b44338..f5f5ce1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lcommaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ldot.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ldot.glif index 3e262d8..b11e3c4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ldot.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ldot.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/less.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/less.glif index 00c3c6c..e29633a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/less.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/less.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lessequal.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lessequal.glif index 0f691a5..7c6f485 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lessequal.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lessequal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lfblock.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lfblock.glif index 14d0970..d1687d1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lfblock.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lfblock.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lira.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lira.glif index 9688081..aec9fc1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lira.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lira.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/logicalnot.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/logicalnot.glif index 8e745d8..a74a926 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/logicalnot.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/logicalnot.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/longs.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/longs.glif index 109846c..d6de461 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/longs.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/longs.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lozenge.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lozenge.glif index a70994a..860249d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lozenge.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lozenge.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lslash.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lslash.glif index 161921a..6c27704 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lslash.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/lslash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ltshade.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ltshade.glif index 063c7e8..5dce04d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ltshade.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ltshade.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/macron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/macron.glif index 5592e95..e3ce8e4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/macron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/male.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/male.glif index 33ac915..eb52440 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/male.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/male.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/minus.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/minus.glif index 83b28c4..03b2ac3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/minus.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/minus.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/minute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/minute.glif index 3651731..c0341a0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/minute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/minute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/mu.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/mu.glif index 997476f..415ff88 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/mu.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/mu.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/multiply.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/multiply.glif index 60dd273..338e42e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/multiply.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/multiply.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/musicalnote.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/musicalnote.glif index 1816d14..94a99b6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/musicalnote.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/musicalnote.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/musicalnotedbl.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/musicalnotedbl.glif index 274ff9b..7c96a74 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/musicalnotedbl.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/musicalnotedbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nacute.glif index 6890790..cf7607b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/napostrophe.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/napostrophe.glif index f02b17d..54219fa 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/napostrophe.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/napostrophe.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ncaron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ncaron.glif index d67417d..a9bb4bd 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ncaron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ncaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ncommaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ncommaaccent.glif index a8b79ac..152b625 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ncommaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ncommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nonmarkingreturn.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nonmarkingreturn.glif index 7ef7ade..42a67ca 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nonmarkingreturn.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nonmarkingreturn.glif @@ -1,4 +1,4 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/notequal.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/notequal.glif index 13e5e0b..f45e34c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/notequal.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/notequal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ntilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ntilde.glif index 7d5df18..29c638f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ntilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ntilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nu.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nu.glif index 6a93cca..d0bddf4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nu.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/nu.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/o.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/o.glif index 74fd5df..4276a50 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/o.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/o.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oacute.glif index af93280..ad8e29a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/obreve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/obreve.glif index c658d53..15bbee0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/obreve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/obreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ocircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ocircumflex.glif index 7f9ef35..2e94c3c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ocircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ocircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/odieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/odieresis.glif index d18e56a..8575cd1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/odieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/odieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oe.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oe.glif index d5bb1ff..e6fecd2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oe.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oe.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ogonek.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ogonek.glif index 5ae73fa..b2e0eb9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ogonek.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ograve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ograve.glif index 2bc021e..b374605 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ograve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ograve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ohungarumlaut.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ohungarumlaut.glif index 2982a72..8170eaa 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ohungarumlaut.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ohungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omacron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omacron.glif index b4a0345..abd9dbb 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omacron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omega.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omega.glif index 7ec8b81..069b838 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omega.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omega.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omegatonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omegatonos.glif index 33d21b3..16439f1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omegatonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omegatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omicron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omicron.glif index afde5f5..94916cd 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omicron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omicron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omicrontonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omicrontonos.glif index 7ec51bf..e0cf423 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omicrontonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/omicrontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oneeighth.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oneeighth.glif index dde5132..0a28af0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oneeighth.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oneeighth.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/onehalf.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/onehalf.glif index d87eff5..160b509 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/onehalf.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/onehalf.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/onequarter.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/onequarter.glif index 09575e3..7fbfc17 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/onequarter.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/onequarter.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/openbullet.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/openbullet.glif index ca95abb..bfa3f09 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/openbullet.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/openbullet.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ordfeminine.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ordfeminine.glif index 374d0f3..bb608ac 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ordfeminine.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ordfeminine.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ordmasculine.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ordmasculine.glif index 772bb74..61c3788 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ordmasculine.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ordmasculine.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/orthogonal.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/orthogonal.glif index 226bf41..39c108e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/orthogonal.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/orthogonal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oslash.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oslash.glif index 9c3799a..edfd5ed 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oslash.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oslash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oslashacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oslashacute.glif index 4651976..4d25163 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oslashacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/oslashacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/otilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/otilde.glif index 5fd4efc..7d3bca0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/otilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/otilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/paragraph.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/paragraph.glif index 332ba8e..bfc6837 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/paragraph.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/paragraph.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/partialdiff.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/partialdiff.glif index 06ca172..083ba35 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/partialdiff.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/partialdiff.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/period.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/period.glif index 0308e2a..c91a574 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/period.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/period.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/periodcentered.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/periodcentered.glif index d0c395b..48e13b3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/periodcentered.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/periodcentered.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/perthousand.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/perthousand.glif index 2e6ab6e..aa76d60 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/perthousand.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/perthousand.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/peseta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/peseta.glif index 8f1f691..92acacf 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/peseta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/peseta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/phi.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/phi.glif index e22f1ff..b6dc72d 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/phi.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/phi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/pi.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/pi.glif index bdefdf0..44a9c0f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/pi.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/pi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/plusminus.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/plusminus.glif index bc160b3..f94f172 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/plusminus.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/plusminus.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/product.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/product.glif index 585bb29..9170ac1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/product.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/product.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/psi.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/psi.glif index 7248f47..9b867ff 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/psi.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/psi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/question.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/question.glif index 81ddf31..e3604db 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/question.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/question.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/questiondown.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/questiondown.glif index 58e5baa..996970a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/questiondown.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/questiondown.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedbl.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedbl.glif index 2e41522..4a071d6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedbl.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblbase.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblbase.glif index 4407da7..c79eef7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblbase.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblbase.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblleft.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblleft.glif index 9d3e312..34c8fd6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblleft.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblright.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblright.glif index bb8347b..b69ec01 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblright.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotedblright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quoteleft.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quoteleft.glif index d08adea..06099a0 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quoteleft.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quoteleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotereversed.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotereversed.glif index 11629a8..814eee7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotereversed.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotereversed.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotesinglbase.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotesinglbase.glif index 2b495f1..e1b6bcf 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotesinglbase.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/quotesinglbase.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/racute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/racute.glif index 2caa68c..4fd8a8e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/racute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/racute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/radical.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/radical.glif index 85a4adf..acd7a55 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/radical.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/radical.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rcaron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rcaron.glif index b744576..2bbfa6e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rcaron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rcommaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rcommaaccent.glif index e1f9502..f807466 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rcommaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/registered.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/registered.glif index c90e7ae..a97a5f8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/registered.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/registered.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/revlogicalnot.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/revlogicalnot.glif index 354438f..ef09401 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/revlogicalnot.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/revlogicalnot.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rho.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rho.glif index 3344631..3aef60b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rho.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rho.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ring.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ring.glif index fe35e65..3896e9c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ring.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rtblock.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rtblock.glif index 83c5f60..ef72701 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rtblock.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/rtblock.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sacute.glif index 3e8e783..14a6897 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scaron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scaron.glif index e7f93ec..0b59f0a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scaron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scedilla.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scedilla.glif index 7cd8fee..1c8cdd2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scedilla.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scircumflex.glif index 8f62cc1..a77ae86 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/scircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/second.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/second.glif index a6f683c..a3cff6e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/second.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/second.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/section.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/section.glif index 0ccb647..30c5c81 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/section.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/section.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/seveneighths.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/seveneighths.glif index bf163f6..45a037b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/seveneighths.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/seveneighths.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/shade.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/shade.glif index 55c2b4d..5172f3e 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/shade.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/shade.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sigma.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sigma.glif index f0e5db6..c1f32c6 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sigma.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sigma.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sigma1.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sigma1.glif index e310f9b..6edc1ef 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sigma1.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sigma1.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/slash.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/slash.glif index 6541248..70038ea 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/slash.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/slash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/smileface.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/smileface.glif index 11b7890..04bdb74 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/smileface.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/smileface.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/spade.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/spade.glif index fda1d7d..cff30bc 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/spade.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/spade.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sterling.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sterling.glif index 767f396..142747c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sterling.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sterling.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/summation.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/summation.glif index d8bbe4a..0751cb3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/summation.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/summation.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sun.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sun.glif index c6b8780..8cc29d5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sun.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/sun.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/t.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/t.glif index 708708d..435f53b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/t.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/t.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tau.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tau.glif index 37a7772..e58f956 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tau.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tau.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tbar.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tbar.glif index b7959af..3869e53 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tbar.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tbar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tcaron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tcaron.glif index 94befd3..8c0b27c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tcaron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tcommaaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tcommaaccent.glif index da68f0c..47aef8f 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tcommaaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/theta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/theta.glif index 003235c..cb67ce1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/theta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/theta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/thorn.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/thorn.glif index 59da658..74f90eb 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/thorn.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/thorn.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/threeeighths.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/threeeighths.glif index c8cbb6a..9497142 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/threeeighths.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/threeeighths.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/threequarters.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/threequarters.glif index 6c923c3..d8315e5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/threequarters.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/threequarters.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tilde.glif index ec04583..f778dea 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tonos.glif index 1cc0dc1..8c8cd41 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/tonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/trademark.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/trademark.glif index 4004b90..0367069 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/trademark.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/trademark.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagdn.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagdn.glif index 9e5a2e2..8c9e6f3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagdn.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagdn.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triaglf.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triaglf.glif index 31a9153..038a9e5 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triaglf.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triaglf.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagrt.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagrt.glif index 90cec57..417086c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagrt.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagrt.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagup.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagup.glif index 80ef93c..b4173fd 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagup.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/triagup.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uacute.glif index 1fee822..63240b7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ubreve.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ubreve.glif index aff679a..8034501 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ubreve.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ubreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ucircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ucircumflex.glif index e5a0e5d..79bf499 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ucircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ucircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/udieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/udieresis.glif index e7fafef..57312d1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/udieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/udieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ugrave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ugrave.glif index 31866bb..55d8a65 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ugrave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ugrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uhungarumlaut.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uhungarumlaut.glif index 0c4424b..dbbe6c2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uhungarumlaut.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uhungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/umacron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/umacron.glif index dd32c01..0ef70d8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/umacron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/umacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/underscoredbl.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/underscoredbl.glif index 34eb929..9712ecf 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/underscoredbl.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/underscoredbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_2.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_2.glif index 5b76baa..75bfb20 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_2.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_2.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_3.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_3.glif index a5244c8..8b90eec 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_3.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_3.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_9.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_9.glif index 9b16075..2d0628b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_9.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni00B_9.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni02C_9.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni02C_9.glif index 4e26d83..dee3a99 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni02C_9.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni02C_9.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni0394.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni0394.glif index 00ae3a1..d605482 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni0394.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni0394.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni03A_9.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni03A_9.glif index b279a5d..67357e8 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni03A_9.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni03A_9.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni03B_C_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni03B_C_.glif index 95fe53f..b623f7c 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni03B_C_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni03B_C_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni203E_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni203E_.glif index 03cc060..f61eb11 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni203E_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni203E_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni207F_.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni207F_.glif index 08bfe98..7f2f7aa 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni207F_.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uni207F_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_001.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_001.glif index 2dc70a1..74c3297 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_001.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_001.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_002.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_002.glif index 8d090b7..56a52d7 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_002.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_002.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_004.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_004.glif index 35fc405..6fa8b15 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_004.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_004.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_005.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_005.glif index 432683c..44e76bb 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_005.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uniF_005.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uogonek.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uogonek.glif index 06192bd..ab80fa4 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uogonek.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upblock.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upblock.glif index 7ed847a..629c7bb 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upblock.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upblock.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilon.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilon.glif index c7ab43b..76a92b9 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilon.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilondieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilondieresis.glif index 277b35b..2948933 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilondieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilondieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilondieresistonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilondieresistonos.glif index f40b538..ed985eb 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilondieresistonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilondieresistonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilontonos.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilontonos.glif index a6c4ad9..7a7dda2 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilontonos.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/upsilontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uring.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uring.glif index 12fb58d..dde9163 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uring.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/uring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/utilde.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/utilde.glif index e9cd863..86a6357 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/utilde.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/utilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/v.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/v.glif index 970fc4d..5984878 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/v.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/v.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wacute.glif index fee3bf6..1a1d283 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wcircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wcircumflex.glif index ea2cb83..2d4c1a1 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wcircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wcircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wdieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wdieresis.glif index fb23929..b6ae798 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wdieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wdieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wgrave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wgrave.glif index 9a5e65c..174565b 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wgrave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/wgrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/xi.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/xi.glif index 4fe02e6..b6ad5da 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/xi.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/xi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/y.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/y.glif index 2391f3d..ba444ae 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/y.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/y.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/yacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/yacute.glif index 392090c..d87845a 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/yacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/yacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ycircumflex.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ycircumflex.glif index 4b57fa6..e5fd7ca 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ycircumflex.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ycircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ydieresis.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ydieresis.glif index 0d9b911..68b5d59 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ydieresis.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ydieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/yen.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/yen.glif index 5bbaeb2..4885d09 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/yen.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/yen.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ygrave.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ygrave.glif index 9700581..d52dc03 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ygrave.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/ygrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/z.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/z.glif index bef9ad3..c8e4d32 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/z.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/z.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zacute.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zacute.glif index 8c86a6b..9c26e48 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zacute.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zcaron.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zcaron.glif index 0e24c21..4b4eed3 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zcaron.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zdotaccent.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zdotaccent.glif index cdd6744..9fc8fbd 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zdotaccent.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zdotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zeta.glif b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zeta.glif index 29cbbfc..10f9a96 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zeta.glif +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/glyphs/zeta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/fontinfo.plist b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/fontinfo.plist index 6248fe6..c804c6f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/fontinfo.plist +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/fontinfo.plist @@ -8,12 +8,8 @@ Regular styleMapFamilyName Ome Bhatkhande Punjabi - versionMajor - 1 - versionMinor - 1 copyright - Omenad 2006-2020, Baljeet Singh + Omenad 2006-2024, Baljeet Singh unitsPerEm 2048 ascender @@ -33,11 +29,11 @@ openTypeHheaLineGap 0 openTypeNameDesigner - Terence Tuhinanshu + Terence Tuhinanshu, Baljeet Singh openTypeNameDesignerURL - http://www.tuhinanshu.com + https://tuhinanshu.com openTypeNameLicense - Copyright (c) 2017, Omenad (http://omenad.net), + Copyright (c) 2024, Omenad (http://omenad.net), with Reserved Font Name Ome Bhatkhande. This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -58,7 +54,7 @@ with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, +fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The @@ -134,13 +130,13 @@ OTHER DEALINGS IN THE FONT SOFTWARE. openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeNameVersion - Version 1.01 Oct 5, 2022 + Version 2.0 Sep 2, 2024 openTypeNameUniqueID - OmeBhatkhandePun:1.00 + OmeBhatkhandePun:2.0 openTypeNameDescription - For writing Indian Classical Music in Bhatkhande script using Devanagari characters + For writing Indian Classical Music in Bhatkhande script using Gurmukhi characters openTypeNameSampleText - ~#qswRwG%wMepDlNu ;'[] + su sU ml mL `@DLr@gm qsUwWrUEMU [];'’\ 1234567890 openTypeOS2Panose 2 diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_.glif index 9764a25..81c3262 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_E_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_E_.glif index e0b18e4..5b176cd 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_E_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_E_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_E_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_E_acute.glif index 2b8546d..f8ce481 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_E_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_E_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_acute.glif index 205b8c2..58d2ae2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_breve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_breve.glif index c256864..93fe948 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_breve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_circumflex.glif index 5a41181..05a104f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_dieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_dieresis.glif index f7ed299..6b978e9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_dieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_grave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_grave.glif index 76f5eb8..f72be8b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_grave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_lpha.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_lpha.glif index 9c86daf..48ed9f8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_lpha.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_lpha.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_lphatonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_lphatonos.glif index 8b7490a..470e99b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_lphatonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_lphatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_macron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_macron.glif index 1f6e51a..d7c235f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_macron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ogonek.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ogonek.glif index af3c9ee..8c706f9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ogonek.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ring.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ring.glif index a719921..60f6404 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ring.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ringacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ringacute.glif index bd902de..a68e567 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ringacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_ringacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_tilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_tilde.glif index 4486fd4..926c3c2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_tilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/A_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/B_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/B_.glif index 5935d63..15ba24a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/B_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/B_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/B_eta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/B_eta.glif index b4323c8..5256c10 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/B_eta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/B_eta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_.glif index ea9b7a6..9933570 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_acute.glif index 170eefb..25f0c36 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_caron.glif index 0b73e03..b8173ec 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_cedilla.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_cedilla.glif index 069f76a..a0b9cea 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_cedilla.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_cedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_circumflex.glif index 70f159d..ca81cb3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_dotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_dotaccent.glif index e5e95cd..aa3ccec 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_dotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_hi.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_hi.glif index b0a0bc4..ee55df7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_hi.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/C_hi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_caron.glif index 55f7c47..6573796 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_croat.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_croat.glif index f4f5561..1cc96ce 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_croat.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_croat.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_elta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_elta.glif index 22cacab..e981c86 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_elta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/D_elta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_acute.glif index 0247a2e..71ed6ee 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_breve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_breve.glif index 41b6a74..74c11ae 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_breve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_caron.glif index 5102082..e135166 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_circumflex.glif index 297da15..deb4084 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_dieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_dieresis.glif index 703d353..a5c9b37 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_dieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_dotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_dotaccent.glif index 3d97e56..ef4b22f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_dotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_grave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_grave.glif index 28f72ea..b977e24 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_grave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_macron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_macron.glif index 53fca1b..6e173aa 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_macron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ng.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ng.glif index b0e366d..6e9c90a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ng.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ng.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ogonek.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ogonek.glif index babcedd..a6a835b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ogonek.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_psilon.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_psilon.glif index b8e8e65..1991d36 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_psilon.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_psilon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_psilontonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_psilontonos.glif index 9373e54..6a1df7b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_psilontonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_psilontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ta.glif index 130b4a4..f32cfbf 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_ta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_tatonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_tatonos.glif index 56b4dc5..6519c41 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_tatonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_tatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_th.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_th.glif index 4e11c49..10f1d4b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_th.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_th.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_uro.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_uro.glif index edc0c14..602b175 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_uro.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/E_uro.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/F_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/F_.glif index 637585f..d026425 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/F_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/F_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_amma.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_amma.glif index e88a5fb..05d0f3c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_amma.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_amma.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_breve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_breve.glif index df5147e..4cf80c9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_breve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_circumflex.glif index 62bf6f8..c5fc50b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_commaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_commaaccent.glif index 3beaee1..2bd2f43 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_commaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_dotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_dotaccent.glif index ae35a37..2bf5277 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_dotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/G_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_.glif index ac59269..1fea7f9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18533.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18533.glif index 2cb711f..2714268 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18533.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18533.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18543.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18543.glif index 0aabc70..961e81f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18543.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18543.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18551.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18551.glif index efd66ab..9b0ffc4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18551.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_18551.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_22073.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_22073.glif index 1c4d438..97772f1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_22073.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_22073.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_bar.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_bar.glif index f3fb653..c527095 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_bar.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_bar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_circumflex.glif index 9c8c87b..c66dd13 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/H_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_.glif index 0560222..843dfc0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_J_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_J_.glif index eef271f..df3130a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_J_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_J_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_acute.glif index 5473833..e15b54a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_breve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_breve.glif index eb06b77..a4e8ba4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_breve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_circumflex.glif index 2635810..e4de48a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_dieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_dieresis.glif index 028bbee..e54c333 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_dieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_dotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_dotaccent.glif index b1742f1..0c02d47 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_dotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_grave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_grave.glif index f678ee0..336cd98 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_grave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_macron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_macron.glif index 2a0ac37..1c020db 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_macron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_ogonek.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_ogonek.glif index d59cc74..45064bf 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_ogonek.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_ota.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_ota.glif index 1407030..6c52ef6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_ota.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_ota.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_otadieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_otadieresis.glif index e106731..d2f75d9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_otadieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_otadieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_otatonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_otatonos.glif index 5a115c1..623e3f5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_otatonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_otatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_tilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_tilde.glif index bb06d62..14d53ed 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_tilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/I_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/J_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/J_.glif index ef76fb1..a98ab88 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/J_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/J_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/J_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/J_circumflex.glif index 9a5b199..99d8880 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/J_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/J_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_.glif index 1a27a47..800d502 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_appa.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_appa.glif index 24d1859..a836e18 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_appa.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_appa.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_commaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_commaaccent.glif index f1f1074..39d07d7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_commaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/K_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_acute.glif index 5705d3c..ba2c19a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_ambda.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_ambda.glif index 665bca2..3d5fbe0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_ambda.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_ambda.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_caron.glif index a0bc6a7..fc6586b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_commaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_commaaccent.glif index ff61ae3..23c9ba5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_commaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_dot.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_dot.glif index 1375ad6..411c5ec 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_dot.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_dot.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_slash.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_slash.glif index d4a7d02..28bd47e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_slash.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/L_slash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/M_u.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/M_u.glif index 6c8f50b..98b5316 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/M_u.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/M_u.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_acute.glif index fb1cae0..c03a301 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_caron.glif index 190344f..d0e9663 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_commaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_commaaccent.glif index 933127a..13e4551 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_commaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_tilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_tilde.glif index 3a35196..6ce4962 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_tilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_u.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_u.glif index be1507b..54c01ee 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_u.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/N_u.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_.glif index 7c98754..a6c2e70 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_E_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_E_.glif index 1929b2b..04dd801 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_E_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_E_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_acute.glif index be842ad..ebad2d0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_breve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_breve.glif index 04a4548..dc24e8d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_breve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_circumflex.glif index 4ee4ee3..f25b8c7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_dieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_dieresis.glif index 55cc2e9..812f884 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_dieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_grave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_grave.glif index 487b8c8..d2125ed 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_grave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_hungarumlaut.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_hungarumlaut.glif index 06f3d84..415dbc4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_hungarumlaut.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_hungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_macron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_macron.glif index 2c67a2b..c33dc29 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_macron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_mega.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_mega.glif index 9579097..87da26d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_mega.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_mega.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_megatonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_megatonos.glif index bbb379c..8b41a92 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_megatonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_megatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_micron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_micron.glif index af69ed0..74f2c19 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_micron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_micron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_microntonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_microntonos.glif index d6e52b0..bac6424 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_microntonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_microntonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_slash.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_slash.glif index afd2a3c..0192a67 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_slash.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_slash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_slashacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_slashacute.glif index b01c3e7..4b6b8bc 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_slashacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_slashacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_tilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_tilde.glif index 10cb9c3..239976f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_tilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/O_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_.glif index 36c9166..d38bfc4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_hi.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_hi.glif index 5c1a405..e067a0c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_hi.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_hi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_i.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_i.glif index 1f68c44..e4103ab 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_i.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_i.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_si.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_si.glif index 3da2c19..4c6bc46 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_si.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/P_si.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_acute.glif index e7dcbfb..e547821 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_caron.glif index a519e6b..b0d62df 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_commaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_commaaccent.glif index 501c618..9a0e3ef 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_commaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_ho.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_ho.glif index 94e62a4..8014df4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_ho.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/R_ho.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_.glif index f72b9ed..033f19b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_010000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_010000.glif index 6ee1965..abd30f1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_010000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_010000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_020000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_020000.glif index b846cdd..440c486 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_020000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_020000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_030000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_030000.glif index ca44ddd..bac4f97 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_030000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_030000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_040000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_040000.glif index 41cf687..3a53bb3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_040000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_040000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_050000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_050000.glif index 1463c18..08c8388 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_050000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_050000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_060000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_060000.glif index 2dc38f0..6d5ef65 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_060000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_060000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_070000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_070000.glif index 17fa0bc..d7fb5b1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_070000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_070000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_080000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_080000.glif index ce5661b..99e05f1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_080000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_080000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_090000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_090000.glif index cb88e22..9707367 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_090000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_090000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_100000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_100000.glif index c5667dd..87945de 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_100000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_100000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_110000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_110000.glif index 81685f8..99b6ed2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_110000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_110000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_190000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_190000.glif index c744dac..41fe834 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_190000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_190000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_200000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_200000.glif index a80c1aa..133aa3b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_200000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_200000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_210000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_210000.glif index 7f49d33..b1d45f3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_210000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_210000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_220000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_220000.glif index 381d3f3..66fd8fa 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_220000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_220000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_230000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_230000.glif index 0a39bf8..62f7b11 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_230000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_230000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_240000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_240000.glif index 3045807..a61ce23 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_240000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_240000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_250000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_250000.glif index 0723717..69d70fb 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_250000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_250000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_260000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_260000.glif index fe5d459..8f0c58b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_260000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_260000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_270000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_270000.glif index 592863f..7ac5df1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_270000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_270000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_280000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_280000.glif index 9ecd9f8..ebb4882 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_280000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_280000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_360000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_360000.glif index 512b29e..b373574 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_360000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_360000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_370000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_370000.glif index ce00222..0af0590 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_370000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_370000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_380000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_380000.glif index 16c1fd6..86c6b76 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_380000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_380000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_390000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_390000.glif index 85f6b61..5336296 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_390000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_390000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_400000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_400000.glif index cd8fb31..e08fdb4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_400000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_400000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_410000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_410000.glif index ac01df2..7751353 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_410000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_410000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_420000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_420000.glif index 7cd3b5f..cf51470 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_420000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_420000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_430000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_430000.glif index 54075d1..7a6ef12 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_430000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_430000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_440000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_440000.glif index 41bbc5e..4bd9ef3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_440000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_440000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_450000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_450000.glif index 91b0d10..ace3138 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_450000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_450000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_460000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_460000.glif index 38a0f01..1b1cb5b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_460000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_460000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_470000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_470000.glif index 20cda74..6536737 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_470000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_470000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_480000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_480000.glif index 2a8f187..bddcf8e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_480000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_480000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_490000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_490000.glif index 0f876fc..4a2c01a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_490000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_490000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_500000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_500000.glif index c1a6b41..dea6667 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_500000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_500000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_510000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_510000.glif index 0638773..06329c9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_510000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_510000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_520000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_520000.glif index d027101..2c17192 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_520000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_520000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_530000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_530000.glif index 45691dd..0ead913 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_530000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_530000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_540000.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_540000.glif index 92bdc5e..5644f38 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_540000.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_F_540000.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_acute.glif index 2869857..bf8fd71 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_caron.glif index ec803ce..36e7c3a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_cedilla.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_cedilla.glif index 443fd0a..cebba37 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_cedilla.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_cedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_circumflex.glif index c78cda5..1ca6fcb 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_igma.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_igma.glif index a846555..c4796dc 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_igma.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/S_igma.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_.glif index 4fa0937..86202c6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_au.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_au.glif index 353ac5e..2c52578 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_au.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_au.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_bar.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_bar.glif index 7429565..fe5dddd 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_bar.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_bar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_caron.glif index c812d38..7731154 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_commaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_commaaccent.glif index cb7ff1a..07e20e1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_commaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_commaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_heta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_heta.glif index d4e182a..ef1d91a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_heta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_heta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_horn.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_horn.glif index 87cc97e..1e320d5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_horn.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/T_horn.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_acute.glif index 2bf0142..f7c0f22 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_breve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_breve.glif index caa265c..bd4e372 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_breve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_circumflex.glif index 8335474..f79964c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_dieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_dieresis.glif index faff2cc..c0470bd 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_dieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_grave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_grave.glif index 8d033c6..9f6af6b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_grave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_hungarumlaut.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_hungarumlaut.glif index 75ea74d..0d21a81 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_hungarumlaut.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_hungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_macron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_macron.glif index c3b598e..0f8df10 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_macron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_ogonek.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_ogonek.glif index e2a4c4c..32ad63e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_ogonek.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilon.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilon.glif index 080467b..9c56642 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilon.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilondieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilondieresis.glif index b8495fd..e6f2b65 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilondieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilondieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilontonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilontonos.glif index 971bb8c..a212a11 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilontonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_psilontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_ring.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_ring.glif index 09bdbae..d986f7f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_ring.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_ring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_tilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_tilde.glif index 0623508..2d40a58 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_tilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/U_tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/V_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/V_.glif index a8a59ee..a55214e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/V_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/V_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_acute.glif index 802956c..c1e1a19 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_circumflex.glif index 68afcc7..0f5a4d8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_dieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_dieresis.glif index a824308..c39b496 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_dieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_grave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_grave.glif index 9934a99..97a916a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_grave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/W_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/X_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/X_.glif index 78baa57..e7085a8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/X_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/X_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/X_i.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/X_i.glif index 6174579..b656b6d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/X_i.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/X_i.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_.glif index a6da3c5..f1612e1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_acute.glif index 4d99d85..00a75cc 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_circumflex.glif index a0966b9..401f8b0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_dieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_dieresis.glif index 49f92e7..98e6974 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_dieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_grave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_grave.glif index 4bb8e5d..1ed08af 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_grave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Y_grave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_.glif index 0446bb3..dec972d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_acute.glif index 0197650..3baef6b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_caron.glif index 32b3138..4b42c4c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_dotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_dotaccent.glif index 4960888..8967b6c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_dotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_eta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_eta.glif index 598da14..dabc52e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_eta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/Z_eta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/a.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/a.glif index 900c366..7a8f3cf 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/a.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/a.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aacute.glif index c0d5fab..a71c21f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/abreve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/abreve.glif index e7296bc..2a98ab3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/abreve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/abreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/acircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/acircumflex.glif index e43ff30..6fbcdf0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/acircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/acircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/acute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/acute.glif index f323e01..df70745 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/acute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/acute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/adieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/adieresis.glif index 5d06e0f..8d9f483 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/adieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/adieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ae.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ae.glif index 0ff5533..e771b7b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ae.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ae.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aeacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aeacute.glif index 5614212..fabd15f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aeacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aeacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii00208.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii00208.glif index 4d83cf4..79f3ea8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii00208.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii00208.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10017.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10017.glif index 9d05746..d956581 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10017.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10017.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10018.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10018.glif index 3c31d88..57a2227 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10018.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10018.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10019.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10019.glif index cd4012b..92f9642 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10019.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10019.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10020.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10020.glif index ea14544..3236c0f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10020.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10020.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10021.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10021.glif index 2ce74b5..59d80e3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10021.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10021.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10022.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10022.glif index 5e15359..b434b6a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10022.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10022.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10023.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10023.glif index 4ca4b59..04932d0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10023.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10023.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10024.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10024.glif index 528d9c6..dee706b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10024.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10024.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10025.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10025.glif index 63b9835..0c1d6e0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10025.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10025.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10026.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10026.glif index 929954a..0c328aa 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10026.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10026.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10027.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10027.glif index 4314a74..d00a0d7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10027.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10027.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10028.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10028.glif index 92a87ac..d12391c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10028.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10028.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10029.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10029.glif index 515fe94..e24b661 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10029.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10029.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10030.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10030.glif index 46b6016..b6c0d4d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10030.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10030.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10031.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10031.glif index 250776a..a7ba732 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10031.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10031.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10032.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10032.glif index 4bf137e..712f183 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10032.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10032.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10033.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10033.glif index bb5a160..4d525a2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10033.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10033.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10034.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10034.glif index 85b72cc..b5a5fd4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10034.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10034.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10035.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10035.glif index 86a534c..e3fc250 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10035.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10035.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10036.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10036.glif index 21b51c9..3a51c6a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10036.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10036.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10037.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10037.glif index 57aecee..1eedd5e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10037.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10037.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10038.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10038.glif index 37eefe5..b0c1699 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10038.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10038.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10039.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10039.glif index 3a12077..121e6f6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10039.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10039.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10040.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10040.glif index 6f71c21..0b782e8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10040.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10040.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10041.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10041.glif index 405f6b1..b90bf3e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10041.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10041.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10042.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10042.glif index 112246f..bf0463d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10042.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10042.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10043.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10043.glif index 66fa508..fe8127a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10043.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10043.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10044.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10044.glif index b659ca0..a0c5143 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10044.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10044.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10045.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10045.glif index 2679536..1ea1115 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10045.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10045.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10046.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10046.glif index bf49c89..1888659 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10046.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10046.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10047.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10047.glif index bf639fd..faec2b3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10047.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10047.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10048.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10048.glif index a9d3ba6..817a70e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10048.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10048.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10049.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10049.glif index 28eda67..b79a925 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10049.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10049.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10050.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10050.glif index d63e421..999388d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10050.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10050.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10051.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10051.glif index f11c050..c0378b7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10051.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10051.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10052.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10052.glif index 12469a7..5738af5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10052.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10052.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10053.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10053.glif index 7164720..923103f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10053.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10053.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10054.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10054.glif index 15dfb3f..8602148 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10054.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10054.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10055.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10055.glif index 6c284cb..c28345c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10055.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10055.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10056.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10056.glif index da4827f..eeaddd0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10056.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10056.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10057.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10057.glif index cea1599..7f26787 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10057.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10057.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10058.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10058.glif index 376b3ba..13802e1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10058.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10058.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10059.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10059.glif index 2e02b9f..24f323c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10059.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10059.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10060.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10060.glif index c531aa1..1bcf7fc 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10060.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10060.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10061.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10061.glif index ec0e91e..1928d18 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10061.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10061.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10062.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10062.glif index 07169d6..e7a676a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10062.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10062.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10065.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10065.glif index 0261475..dce472b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10065.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10065.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10066.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10066.glif index ab0d439..5abdd85 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10066.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10066.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10067.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10067.glif index 8303392..d386dd8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10067.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10067.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10068.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10068.glif index 0949c48..250dcd1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10068.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10068.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10069.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10069.glif index 2fd2664..05655b9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10069.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10069.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10070.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10070.glif index d818a07..2ccac7a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10070.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10070.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10071.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10071.glif index d39ee7b..9f261fe 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10071.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10071.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10072.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10072.glif index 31e9cfa..0eda74a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10072.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10072.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10073.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10073.glif index e0f8e20..583e053 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10073.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10073.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10074.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10074.glif index 23dcf5b..4809e57 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10074.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10074.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10075.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10075.glif index 7bb6589..c9eedef 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10075.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10075.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10076.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10076.glif index c0ae6e7..23880d4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10076.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10076.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10077.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10077.glif index 1251cc3..72068ca 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10077.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10077.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10078.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10078.glif index 99a29fc..0bb569b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10078.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10078.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10079.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10079.glif index d616ba8..8e54650 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10079.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10079.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10080.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10080.glif index c030633..58e6f8e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10080.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10080.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10081.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10081.glif index c5dfad3..9763ba2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10081.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10081.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10082.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10082.glif index 401c562..f305dd9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10082.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10082.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10083.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10083.glif index b9d3895..4840057 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10083.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10083.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10084.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10084.glif index a1729f4..d16e0e7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10084.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10084.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10085.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10085.glif index 3372550..79edbf6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10085.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10085.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10086.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10086.glif index be89e11..a7e7b96 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10086.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10086.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10087.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10087.glif index c117757..c571726 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10087.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10087.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10088.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10088.glif index ebdc2fe..3b627a9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10088.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10088.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10089.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10089.glif index dfd29c8..d788aa5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10089.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10089.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10090.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10090.glif index 5756a15..3ad850a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10090.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10090.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10091.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10091.glif index d710e23..41ae4c1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10091.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10091.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10092.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10092.glif index 8d52bc2..b53f041 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10092.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10092.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10093.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10093.glif index 195edd8..3511759 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10093.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10093.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10094.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10094.glif index d26ed7f..31c62b5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10094.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10094.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10095.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10095.glif index f25be40..08f199c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10095.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10095.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10096.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10096.glif index 4c36a05..81f3ea1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10096.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10096.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10097.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10097.glif index ea2f584..5a3f0f4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10097.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10097.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10098.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10098.glif index fff5ad8..7c57ab7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10098.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10098.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10099.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10099.glif index 5acee1a..ef0928f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10099.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10099.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10100.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10100.glif index 80fe9bf..c5ad3f5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10100.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10100.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10101.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10101.glif index 0236ca6..4927ab2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10101.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10101.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10102.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10102.glif index cd08237..21f8cc1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10102.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10102.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10103.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10103.glif index 3d79886..783a530 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10103.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10103.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10104.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10104.glif index a33fb8d..001c887 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10104.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10104.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10105.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10105.glif index 9c8d425..3c8278c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10105.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10105.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10106.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10106.glif index f56b3d9..6807822 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10106.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10106.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10107.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10107.glif index c924877..d1d5209 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10107.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10107.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10108.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10108.glif index 05e25cc..aed1693 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10108.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10108.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10109.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10109.glif index 7f1c49b..027a95e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10109.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10109.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10110.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10110.glif index 45cc3bb..f34b861 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10110.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10110.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10145.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10145.glif index bb97e99..ce3292e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10145.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10145.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10193.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10193.glif index 0d52b84..579e234 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10193.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii10193.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61248.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61248.glif index beb2475..d817070 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61248.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61248.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61289.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61289.glif index f486384..d9570b4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61289.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61289.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61352.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61352.glif index 017d494..e4189a1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61352.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/afii61352.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/agrave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/agrave.glif index f19326d..fdee263 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/agrave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/agrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/alpha.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/alpha.glif index 74ea89a..9858fca 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/alpha.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/alpha.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/alphatonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/alphatonos.glif index 3713c08..753d021 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/alphatonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/alphatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/amacron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/amacron.glif index 9be4445..abe5198 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/amacron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/amacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/anoteleia.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/anoteleia.glif index ee607d7..1f1bf63 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/anoteleia.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/anoteleia.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aogonek.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aogonek.glif index 05f7447..bd49527 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aogonek.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/approxequal.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/approxequal.glif index 269c3fb..3a6a823 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/approxequal.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/approxequal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aring.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aring.glif index e163316..e8cc9cf 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aring.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aringacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aringacute.glif index a75ed42..55a29ba 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aringacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/aringacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowboth.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowboth.glif index e161a8e..d7b5dc6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowboth.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowboth.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowdown.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowdown.glif index 1dcff84..250e36e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowdown.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowdown.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowleft.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowleft.glif index 7a286eb..b2d0f02 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowleft.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowright.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowright.glif index 2923a7c..e616255 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowright.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowup.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowup.glif index 11a9514..deb2222 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowup.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowup.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowupdn.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowupdn.glif index 23561ce..74aff22 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowupdn.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowupdn.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowupdnbse.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowupdnbse.glif index 6f84732..2dcebee 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowupdnbse.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/arrowupdnbse.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/atilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/atilde.glif index 6ca43c0..d642f16 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/atilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/atilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/b.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/b.glif index 19c74b9..b85961e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/b.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/b.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/beta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/beta.glif index 81fb778..1d2d1f4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/beta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/beta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/block.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/block.glif index 68186e3..b74bf38 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/block.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/block.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/braceleft.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/braceleft.glif index eeb7e03..b5a7100 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/braceleft.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/braceleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/braceright.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/braceright.glif index b3a3f17..0f928d3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/braceright.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/braceright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/breve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/breve.glif index ca88522..adeae60 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/breve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/breve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/brokenbar.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/brokenbar.glif index 2d6d586..920bc59 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/brokenbar.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/brokenbar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/bullet.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/bullet.glif index bf23790..189db7e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/bullet.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/bullet.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/c.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/c.glif index 4761137..1737f35 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/c.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/c.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cacute.glif index 3269102..77451d1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/caron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/caron.glif index d0ec7ee..01c5c38 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/caron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/caron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccaron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccaron.glif index 657382c..500eed3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccaron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccedilla.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccedilla.glif index 38c2dcb..49a5168 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccedilla.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccircumflex.glif index 49c176a..47921a5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ccircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cdotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cdotaccent.glif index 0344c9c..40b8692 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cdotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cdotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cedilla.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cedilla.glif index a4b9f89..ae25fd4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cedilla.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cent.glif index 96a6d3d..9e9cbb2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/cent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/chi.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/chi.glif index c5ee13a..d6860d2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/chi.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/chi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/circle.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/circle.glif index bebcc71..4c57088 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/circle.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/circle.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/circumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/circumflex.glif index 061bf21..2a2ad0b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/circumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/circumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/club.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/club.glif index e70fa1f..8519e7d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/club.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/club.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/colon.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/colon.glif index 88306df..28bf3a9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/colon.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/colon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/comma.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/comma.glif index 6725fa4..4ae2939 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/comma.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/comma.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/copyright.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/copyright.glif index 834bf48..f56d32d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/copyright.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/copyright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/currency.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/currency.glif index 7cd8a0f..ef1a827 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/currency.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/currency.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dagger.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dagger.glif index f4eb1f7..89a387c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dagger.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dagger.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/daggerdbl.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/daggerdbl.glif index 187865e..52377bd 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/daggerdbl.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/daggerdbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dcaron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dcaron.glif index bcc3881..66dd53b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dcaron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dcroat.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dcroat.glif index 2b0c894..4e4c966 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dcroat.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dcroat.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/degree.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/degree.glif index a986825..fa9d50d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/degree.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/degree.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/delta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/delta.glif index 37d699c..fd87b9c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/delta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/delta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/diamond.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/diamond.glif index 27553f7..8d2a792 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/diamond.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/diamond.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dieresis.glif index 46551b0..0acd592 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dieresistonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dieresistonos.glif index 400112a..fd901b7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dieresistonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dieresistonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/divide.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/divide.glif index 3589c00..c95fc31 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/divide.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/divide.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dkshade.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dkshade.glif index 7c5bc11..904470d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dkshade.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dkshade.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dnblock.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dnblock.glif index 585359a..da5ac8a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dnblock.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dnblock.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dotaccent.glif index 98fe8db..f6296b7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dotlessi.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dotlessi.glif index d9de745..db2c88c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dotlessi.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/dotlessi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eacute.glif index ac5835e..23581da 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ebreve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ebreve.glif index 05a07e4..d2d1f55 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ebreve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ebreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ecaron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ecaron.glif index a11d9eb..712c247 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ecaron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ecaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ecircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ecircumflex.glif index 5006426..2f4840f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ecircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ecircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/edieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/edieresis.glif index 4c15422..f047871 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/edieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/edieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/edotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/edotaccent.glif index 47084f2..800b2d2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/edotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/edotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/egrave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/egrave.glif index 258138e..72f8020 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/egrave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/egrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ellipsis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ellipsis.glif index 08e589f..38c7836 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ellipsis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ellipsis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/emacron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/emacron.glif index fdf2465..e7ea867 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/emacron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/emacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/emdash.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/emdash.glif index 1c55922..8c7db31 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/emdash.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/emdash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/endash.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/endash.glif index 9af2907..2170370 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/endash.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/endash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eng.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eng.glif index 454bb6c..da598c3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eng.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eng.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eogonek.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eogonek.glif index 2e355eb..951b5e5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eogonek.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/epsilon.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/epsilon.glif index f0519ff..22dc283 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/epsilon.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/epsilon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/epsilontonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/epsilontonos.glif index 098314b..f5bbd54 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/epsilontonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/epsilontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/equal.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/equal.glif index 69aca8f..0df13c9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/equal.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/equal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/equivalence.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/equivalence.glif index e4baf1d..e8917b8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/equivalence.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/equivalence.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/estimated.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/estimated.glif index 201c732..2b00f0c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/estimated.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/estimated.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eta.glif index fe7d6b7..6ab983b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/etatonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/etatonos.glif index 250264c..6be2220 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/etatonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/etatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eth.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eth.glif index fd18d82..9af9d62 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eth.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/eth.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/exclamdbl.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/exclamdbl.glif index 0c4d36f..1622dbd 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/exclamdbl.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/exclamdbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/exclamdown.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/exclamdown.glif index 594f01f..07933d7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/exclamdown.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/exclamdown.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/f.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/f.glif index 23ff3ff..71d6446 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/f.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/f.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/female.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/female.glif index 48680de..b646cc9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/female.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/female.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/filledbox.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/filledbox.glif index 61a694f..ba3822d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/filledbox.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/filledbox.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/filledrect.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/filledrect.glif index b8c1423..dc5ea42 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/filledrect.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/filledrect.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/fiveeighths.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/fiveeighths.glif index f142674..4ee464b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/fiveeighths.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/fiveeighths.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/florin.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/florin.glif index 7490602..387b989 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/florin.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/florin.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/fraction.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/fraction.glif index 50b012a..ddb5b59 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/fraction.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/fraction.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/franc.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/franc.glif index 29c05dd..3893c55 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/franc.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/franc.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gamma.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gamma.glif index ddddbd8..c778c55 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gamma.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gamma.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gbreve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gbreve.glif index 37de7e6..9a7c490 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gbreve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gbreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gcircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gcircumflex.glif index f7e2913..e3a1def 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gcircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gcircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gcommaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gcommaaccent.glif index 1226a22..f48cc36 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gcommaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gdotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gdotaccent.glif index 162909e..5863577 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gdotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/gdotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/germandbls.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/germandbls.glif index c300b36..b32916b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/germandbls.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/germandbls.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/glyph155.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/glyph155.glif index 6ca5441..ff95010 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/glyph155.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/glyph155.glif @@ -1,4 +1,4 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/greater.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/greater.glif index 5e8f885..2fb279b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/greater.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/greater.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/greaterequal.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/greaterequal.glif index 763aba7..176d2f2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/greaterequal.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/greaterequal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guillemotleft.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guillemotleft.glif index 7e15305..f0038c2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guillemotleft.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guillemotleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guillemotright.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guillemotright.glif index 79b2ad8..47bb461 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guillemotright.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guillemotright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guilsinglleft.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guilsinglleft.glif index 57a3cf2..817be05 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guilsinglleft.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guilsinglleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guilsinglright.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guilsinglright.glif index f786a6f..dbdbb07 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guilsinglright.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/guilsinglright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/h.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/h.glif index f679337..7d2d63d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/h.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/h.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hbar.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hbar.glif index e5e712e..3f53474 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hbar.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hbar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hcircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hcircumflex.glif index c5b120b..73d983b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hcircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hcircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/heart.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/heart.glif index 1e39bb1..82b57d5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/heart.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/heart.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/house.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/house.glif index 83320ce..86eb796 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/house.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/house.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hungarumlaut.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hungarumlaut.glif index a53aa0b..99a29af 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hungarumlaut.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/hungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/i.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/i.glif index 4a50102..2b8bf78 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/i.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/i.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iacute.glif index 2e14776..5aa13d7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ibreve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ibreve.glif index b438b51..e050b8d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ibreve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ibreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/icircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/icircumflex.glif index e203020..cd29323 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/icircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/icircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/idieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/idieresis.glif index 054c49f..a73a262 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/idieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/idieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/igrave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/igrave.glif index 98de527..034a3f1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/igrave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/igrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ij.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ij.glif index 58925e2..089f42f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ij.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ij.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/imacron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/imacron.glif index 8a8517d..88a93d6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/imacron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/imacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/infinity.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/infinity.glif index 51cc491..285a16e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/infinity.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/infinity.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integral.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integral.glif index dab51a7..c3f5c18 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integral.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integral.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integralbt.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integralbt.glif index 8cca823..c13d658 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integralbt.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integralbt.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integraltp.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integraltp.glif index 9d14a68..38aefe6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integraltp.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/integraltp.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/intersection.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/intersection.glif index 9a12d61..02653ad 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/intersection.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/intersection.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invbullet.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invbullet.glif index 93e23ab..d2c7ac4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invbullet.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invbullet.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invcircle.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invcircle.glif index 91776c5..1b47480 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invcircle.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invcircle.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invsmileface.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invsmileface.glif index 5349cda..fd4dd78 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invsmileface.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/invsmileface.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iogonek.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iogonek.glif index 18e6839..97e37d4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iogonek.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iota.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iota.glif index 13a9656..371fc21 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iota.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iota.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotadieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotadieresis.glif index 60cdbe3..bbc744d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotadieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotadieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotadieresistonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotadieresistonos.glif index e127a38..97ffaf4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotadieresistonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotadieresistonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotatonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotatonos.glif index ad07e28..de0fb75 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotatonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/iotatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/itilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/itilde.glif index d81ee5b..411b173 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/itilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/itilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/j.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/j.glif index 2951fdb..b830adc 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/j.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/j.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/jcircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/jcircumflex.glif index d288497..3b76709 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/jcircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/jcircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/k.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/k.glif index fd3fb15..3b4cc15 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/k.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/k.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kappa.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kappa.glif index fee9cc4..1769cbc 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kappa.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kappa.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kcommaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kcommaaccent.glif index 830dd42..8be5868 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kcommaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kgreenlandic.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kgreenlandic.glif index 7c8d7ee..9777033 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kgreenlandic.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/kgreenlandic.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lacute.glif index c8a18e5..5489f35 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lambda.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lambda.glif index dd8be61..c0ad28d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lambda.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lambda.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lcaron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lcaron.glif index 9a7a949..ab9160a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lcaron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lcommaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lcommaaccent.glif index 9b44338..f5f5ce1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lcommaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ldot.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ldot.glif index 3e262d8..b11e3c4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ldot.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ldot.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/less.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/less.glif index 00c3c6c..e29633a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/less.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/less.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lessequal.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lessequal.glif index 0f691a5..7c6f485 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lessequal.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lessequal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lfblock.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lfblock.glif index 14d0970..d1687d1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lfblock.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lfblock.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lira.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lira.glif index 9688081..aec9fc1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lira.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lira.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/logicalnot.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/logicalnot.glif index 8e745d8..a74a926 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/logicalnot.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/logicalnot.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/longs.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/longs.glif index 109846c..d6de461 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/longs.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/longs.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lozenge.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lozenge.glif index a70994a..860249d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lozenge.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lozenge.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lslash.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lslash.glif index 161921a..6c27704 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lslash.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/lslash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ltshade.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ltshade.glif index 063c7e8..5dce04d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ltshade.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ltshade.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/macron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/macron.glif index 5592e95..e3ce8e4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/macron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/macron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/male.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/male.glif index 33ac915..eb52440 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/male.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/male.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/minus.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/minus.glif index 83b28c4..03b2ac3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/minus.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/minus.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/minute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/minute.glif index 3651731..c0341a0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/minute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/minute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/mu.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/mu.glif index 997476f..415ff88 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/mu.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/mu.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/multiply.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/multiply.glif index 60dd273..338e42e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/multiply.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/multiply.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/musicalnote.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/musicalnote.glif index 1816d14..94a99b6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/musicalnote.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/musicalnote.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/musicalnotedbl.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/musicalnotedbl.glif index 274ff9b..7c96a74 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/musicalnotedbl.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/musicalnotedbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nacute.glif index 6890790..cf7607b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/napostrophe.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/napostrophe.glif index f02b17d..54219fa 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/napostrophe.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/napostrophe.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ncaron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ncaron.glif index d67417d..a9bb4bd 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ncaron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ncaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ncommaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ncommaaccent.glif index a8b79ac..152b625 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ncommaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ncommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nonmarkingreturn.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nonmarkingreturn.glif index 7ef7ade..42a67ca 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nonmarkingreturn.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nonmarkingreturn.glif @@ -1,4 +1,4 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/notequal.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/notequal.glif index 13e5e0b..f45e34c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/notequal.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/notequal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ntilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ntilde.glif index 7d5df18..29c638f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ntilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ntilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nu.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nu.glif index 6a93cca..d0bddf4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nu.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/nu.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/o.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/o.glif index 74fd5df..4276a50 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/o.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/o.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oacute.glif index af93280..ad8e29a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/obreve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/obreve.glif index c658d53..15bbee0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/obreve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/obreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ocircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ocircumflex.glif index 7f9ef35..2e94c3c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ocircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ocircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/odieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/odieresis.glif index d18e56a..8575cd1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/odieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/odieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oe.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oe.glif index d5bb1ff..e6fecd2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oe.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oe.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ogonek.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ogonek.glif index 5ae73fa..b2e0eb9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ogonek.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ograve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ograve.glif index 2bc021e..b374605 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ograve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ograve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ohungarumlaut.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ohungarumlaut.glif index 2982a72..8170eaa 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ohungarumlaut.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ohungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omacron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omacron.glif index b4a0345..abd9dbb 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omacron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omega.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omega.glif index 7ec8b81..069b838 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omega.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omega.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omegatonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omegatonos.glif index 33d21b3..16439f1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omegatonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omegatonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omicron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omicron.glif index afde5f5..94916cd 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omicron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omicron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omicrontonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omicrontonos.glif index 7ec51bf..e0cf423 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omicrontonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/omicrontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oneeighth.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oneeighth.glif index dde5132..0a28af0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oneeighth.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oneeighth.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/onehalf.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/onehalf.glif index d87eff5..160b509 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/onehalf.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/onehalf.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/onequarter.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/onequarter.glif index 09575e3..7fbfc17 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/onequarter.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/onequarter.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/openbullet.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/openbullet.glif index ca95abb..bfa3f09 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/openbullet.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/openbullet.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ordfeminine.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ordfeminine.glif index 374d0f3..bb608ac 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ordfeminine.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ordfeminine.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ordmasculine.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ordmasculine.glif index 772bb74..61c3788 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ordmasculine.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ordmasculine.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/orthogonal.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/orthogonal.glif index 226bf41..39c108e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/orthogonal.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/orthogonal.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oslash.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oslash.glif index 9c3799a..edfd5ed 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oslash.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oslash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oslashacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oslashacute.glif index 4651976..4d25163 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oslashacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/oslashacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/otilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/otilde.glif index 5fd4efc..7d3bca0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/otilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/otilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/paragraph.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/paragraph.glif index 332ba8e..bfc6837 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/paragraph.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/paragraph.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/partialdiff.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/partialdiff.glif index 06ca172..083ba35 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/partialdiff.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/partialdiff.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/period.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/period.glif index 0308e2a..c91a574 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/period.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/period.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/periodcentered.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/periodcentered.glif index d0c395b..48e13b3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/periodcentered.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/periodcentered.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/perthousand.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/perthousand.glif index 2e6ab6e..aa76d60 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/perthousand.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/perthousand.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/peseta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/peseta.glif index 8f1f691..92acacf 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/peseta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/peseta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/phi.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/phi.glif index e22f1ff..b6dc72d 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/phi.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/phi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/pi.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/pi.glif index bdefdf0..44a9c0f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/pi.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/pi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/plusminus.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/plusminus.glif index bc160b3..f94f172 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/plusminus.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/plusminus.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/product.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/product.glif index 585bb29..9170ac1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/product.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/product.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/psi.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/psi.glif index 7248f47..9b867ff 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/psi.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/psi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/question.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/question.glif index 81ddf31..e3604db 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/question.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/question.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/questiondown.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/questiondown.glif index 58e5baa..996970a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/questiondown.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/questiondown.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedbl.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedbl.glif index 2e41522..4a071d6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedbl.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblbase.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblbase.glif index 4407da7..c79eef7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblbase.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblbase.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblleft.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblleft.glif index 9d3e312..34c8fd6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblleft.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblright.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblright.glif index bb8347b..b69ec01 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblright.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotedblright.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quoteleft.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quoteleft.glif index d08adea..06099a0 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quoteleft.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quoteleft.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotereversed.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotereversed.glif index 11629a8..814eee7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotereversed.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotereversed.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotesinglbase.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotesinglbase.glif index 2b495f1..e1b6bcf 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotesinglbase.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/quotesinglbase.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/racute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/racute.glif index 2caa68c..4fd8a8e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/racute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/racute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/radical.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/radical.glif index 85a4adf..acd7a55 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/radical.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/radical.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rcaron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rcaron.glif index b744576..2bbfa6e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rcaron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rcommaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rcommaaccent.glif index e1f9502..f807466 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rcommaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/registered.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/registered.glif index c90e7ae..a97a5f8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/registered.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/registered.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/revlogicalnot.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/revlogicalnot.glif index 354438f..ef09401 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/revlogicalnot.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/revlogicalnot.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rho.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rho.glif index 3344631..3aef60b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rho.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rho.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ring.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ring.glif index fe35e65..3896e9c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ring.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rtblock.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rtblock.glif index 83c5f60..ef72701 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rtblock.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/rtblock.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sacute.glif index 3e8e783..14a6897 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scaron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scaron.glif index e7f93ec..0b59f0a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scaron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scedilla.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scedilla.glif index 7cd8fee..1c8cdd2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scedilla.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scedilla.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scircumflex.glif index 8f62cc1..a77ae86 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/scircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/second.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/second.glif index a6f683c..a3cff6e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/second.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/second.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/section.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/section.glif index 0ccb647..30c5c81 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/section.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/section.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/seveneighths.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/seveneighths.glif index bf163f6..45a037b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/seveneighths.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/seveneighths.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/shade.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/shade.glif index 55c2b4d..5172f3e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/shade.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/shade.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sigma.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sigma.glif index f0e5db6..c1f32c6 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sigma.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sigma.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sigma1.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sigma1.glif index e310f9b..6edc1ef 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sigma1.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sigma1.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/slash.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/slash.glif index 6541248..70038ea 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/slash.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/slash.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/smileface.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/smileface.glif index 11b7890..04bdb74 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/smileface.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/smileface.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/spade.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/spade.glif index fda1d7d..cff30bc 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/spade.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/spade.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sterling.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sterling.glif index 767f396..142747c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sterling.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sterling.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/summation.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/summation.glif index d8bbe4a..0751cb3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/summation.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/summation.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sun.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sun.glif index c6b8780..8cc29d5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sun.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/sun.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/t.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/t.glif index 708708d..435f53b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/t.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/t.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tau.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tau.glif index 37a7772..e58f956 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tau.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tau.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tbar.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tbar.glif index b7959af..3869e53 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tbar.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tbar.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tcaron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tcaron.glif index 94befd3..8c0b27c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tcaron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tcommaaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tcommaaccent.glif index da68f0c..47aef8f 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tcommaaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tcommaaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/theta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/theta.glif index 003235c..cb67ce1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/theta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/theta.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/thorn.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/thorn.glif index 59da658..74f90eb 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/thorn.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/thorn.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/threeeighths.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/threeeighths.glif index c8cbb6a..9497142 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/threeeighths.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/threeeighths.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/threequarters.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/threequarters.glif index 6c923c3..d8315e5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/threequarters.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/threequarters.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tilde.glif index ec04583..f778dea 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tonos.glif index 1cc0dc1..8c8cd41 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/tonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/trademark.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/trademark.glif index 4004b90..0367069 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/trademark.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/trademark.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagdn.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagdn.glif index 9e5a2e2..8c9e6f3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagdn.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagdn.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triaglf.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triaglf.glif index 31a9153..038a9e5 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triaglf.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triaglf.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagrt.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagrt.glif index 90cec57..417086c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagrt.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagrt.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagup.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagup.glif index 80ef93c..b4173fd 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagup.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/triagup.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uacute.glif index 1fee822..63240b7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ubreve.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ubreve.glif index aff679a..8034501 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ubreve.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ubreve.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ucircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ucircumflex.glif index e5a0e5d..79bf499 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ucircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ucircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/udieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/udieresis.glif index e7fafef..57312d1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/udieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/udieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ugrave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ugrave.glif index 31866bb..55d8a65 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ugrave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ugrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uhungarumlaut.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uhungarumlaut.glif index 0c4424b..dbbe6c2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uhungarumlaut.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uhungarumlaut.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/umacron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/umacron.glif index dd32c01..0ef70d8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/umacron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/umacron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/underscoredbl.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/underscoredbl.glif index 34eb929..9712ecf 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/underscoredbl.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/underscoredbl.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_2.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_2.glif index 5b76baa..75bfb20 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_2.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_2.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_3.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_3.glif index a5244c8..8b90eec 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_3.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_3.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_9.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_9.glif index 9b16075..2d0628b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_9.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni00B_9.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni02C_9.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni02C_9.glif index 4e26d83..dee3a99 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni02C_9.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni02C_9.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni0394.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni0394.glif index 00ae3a1..d605482 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni0394.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni0394.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni03A_9.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni03A_9.glif index b279a5d..67357e8 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni03A_9.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni03A_9.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni03B_C_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni03B_C_.glif index 95fe53f..b623f7c 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni03B_C_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni03B_C_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni203E_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni203E_.glif index 03cc060..f61eb11 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni203E_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni203E_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni207F_.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni207F_.glif index 08bfe98..7f2f7aa 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni207F_.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uni207F_.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_001.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_001.glif index 2dc70a1..74c3297 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_001.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_001.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_002.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_002.glif index 8d090b7..56a52d7 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_002.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_002.glif @@ -1,6 +1,6 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_004.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_004.glif index 35fc405..6fa8b15 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_004.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_004.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_005.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_005.glif index 432683c..44e76bb 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_005.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uniF_005.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uogonek.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uogonek.glif index 06192bd..ab80fa4 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uogonek.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uogonek.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upblock.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upblock.glif index 7ed847a..629c7bb 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upblock.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upblock.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilon.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilon.glif index c7ab43b..76a92b9 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilon.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilon.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilondieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilondieresis.glif index 277b35b..2948933 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilondieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilondieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilondieresistonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilondieresistonos.glif index f40b538..ed985eb 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilondieresistonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilondieresistonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilontonos.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilontonos.glif index a6c4ad9..7a7dda2 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilontonos.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/upsilontonos.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uring.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uring.glif index 12fb58d..dde9163 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uring.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/uring.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/utilde.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/utilde.glif index e9cd863..86a6357 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/utilde.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/utilde.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/v.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/v.glif index 970fc4d..5984878 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/v.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/v.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wacute.glif index fee3bf6..1a1d283 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wcircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wcircumflex.glif index ea2cb83..2d4c1a1 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wcircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wcircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wdieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wdieresis.glif index fb23929..b6ae798 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wdieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wdieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wgrave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wgrave.glif index 9a5e65c..174565b 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wgrave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/wgrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/xi.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/xi.glif index 4fe02e6..b6ad5da 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/xi.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/xi.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/y.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/y.glif index 2391f3d..ba444ae 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/y.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/y.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/yacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/yacute.glif index 392090c..d87845a 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/yacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/yacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ycircumflex.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ycircumflex.glif index 4b57fa6..e5fd7ca 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ycircumflex.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ycircumflex.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ydieresis.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ydieresis.glif index 0d9b911..68b5d59 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ydieresis.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ydieresis.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/yen.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/yen.glif index 5bbaeb2..4885d09 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/yen.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/yen.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ygrave.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ygrave.glif index 9700581..d52dc03 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ygrave.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/ygrave.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/z.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/z.glif index bef9ad3..c8e4d32 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/z.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/z.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zacute.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zacute.glif index 8c86a6b..9c26e48 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zacute.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zacute.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zcaron.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zcaron.glif index 0e24c21..4b4eed3 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zcaron.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zcaron.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zdotaccent.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zdotaccent.glif index cdd6744..9fc8fbd 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zdotaccent.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zdotaccent.glif @@ -1,5 +1,5 @@ - + diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zeta.glif b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zeta.glif index 29cbbfc..10f9a96 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zeta.glif +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/glyphs/zeta.glif @@ -1,5 +1,5 @@ - + diff --git a/ttf/OmeBhatkhandeEnglish.ttf b/ttf/OmeBhatkhandeEnglish.ttf index b49f15f8c90051d1ae067e3498d11ecfd3cd4a3f..367ab7f2195e234ac42d77a4350cca832efd5f04 100644 GIT binary patch delta 1075 zcmXxjOH30{6b9gb+VU<1X{iArPEZ6)%M3&9j6k&E9Rq^k_yPi0DiGTO9Sjl|m}pE) zOpwfig}PAV#)X?|Omv|vjB&*VA0e(xT(~g4VqB=fGpFO`_B)Sz@99l@^Ski=yU+~* zKoKs&iP_H1qrD632TFj&2xTj}+B-T?<46PNuTi|GtG{n>bKuiqiZ>{ZcMa;T@s;^y ziXX0YOBI(XnL8O@Jo9vU^AF&C4)|N9V&fD2Czn^u-h-D%o9MPWDm6FG&KUFM@48ok zm`tq$JO@=jm)&_YTGa9r1-Wz@@ZtB}U-oBur%+tCs7us!S!zWy^ zore-(&2~NxJ5sjY@H@WPF5FgKow*F1 z=E5pFhx2XhTy}%Gxi`2}i|d@rqk#ihx1EK0!Dl-gwZgFNJnR;3*v`jIVZ*i?0mqu{ z!m2~gY}+1$!sl&!aXS2poo~&hUbVdBD&S$}xZt)5n$GsHcd?7f9?i@4l1sEpY#;Yz zu}jIt>JPTx%ByeLWn_=~lD&g_9$AZr+f2!JuXBg_Y0EOnrf!x!|K^ zcP7uT?9P0FsCg<-=~oZ}`Vz6^_=Kp)ayY2SN(knbRB7H1L@N~3gMM4o&^k3fe|Bm- zIT7nfPBtm^^8co~&SQun1q0KVK@uV|n?wv!ewO0^uQFBWwqvoBF+GzM=?rl&HY+Lt zx>*UOp9W`y90N^|AepLEaB7IwXYw!?M%<6yoTMuBI6AfKV#KlC9I2LK|Nkt|T;+&x`98c+`9lg3ZG}2u2dRS~w8bkZSse<-~I2)A@}r<8vqBO z5_h0SroaDuBp29y2`sWC>cgQk{c!0NU}1>GZQ*mVkwW}?l*Nx&oDPqSo=&gjR#}`| z8}QYKSkiPYy*Tw|weT0PZv)Pr>#51);HC97IdbaNiuDT6&PrWBGPBuS?dO4YAbG%A z<1`1GW%KvDXA_k@KT%;~PXqREZ~oHmN+V}$Uv^-NdI1BRY=JsIV8k(QP;&{Yxd)od zP{r+NE=N?ipxKNX-5<@CBWiIx+ zFx#ZpWGCgHkZYK&(h9kbdTx;$sAtqmK_dk`xrG)KchI9ccu&onic|NHi!XSt+FZ=j zE}M%V&>~-UH#kK|Kx{fSGnwT5f)Mcd1yO>0;A@ayxD!SZUI?QnK a*&!b!s^smYRnaBAoFb-N)rS2<@bN$RBc{Lr diff --git a/ttf/OmeBhatkhandeHindi.ttf b/ttf/OmeBhatkhandeHindi.ttf index c931e8934cf1cfec80e981353734ccf921c4b544..7fdb43ffcbfc057615a36f14774ba538347f4554 100644 GIT binary patch delta 1591 zcma)+Uuau(6vw~!=5M?7u3Osb>Q=9%T}#&{>0OrGG*hyzf2OpiHcQvBR(sdRW;02% zrnOO&L=j~}7~>9#G8q2Bmp&+_ASli;SJ5XOD2h*`qGPa!G0~R__1trBvHB$8cYmMr zJ?D4M`JG(u%6akft6~WPfbA&5hJ1hjv7yCpAKL-ELLzn#^!D|mO{@UrL9+J_4962c zkKB2Z>`P>41`^4`nTzum$et%#jwk$zb6ll%9PG-cx}08qkDvN}C=&aUny_zi5ThBt+i0DN({8*)8epeDRm%)&{b_ z101(9vs2p3w_m#sNbi%qJF6A*q7KR>j8VLt)3T|2`-C6pCM_Ds&lctze>%EEz2Bpn zBM_P?j3)5)Cree&Y(Mx1wz)|F*4E$qb92{aAtYi-9}}8IheLl!7?+$rx(+Qm`=-;U z|0e7;q(_`S;g0Fj8^w;2i9(aPnWsi`YC;oLx?wf& zwxL1f7^8tNNl!X`4{j;o6TjdfH_z*)G^XE@9{*pfEY*s_qQ3P=S=v`|d14)_WW}kjP)KzN7dDg0^;dYw2k+2F5_yo7bPP7Qa z7FQ9Uv$z@`2-hw4pi{hRaZU3RHk-u~f}sVAy*L&6in-e8EBv~_CHppRCdUqs;ZR4I zC1#nqmRM42nZ3k2Rpa9z*y}h(WUeQ!4c}vKF!b>E%)5xC@D1jNIOb#KJseXy!^XpG zj5D|J0ds;~2CIBax7l^kh;f?*)(rNTI#1bSUSJY&WRXG+8m1vbL4bZCbTKKQ4@W$k z%4yTG;tm8tT}nU+>W@Ya>A$KyjS74eYy=!mYxB>gwcK>-=;>UK;?oaCMna}rMuPI^ zId`X3f%A^0<_f20bF$(K$ca>5Ryt+QzOFV`?nXuhR{=fn!>`Aq&Gtf%->(;=0UI5y zEJu&H^tD4x73s*2jiM5)+@5&HRyn7w)|3iZpc(}v>6t}_pM&(AL=3$c#2oE2)kuX$5jO!K_`(a$}R`v%Egu-ehP`NmJrQU9Q75@g{@E7F( delta 3677 zcmcImYitx%6h1RMGrKMAQd^clp>-{NU}?9zOWAD;kpiVf!n3873Mgy4wAcs5wr&Ms zi2*UB#NY-|LVW$eC_a9a7^6`d5r|O}6GVypAO_J8Fj0bN0!jVOnVC{cQGaMRr{}xp zeCKh`y)(Oqo>GtQQRAc#(RkWH4(h6|UbVC*boySRU6Wv)T2r;KnhMkbqMglH=hv)Q zUiV$?rDa&Zg>`#PUH$y_eLc@&-H)|*d0k1+m=S-QNa@46p{XO%m31K6NR*-x8CP2( z-CaXNs6;#0!tZKnezYNLY$>Zfi$R z-?c~c_hS7OQF3Yfrl!cYpLTvil>P^iKD8s#*QF+C5dPKRdpjc?(JNbW5=e#o71z2p zb@ybRU37qGvx_LBmXsXOFoEMIUv@k^e$H<+4tD&V-}?IRwoZ7JkgD!YtX6VV$Ipo; zm9=iQ9NY0RLFre&P5h|jyH%ol44-m|U21tEQ!R{}EG1jRu!f}@K~AM#Z$Q5+rzF#7 zoJzYO_ye|aEM_Jgq8pv4_7PV!VCOjeoj|$ij5!XRhfMp>pyX|!xHu40m{O_qLvP{2 zhHvOaZd*emA_z5#NgA-W^DG{M46;51et{$mt(u@8l_Vf>UEfc+rHk$Q8L$sIZl zd%cGG60BnPhEF}lnp~LIn^s}F0caJc!-?6aUxdDHaS+36t&PYr6S~>tFi-Lvf^7*f z8nA8Z6*Ja|BiOKnM`VrVHq9r_BOmRTq@36i;ef|SFk1L{D!d~0jE^KStKBmTGM%BRib1^$H?~*SIY`1B2%sg)Rj{36YA1i*$yf}Xz2^YMR zmV%s+3q#vG9ZU0NwC(!$xDR*>aI@q3NYr6?MuV~~#P4oGek(dT^ zESQFnpk)`hd~!V8fc04Y8?8TJZosHU{84No9Xbd(3(@%qaQ<9KinT)Hjcj+vyW*le z0pY-B@UzcnIn(qB=ILEEr^7r0-xQ+Xg}!ksUV8-%>;n&*lCxhA9EVXm2;uSem;}de zV33B1>|@~<3AAIs>C<;X<9r?GpnrkJccQi)Mg7odP{)pqxg&~kPWaizlQHnL#5G(x zeGr1q?VHO*T)hwvNM{iA2K>M_Pp>rj5{tJU$2yz916Mf6Co$mJ6XQt^$De}#0@fa! zzrl%-K<8(-9*J0XAdoftxEK<0GxkN(_9Fr8Dq^%F5bR8U5EEeBXNm(k*r&5@gYfQ= zQ#65#qm=i*!O38dq%%+$WVYdcNMQ{&%>x^A>;y9jif^kJYbiA136R}zGhg0{QBYhx1F?9Vld-}_ zeA#S_<6MJ${s25?^?4Zfn@Nm3kdV;+VzRX~gk+;N7jRrd%tgc?4_`d_EzxXZCz|0S zR0FWXCUQhHo_{ugAOWnI45yByq8a~h!q5MIo!r_4Z$$mZ6rPy#@?S+JwsHj74sgxD zh}%G}$2buv7q1eHLbO4M2V&cy84sUz^T0dKg@thsy~jTp#XEtnTUe*b%3KQ@l&+XR ztcj9<-?!|^RHt@ZIE5ywH!PfbSAJfTh24}H8nkc*O$;ZI1HTL%q*6**ALAlT$0Dt4 zgE$OvtQPDPyC&GhID9qnQm{B)NPEPVgzZeHFD$H6P#I@ogL0Kd3nu|TXW?WztbA_a z6bh=RES#FN#Nn~9n@U4={tPM#ofCU9_Z42uIIfM8#)9HVVMp0S!EPb_AUF-!9sXKy z25@>=mEZ}&IVso!oEAPRc%s-}5Ih;!9ezge6yZEBI7>M7K3Uu?3$Nf@2{0#E%((1n zw!6%(=Lj|n9A=zi+GWZq<_2;T*`-;Y0ELN`cSJiQ&EBBjA1V&|1L4Gq(yiG6@{u1O z_RepO^t81`I-8@5Hg;A7e11PD^AZKK(&pGSFU_M~Y9TKLC`d)nK?F7NJ-mJkT+#Pf4wy5`1Fv@g=T=a-0<BIAv(Iu!4KcioB91>0#FZKiG{sD;!}9{w+-D0NX4wbL@R<)ztFKx=3n u(e`PZyJNMnn!MQ3XjfJHvR?1(f;HC-G2fWClJE` diff --git a/ttf/OmeBhatkhandePunjabi.ttf b/ttf/OmeBhatkhandePunjabi.ttf index d81ca4db31c39aeab9deca57cb4f452565772634..6fd66e15d681c9da439c39147fc3535cd7cff0ce 100644 GIT binary patch delta 1738 zcma)+YfM{Z7{~wTw3Nci0faH=Af6Ezgp~rN^a5rujAZ7IC~X3L6+ z@sgOZ<6-2XF^YV*M*kvUJ@YB}ozwPY0EOElABn3bg;7bYc(la51+Vqdg4 z^&7%|rrKw53b!&Q-7eOp46o0OokuW6HjBz+F!l|W%HR|KvXN;kLb{8z%sVzxu2H$t zf8?#l7z5jv3|-17xc!T*9b*>f_U%mJ?Uyob|7Qa)?1~V#aVi90r6w*Waaa^B8}_Uq=)|3T9FEc4gKDT73n}a+ZL@(72_tq zy?_}dLY=``*dr_$Y(cS*HaG|SM4Q36cvRdl*oG1lT?A?z$SbU_e%D|Lc5k7(|V<=K2?hkxh{tqcF+xH33HGI zr|_V`7Sswa7@UI+;Y)*a@tWu~*anBG%HX`phfT8vOK^Lx8eD`YybjK}tS|3v#wqhI z-pn`LU}FZ~dz>ZC&vGsxmVAqxi-_;@-QZlzeKgLyi3@zAoJ+XAm2(-fPA<4<(lR>88q&XNt`^+-o#vB!U2u{Y2E%HHrX=PxB{HoJB_pjaXQM8-d-a>{ z0#C+AMu4(Md1jW0b58^AVXsBWOr z?V`(_4otjiN^efC<)z}3T&Bn%J;Mm`XFolUpdDT4r}FL8ahNm<+-nJAqzj@O13cys z4x>%B`s!SPo*%NYJ>5Cy67uK+!~dfA>lDuD3sQ0VbjVt4 IW*_Rm0pzhqI{*Lx delta 3721 zcmcInZA_JA7{1@ngNTR%h9>ibqNRAgG!CenEKsVY7J_1GaXOwjCL9S4LbLHwt6ZC= z?#*1y_4T7~vxRH3)w0s8AGwzKvHanx*>c)y&Ayf!UHAPyFB#$1kAmG?*K>bA_w&5( zIqd&kd-eg{A&rQ}Qa>5gv3POgl5FL%7NY)#pq*S_w`eiV&zxb<6aQk-@y;jSd)qR60BqQ zc1VAZk#aDvS5#rY0icf4=frHY&H{f?K8WG9xq---16=3%u%G1F1Klm)Xu#L$7ra>8 zL9nfaN2JE`59AZ)kq@^^QckQyeBj4NFkJX}W?pi}UA^aKS5~6y$_l80hbG zB;?EJ>#eVFAGUeTvR*dC8&#W?i|Zhv5Ki2r3gDc$kOZlsesLeo<4E|4=Xa&X`OXB; z0LRFs9gdiYBctTe@Mwo2pB3+h(crGt+Hd0DqTj^d@*@{&de6U%#8V7S!#{u71umcL zk{eKu)xSY&rMCflG2-`Q6XSs~$SH`$6UO;-At{yy;*BgEg?M*dlqVoQu-W|VLvPLT zY{GeJKY7z(Kl?7v-`)rO~AXLyl}?;TH+e z*yY)*hk-a><23L`;B~+j6paAUpoJaV3)TICUUC9i$CI(~v^XX%oplg`&i$LqMRK|! z#c(=~z?WeM_x-FI&tGEk*5lYf5`OR%ALNr5`1up#Ne;zhf_#^d(;=G^BZ0-wZW9u* z^dpdwZCnfqxf%b$nY)kxdL1$5s}M}fx*Zc>-s_2h9Bi`~H$Zrz$SFwh#Zk)p-{xdc zNYYs-3}@Eien?>xIbCqQO5= zjY7vaRK2fE9hVmilP8O1t5o2|G-CE6y%Z7R|ZC_akDYZn#IrRDlQ z#q(&Q5m$W7xasB3D4tJ~DlaKsNE70V$iO#4gLKNP+Rwbgw6G|sdR`2+7#Y2XlW)RhCDV@H3-ia9u!^xo?lfUybyeRRlo2e z@zI4BgBQeq6h49V@h^l=1kaBj5`MM#yeYg?e46f&#S~er5k5@W|JgdoKz0>KC7id1LU`i+?&qN2fN$!zfYieM}fi@CXxGWWMgZ6P(LI#Zcs zD%jYaUY|*1y3*b5=4juzI!fU`odjhdt&mRFjx|@*r8XrpiPl8t`d~7h=u9ND$WN3; z=`3~7JPPBtM}9-@gR!!}yl}XurzhmT6pI*9iVvKQ)dsYnJFa@lz=C-vC+X4nKylM^ zh87%ntNHMl+CG{}_fi)UG(hU99DkRflMbq*Hd;#E*xP)XL91ykQQy>iyLuXW>dSkU fq&n)_mUai{&se>7U~FrzHt=YAMv-|YS-t2_Bq=7T diff --git a/ttf/OmeSwarlipi.ttf b/ttf/OmeSwarlipi.ttf index 4e895635fceb7dc2663b675fb5abcf5e7a47b192..dc273624540c3c3d1451fb15a146f746550e7b91 100644 GIT binary patch delta 49 xcmX@`n(@GE#t8*18qU+5CYBV)NZV9wi08NY%D~OR00NJGFa8OmH!&V40RYvZ6FdL_ delta 49 xcmX@`n(@GE#t8*1iq7-xCYBV)Xxe1#i08NY%D~OR00Q@`mw$)Rn-~w2007F-5 Date: Mon, 2 Sep 2024 13:27:38 -0400 Subject: [PATCH 05/14] Update version to 3.0 Since 2.0 was already released a long time ago, as seen in the CHANGELOG. --- .../OmeBhatkhandeEnglish.ufo/fontinfo.plist | 4 ++-- .../OmeBhatkhandeHindi.ufo/fontinfo.plist | 4 ++-- bhatkhande/meta.py | 2 +- .../OmeBhatkhandePunjabi.ufo/fontinfo.plist | 4 ++-- ttf/OmeBhatkhandeEnglish.ttf | Bin 31068 -> 31068 bytes ttf/OmeBhatkhandeHindi.ttf | Bin 33052 -> 33052 bytes ttf/OmeBhatkhandePunjabi.ttf | Bin 31924 -> 31924 bytes ttf/OmeSwarlipi.ttf | Bin 30144 -> 30144 bytes 8 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bhatkhande/english/OmeBhatkhandeEnglish.ufo/fontinfo.plist b/bhatkhande/english/OmeBhatkhandeEnglish.ufo/fontinfo.plist index 2d8ff1a..24e4619 100644 --- a/bhatkhande/english/OmeBhatkhandeEnglish.ufo/fontinfo.plist +++ b/bhatkhande/english/OmeBhatkhandeEnglish.ufo/fontinfo.plist @@ -130,9 +130,9 @@ OTHER DEALINGS IN THE FONT SOFTWARE. openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeNameVersion - Version 2.0 Sep 2, 2024 + Version 3.0 Sep 2, 2024 openTypeNameUniqueID - OmeBhatkhandeEng:2.0 + OmeBhatkhandeEng:3.0 openTypeNameDescription For writing Indian Classical Music in Bhatkhande script using Roman characters openTypeNameSampleText diff --git a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/fontinfo.plist b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/fontinfo.plist index 3917198..a054366 100644 --- a/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/fontinfo.plist +++ b/bhatkhande/hindi/OmeBhatkhandeHindi.ufo/fontinfo.plist @@ -130,9 +130,9 @@ OTHER DEALINGS IN THE FONT SOFTWARE. openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeNameVersion - Version 2.0 Sep 2, 2024 + Version 3.0 Sep 2, 2024 openTypeNameUniqueID - OmeBhatkhandeHin:2.0 + OmeBhatkhandeHin:3.0 openTypeNameDescription For writing Indian Classical Music in Bhatkhande script using Devanagari characters openTypeNameSampleText diff --git a/bhatkhande/meta.py b/bhatkhande/meta.py index b58ed1c..f13f07f 100644 --- a/bhatkhande/meta.py +++ b/bhatkhande/meta.py @@ -4,7 +4,7 @@ 'Copyright': 'Omenad 2006-2024', 'Family': 'Ome Bhatkhande Base', 'PostScriptName': 'OmeBhatkhandeBase', - 'Version': 2.00, + 'Version': 3.00, 'Date': 'Sep 2, 2024', 'Designer': 'Terence Tuhinanshu', 'Designer URL': 'https://tuhinanshu.com', diff --git a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/fontinfo.plist b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/fontinfo.plist index c804c6f..cd8516e 100644 --- a/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/fontinfo.plist +++ b/bhatkhande/punjabi/OmeBhatkhandePunjabi.ufo/fontinfo.plist @@ -130,9 +130,9 @@ OTHER DEALINGS IN THE FONT SOFTWARE. openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeNameVersion - Version 2.0 Sep 2, 2024 + Version 3.0 Sep 2, 2024 openTypeNameUniqueID - OmeBhatkhandePun:2.0 + OmeBhatkhandePun:3.0 openTypeNameDescription For writing Indian Classical Music in Bhatkhande script using Gurmukhi characters openTypeNameSampleText diff --git a/ttf/OmeBhatkhandeEnglish.ttf b/ttf/OmeBhatkhandeEnglish.ttf index 367ab7f2195e234ac42d77a4350cca832efd5f04..316c562f7ba80083b37c4a0327161baedf999956 100644 GIT binary patch delta 115 zcmccfiSf=SMiB-^1_lOxh6V;^h5|RY5a06i_D?5@)GX`cTCQk8Xj<;f*_(V}!a?!PT zew(ih+#Eo~3=EHcFa8drH!Co{)n+uB%%>~PVx(ulF!_VN?BrECnv?T&1%Sd0x@wF@ No0scu_GViA9RNCBC9wbi diff --git a/ttf/OmeBhatkhandeHindi.ttf b/ttf/OmeBhatkhandeHindi.ttf index 7fdb43ffcbfc057615a36f14774ba538347f4554..e874b273846da69824c120bf2e141c61d912817d 100644 GIT binary patch delta 126 zcmbQ!#5AXgNrZusfq{Xap@D&!p}@^8#JBvs{nLpebxe~*CQk8ViZhz{L`kZPJD%U> zD+4zNP$>h$qu)zU!RXBjjH`{MjT!V93>X;vb5or%5=*i(67y10Ju>sGjP(pA2befc YRyP%3G@fi>s>W!%Io@=)H`CHn03A~%MgRZ+ delta 126 zcmbQ!#5AXgNrZusfq{Xap@D&!p}@^8#JBvso!~@~I;Q@diBtTTV)Z9JQIeX@8P9L? zm4TZBsFZ=>(eK6IVDx4M#?{8sMhtok1`G`Txv5SWi6z+?iFqlh9+`PoMtTO5156wz YtD6ci8cnt^Rbw>T9B;bYn`!Yk0RJl{MgRZ+ diff --git a/ttf/OmeBhatkhandePunjabi.ttf b/ttf/OmeBhatkhandePunjabi.ttf index 6fd66e15d681c9da439c39147fc3535cd7cff0ce..1d610b29e61dd45e91382c0066d279972e61edf5 100644 GIT binary patch delta 112 zcmdn;lX1&WMiB-^1_lOxh6V;^h5|RY5a06i_Rl7Y)GfXXC02FA{)tZ%WcFWZ zWQ^yx`O3h}0aVVw@aXr_(=d9o0wbS3qw!>Y194_!J%h<>_1z~=Fc1KWEHqGKG~Rr| K;FUMi($fGCrzMR5 delta 112 zcmdn;lX1&WMiB-^1_lOxh6V;^h5|RY5a06icES@y>X`ZqCQk8TiBVm*Z{iaLnS&Sl zzsB?1d}ZL~04ir-c=UVm4;Z~!fss$2(P*;1fjF~~p26g``tFk_7zhAG78 Date: Mon, 2 Sep 2024 13:29:10 -0400 Subject: [PATCH 06/14] Expand sample text in FontGoggles This makes it easier to compare all relevant characters for Ome Bhatkhande across the different languages. --- font-goggles.gggls | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/font-goggles.gggls b/font-goggles.gggls index 51e0e23..e8aef09 100644 --- a/font-goggles.gggls +++ b/font-goggles.gggls @@ -14,7 +14,7 @@ } ], "textSettings": { - "text": "su sU ml mL `@DLr@gm qsUwWrUEMU", + "text": "su sU ml mL `@DLr@gm qsUwWrUEMU [];'’\\ 1234567890", "textFilePath": null, "textFileIndex": 0, "shouldApplyBiDi": true, @@ -32,10 +32,10 @@ }, "uiSettings": { "windowPosition": [ - 57.0, - 116.0, - 1400.0, - 728.0 + 1920.0, + 0.0, + 1920.0, + 1068.0 ], "fontListItemSize": 150, "fontListShowFontFileName": true, From aad46d7a0dd29172938630b357a9b53afe980825 Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Sat, 7 Sep 2024 08:43:59 -0400 Subject: [PATCH 07/14] Add scaffolding for Bangla font --- bhatkhande/meta.py | 8 ++++++++ font-goggles.gggls | 5 ++++- scripts/build | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/bhatkhande/meta.py b/bhatkhande/meta.py index f13f07f..fa205a5 100644 --- a/bhatkhande/meta.py +++ b/bhatkhande/meta.py @@ -129,8 +129,16 @@ 'Descriptor': 'For writing Indian Classical Music in Bhatkhande script using Gurmukhi characters', }) +BANGLA = BASE.copy() +BANGLA.update({ + 'Family': 'Ome Bhatkhande Bangla', + 'PostScriptName': 'OmeBhatkhandeBangla', + 'Descriptor': 'For writing Indian Classical Music in Bhatkhande script using Bangla characters', +}) + META = { 'English': ENGLISH, 'Hindi': HINDI, 'Punjabi': PUNJABI, + 'Bangla': BANGLA, } diff --git a/font-goggles.gggls b/font-goggles.gggls index e8aef09..436e84f 100644 --- a/font-goggles.gggls +++ b/font-goggles.gggls @@ -9,6 +9,9 @@ { "path": "ttf/OmeBhatkhandePunjabi.ttf" }, + { + "path": "ttf/OmeBhatkhandeBangla.ttf" + }, { "path": "ttf/OmeSwarlipi.ttf" } @@ -49,4 +52,4 @@ "feaVarTabSelection": "options", "showHiddenAxes": false } -} \ No newline at end of file +} diff --git a/scripts/build b/scripts/build index 17e6c45..1378ec1 100755 --- a/scripts/build +++ b/scripts/build @@ -3,7 +3,7 @@ set -e # Build Ome Bhatkhande fonts for each language -for LANG in hindi english punjabi +for LANG in hindi english punjabi bangla do docker run --rm -v $PWD:/home/fontdev sungsit/fontforge \ "/bin/sh" "-c" \ From 24b29207ccfbdfa7a89963ebcf35d807c8e048b1 Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Sat, 7 Sep 2024 08:44:18 -0400 Subject: [PATCH 08/14] Add interim version of Bangla This uses contributions from @jain-sanjay and regularizes them. It also pulls glyphs from AkaashNormal, the source font he used for the Bangla glyphs. Unfortunately, the glyphs are in different scales, and don't line up correctly. The next step is to re-source all the glyphs directly from AkaashNormal so that they are even. --- bhatkhande/bangla/Bangla.sfd | 9564 ++++++++++++++++++++++++++++++++++ 1 file changed, 9564 insertions(+) create mode 100644 bhatkhande/bangla/Bangla.sfd diff --git a/bhatkhande/bangla/Bangla.sfd b/bhatkhande/bangla/Bangla.sfd new file mode 100644 index 0000000..205d0aa --- /dev/null +++ b/bhatkhande/bangla/Bangla.sfd @@ -0,0 +1,9564 @@ +SplineFontDB: 3.2 +FontName: OmeBhatkhandeBase +FullName: Ome Bhatkhande Base +FamilyName: Ome Bhatkhande Base +Weight: Regular +Copyright: Omenad 2006-2017 +Version: 1.01 Oct 5, 2022 +ItalicAngle: 0 +UnderlinePosition: -292 +UnderlineWidth: 150 +Ascent: 1638 +Descent: 410 +InvalidEm: 0 +sfntRevision: 0x00010000 +LayerCount: 2 +Layer: 0 1 "Back" 1 +Layer: 1 1 "Fore" 0 +XUID: [1021 365 -898263510 12592035] +StyleMap: 0x0000 +FSType: 8 +OS2Version: 1 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 0 +CreationTime: 1192029071 +ModificationTime: 1725678452 +PfmFamily: 17 +TTFWeight: 400 +TTFWidth: 5 +LineGap: 0 +VLineGap: 0 +Panose: 2 0 0 0 0 0 0 0 0 0 +OS2TypoAscent: 3650 +OS2TypoAOffset: 0 +OS2TypoDescent: -3000 +OS2TypoDOffset: 0 +OS2TypoLinegap: 205 +OS2WinAscent: 3650 +OS2WinAOffset: 0 +OS2WinDescent: 3000 +OS2WinDOffset: 0 +HheadAscent: 3650 +HheadAOffset: 0 +HheadDescent: -3000 +HheadDOffset: 0 +OS2SubXSize: 1434 +OS2SubYSize: 1331 +OS2SubXOff: 0 +OS2SubYOff: 283 +OS2SupXSize: 1000 +OS2SupYSize: 2250 +OS2SupXOff: 0 +OS2SupYOff: 2800 +OS2StrikeYSize: 102 +OS2StrikeYPos: 530 +OS2Vendor: 'OMND' +OS2CodePages: 6000019f.dff70000 +OS2UnicodeRanges: a00002af.500078fb.00000000.00000000 +Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 subtable" } ['kern' ('latn' <'dflt' > ) ] +MarkAttachClasses: 1 +DEI: 91125 +ShortTable: maxp 16 + 1 + 0 + 653 + 132 + 6 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 +EndShort +LangName: 1055 "" "" "Normal" +LangName: 1053 "" "" "Normal" +LangName: 2058 "" "" "Normal" +LangName: 1034 "" "" "Normal" +LangName: 3082 "" "" "Normal" +LangName: 1060 "" "" "Navadno" +LangName: 1051 "" "" "Norm+AOEA-lne" +LangName: 1049 "" "" "+BB4EMQRLBEcEPQRLBDkA" +LangName: 1046 "" "" "Normal" +LangName: 2070 "" "" "Normal" +LangName: 1045 "" "" "Normalny" +LangName: 1044 "" "" "Normal" +LangName: 1040 "" "" "Normale" +LangName: 1038 "" "" "Norm+AOEA-l" +LangName: 1032 "" "" "+A5oDsQO9A78DvQO5A7oDrAAA" +LangName: 1031 "" "" "Standard" +LangName: 1036 "" "" "Normal" +LangName: 3084 "" "" "Normal" +LangName: 1035 "" "" "Normaali" +LangName: 1043 "" "" "Standaard" +LangName: 1030 "" "" "normal" +LangName: 1029 "" "" "oby+AQ0A-ejn+AOkA" +LangName: 1027 "" "" "Normal" +LangName: 1069 "" "" "Arrunta" +LangName: 1033 "" "" "Regular" "OmeBhatkhandeEng:1.00" "" "Version 1.01 Oct 5, 2022" "" "" "" "Terence Tuhinanshu" "For writing Indian Classical Music in Bhatkhande script using Roman characters" "" "http://www.tuhinanshu.com" "Copyright (c) 2017, Omenad (http://omenad.net),+AAoA-with Reserved Font Name Ome Bhatkhande.+AAoACgAA-This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL" "" "" "" "" "+AH4A#qswRwG%wMepDlNu ;'[]" +GaspTable: 1 65535 2 0 +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: AGL For New Fonts +DisplaySize: -48 +AntiAlias: 1 +FitToEm: 0 +WinInfo: 0 30 12 +BeginPrivate: 0 +EndPrivate +BeginChars: 65540 653 + +StartChar: .notdef +Encoding: 65536 -1 0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +279 0 m 1,0,-1 + 279 1280 l 1,1,-1 + 1303 1280 l 1,2,-1 + 1303 0 l 1,3,-1 + 279 0 l 1,0,-1 +311 32 m 1,4,-1 + 1271 32 l 1,5,-1 + 1271 1248 l 1,6,-1 + 311 1248 l 1,7,-1 + 311 32 l 1,4,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: .null +Encoding: 65537 -1 1 +Width: 0 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: nonmarkingreturn +Encoding: 65538 -1 2 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: space +Encoding: 32 32 3 +AltUni2: 0000a0.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: exclam +Encoding: 33 33 4 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +8925 -2000 m 1,0,-1 + 9097 -2000 l 1,1,2 + 8741 -2191 8741 -2191 8265 -2319 c 0,3,4 + 7586 -2502 7586 -2502 6664 -2601 c 128,-1,5 + 5742 -2700 5742 -2700 4752 -2700 c 0,6,7 + 3304 -2700 3304 -2700 2108.5 -2505.5 c 128,-1,8 + 913 -2311 913 -2311 396 -2000 c 1,9,-1 + 594 -2000 l 1,10,11 + 913 -2155 913 -2155 1465 -2255.5 c 128,-1,12 + 2017 -2356 2017 -2356 2864 -2405.5 c 128,-1,13 + 3711 -2455 3711 -2455 4631 -2455 c 0,14,15 + 5632 -2455 5632 -2455 6450 -2413 c 0,16,17 + 7095 -2380 7095 -2380 7485.5 -2333 c 128,-1,18 + 7876 -2286 7876 -2286 8235.5 -2207 c 128,-1,19 + 8595 -2128 8595 -2128 8925 -2000 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: quotedbl +Encoding: 34 34 5 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: numbersign +Encoding: 35 35 6 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +4273 -1200 m 1,0,-1 + 4351 -1200 l 1,1,2 + 4189 -1350 4189 -1350 3973 -1451 c 0,3,4 + 3664 -1594 3664 -1594 3245 -1672 c 128,-1,5 + 2826 -1750 2826 -1750 2376 -1750 c 0,6,7 + 1718 -1750 1718 -1750 1174.5 -1597.5 c 128,-1,8 + 631 -1445 631 -1445 396 -1200 c 1,9,-1 + 486 -1200 l 1,10,11 + 631 -1322 631 -1322 882 -1400.5 c 128,-1,12 + 1133 -1479 1133 -1479 1518 -1518 c 128,-1,13 + 1903 -1557 1903 -1557 2321 -1557 c 0,14,15 + 2776 -1557 2776 -1557 3148 -1524 c 0,16,17 + 3441 -1498 3441 -1498 3618.5 -1461.5 c 128,-1,18 + 3796 -1425 3796 -1425 3959.5 -1362.5 c 128,-1,19 + 4123 -1300 4123 -1300 4273 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: dollar +Encoding: 36 36 7 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +5823 -1200 m 1,0,-1 + 5933 -1200 l 1,1,2 + 5707 -1370 5707 -1370 5403 -1485 c 0,3,4 + 4972 -1648 4972 -1648 4385 -1736.5 c 128,-1,5 + 3798 -1825 3798 -1825 3168 -1825 c 0,6,7 + 2246 -1825 2246 -1825 1485.5 -1651.5 c 128,-1,8 + 725 -1478 725 -1478 396 -1200 c 1,9,-1 + 522 -1200 l 1,10,11 + 725 -1339 725 -1339 1076 -1428.5 c 128,-1,12 + 1427 -1518 1427 -1518 1966 -1562 c 128,-1,13 + 2505 -1606 2505 -1606 3091 -1606 c 0,14,15 + 3728 -1606 3728 -1606 4248 -1569 c 0,16,17 + 4659 -1539 4659 -1539 4907.5 -1497 c 128,-1,18 + 5156 -1455 5156 -1455 5384.5 -1384.5 c 128,-1,19 + 5613 -1314 5613 -1314 5823 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: percent +Encoding: 37 37 8 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +7374 -1200 m 1,0,-1 + 7515 -1200 l 1,1,2 + 7224 -1370 7224 -1370 6834 -1485 c 0,3,4 + 6279 -1648 6279 -1648 5524.5 -1736.5 c 128,-1,5 + 4770 -1825 4770 -1825 3960 -1825 c 0,6,7 + 2775 -1825 2775 -1825 1797 -1651.5 c 128,-1,8 + 819 -1478 819 -1478 396 -1200 c 1,9,-1 + 558 -1200 l 1,10,11 + 819 -1339 819 -1339 1270.5 -1428.5 c 128,-1,12 + 1722 -1518 1722 -1518 2415 -1562 c 128,-1,13 + 3108 -1606 3108 -1606 3861 -1606 c 0,14,15 + 4680 -1606 4680 -1606 5349 -1569 c 0,16,17 + 5877 -1539 5877 -1539 6196.5 -1497 c 128,-1,18 + 6516 -1455 6516 -1455 6810 -1384.5 c 128,-1,19 + 7104 -1314 7104 -1314 7374 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ampersand +Encoding: 38 38 9 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +10475 -1200 m 1,0,-1 + 10679 -1200 l 1,1,2 + 10259 -1391 10259 -1391 9695 -1519 c 0,3,4 + 8894 -1702 8894 -1702 7804 -1801 c 128,-1,5 + 6714 -1900 6714 -1900 5544 -1900 c 0,6,7 + 3832 -1900 3832 -1900 2419.5 -1705.5 c 128,-1,8 + 1007 -1511 1007 -1511 396 -1200 c 1,9,-1 + 630 -1200 l 1,10,11 + 1007 -1355 1007 -1355 1659 -1455.5 c 128,-1,12 + 2311 -1556 2311 -1556 3312 -1605.5 c 128,-1,13 + 4313 -1655 4313 -1655 5401 -1655 c 0,14,15 + 6584 -1655 6584 -1655 7550 -1613 c 0,16,17 + 8313 -1580 8313 -1580 8774.5 -1533 c 128,-1,18 + 9236 -1486 9236 -1486 9660.5 -1407 c 128,-1,19 + 10085 -1328 10085 -1328 10475 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: quotesingle +Encoding: 39 39 10 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1210 1169 m 1,0,-1 + 942 1169 l 1,1,2 + 942 1139 942 1139 944 1108 c 0,3,4 + 946 1086 946 1086 950 1028 c 2,5,-1 + 959 889 l 2,6,7 + 961 858 961 858 961 839 c 0,8,9 + 961 646 961 646 865 507 c 0,10,11 + 826 450 826 450 826 402 c 0,12,13 + 826 363 826 363 851 336 c 0,14,15 + 926 253 926 253 998 204 c 2,16,-1 + 1157 95 l 2,17,18 + 1210 59 1210 59 1210 -1 c 0,19,20 + 1210 -50 1210 -50 1169 -50 c 0,21,22 + 1143 -50 1143 -50 1113 -25 c 2,23,-1 + 936 122 l 1,24,-1 + 763 274 l 2,25,26 + 692 336 692 336 601 448 c 0,27,28 + 590 461 590 461 555 510 c 0,29,30 + 518 556 518 556 456 656 c 0,31,32 + 448 673 448 673 443 689 c 2,33,-1 + 434 747 l 1,34,35 + 434 859 434 859 520 859 c 0,36,37 + 548 859 548 859 605 833.5 c 128,-1,38 + 662 808 662 808 691 808 c 0,39,40 + 715 808 715 808 730 816 c 1,41,42 + 773 879 773 879 773 994 c 0,43,44 + 773 1061 773 1061 763 1115 c 0,45,46 + 761 1144 761 1144 753 1169 c 1,47,-1 + 375 1169 l 1,48,-1 + 375 1325 l 1,49,-1 + 1210 1325 l 1,50,-1 + 1210 1169 l 1,0,-1 +EndSplineSet +Fore +SplineSet +221.461914062 1448.62304688 m 5,0,-1 + 990.530273438 1448.62304688 l 5,1,-1 + 1203.90625 1448.62304688 l 5,2,-1 + 1288.3671875 1439.73242188 l 5,3,-1 + 1315.0390625 1404.16992188 l 5,4,-1 + 1350.60351562 1324.15429688 l 5,5,-1 + 1150.5625 1324.15429688 l 5,6,-1 + 1150.5625 -85.0185546875 l 5,7,-1 + 1132.78027344 -76.1279296875 l 6,8,9 + 1093.33886719 -56.171875 1093.33886719 -56.171875 1088.32714844 -36.119140625 c 6,10,-1 + 1083.8828125 -18.337890625 l 5,11,-1 + 1079.4375 -0.5576171875 l 5,12,-1 + 1074.99121094 17.224609375 l 5,13,-1 + 1048.3203125 106.131835938 l 6,14,15 + 1021 197 1021 197 919.404296875 301.725585938 c 4,16,17 + 768 457 768 457 554.885742188 559.555664062 c 5,18,-1 + 403.745117188 612.899414062 l 5,19,-1 + 372.627929688 621.790039062 l 5,20,-1 + 368.182617188 621.790039062 l 5,21,-1 + 363.737304688 621.790039062 l 5,22,-1 + 359.291992188 626.235351562 l 5,23,-1 + 314.837890625 639.572265625 l 5,24,-1 + 288.166015625 675.133789062 l 5,25,-1 + 270.385742188 697.361328125 l 5,26,-1 + 248.159179688 732.923828125 l 5,27,-1 + 203.705078125 808.494140625 l 5,28,29 + 559.40234375 1038.25976562 559.40234375 1038.25976562 683.801757812 1088.54980469 c 6,30,-1 + 892.733398438 1173.01269531 l 5,31,-1 + 928.295898438 1186.34960938 l 5,32,-1 + 946.076171875 1190.79394531 l 5,33,-1 + 999.419921875 1213.02050781 l 6,34,35 + 1017.20214844 1220.08007812 1017.20214844 1220.08007812 1017.20214844 1275.25488281 c 6,36,-1 + 1017.20214844 1279.70019531 l 5,37,-1 + 1017.20214844 1284.14550781 l 5,38,-1 + 1017.20214844 1288.58984375 l 5,39,-1 + 1012.75585938 1297.48242188 l 5,40,-1 + 1012.75585938 1324.15429688 l 5,41,-1 + 528.190429688 1324.15429688 l 5,42,-1 + 359.268554688 1324.15429688 l 5,43,-1 + 283.698242188 1328.59960938 l 5,44,-1 + 257.025390625 1368.60742188 l 5,45,-1 + 221.461914062 1448.62304688 l 5,0,-1 +448.19921875 759.595703125 m 5,46,47 + 519.32421875 746.259765625 519.32421875 746.259765625 621.56640625 675.133789062 c 4,48,49 + 719.364257812 617.344726562 719.364257812 617.344726562 817.161132812 523.9921875 c 260,50,51 + 914.959960938 430.640625 914.959960938 430.640625 1012.75585938 301.725585938 c 5,52,-1 + 1012.75585938 1039.65234375 l 5,53,54 + 794.935546875 964.08203125 794.935546875 964.08203125 608.232421875 857.393554688 c 6,55,-1 + 554.885742188 830.720703125 l 5,56,-1 + 492.65234375 795.159179688 l 5,57,-1 + 448.19921875 759.595703125 l 5,46,47 +577.088867188 346.178710938 m 6,58,-1 + 603.76171875 350.625 l 5,59,-1 + 634.87890625 346.178710938 l 6,60,61 + 728 333 728 333 732.67578125 221.709960938 c 4,62,63 + 737 115.002929688 737 115.002929688 630.432617188 97.2412109375 c 6,64,-1 + 603.76171875 92.7958984375 l 5,65,-1 + 572.645507812 97.2412109375 l 6,66,67 + 480 110 480 110 474.845703125 221.709960938 c 4,68,69 + 470 328 470 328 577.088867188 346.178710938 c 6,58,-1 +EndSplineSet +EndChar + +StartChar: parenleft +Encoding: 40 40 11 +Width: 791 +Flags: W +LayerCount: 2 +Fore +SplineSet +604 -439 m 1,0,1 + 540 -380 540 -380 495 -334 c 128,-1,2 + 450 -288 450 -288 415 -245 c 128,-1,3 + 380 -202 380 -202 352.5 -159 c 128,-1,4 + 325 -116 325 -116 298 -65 c 0,5,6 + 149 216 149 216 149 546 c 0,7,8 + 149 777 149 777 229 984 c 0,9,10 + 257 1060 257 1060 290 1121.5 c 128,-1,11 + 323 1183 323 1183 366 1240 c 128,-1,12 + 409 1297 409 1297 466.5 1356.5 c 128,-1,13 + 524 1416 524 1416 604 1488 c 1,14,-1 + 642 1435 l 1,15,16 + 587 1369 587 1369 547 1316 c 128,-1,17 + 507 1263 507 1263 477.5 1212.5 c 128,-1,18 + 448 1162 448 1162 426.5 1110 c 128,-1,19 + 405 1058 405 1058 384 994 c 0,20,21 + 356 894 356 894 340.5 784.5 c 128,-1,22 + 325 675 325 675 325 546 c 0,23,24 + 325 286 325 286 388 69 c 0,25,26 + 409 -1 409 -1 430.5 -56.5 c 128,-1,27 + 452 -112 452 -112 480.5 -165 c 128,-1,28 + 509 -218 509 -218 548 -273.5 c 128,-1,29 + 587 -329 587 -329 642 -396 c 1,30,-1 + 604 -439 l 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: parenright +Encoding: 41 41 12 +Width: 791 +Flags: W +LayerCount: 2 +Fore +SplineSet +149 -396 m 1,0,1 + 204 -329 204 -329 243 -273.5 c 128,-1,2 + 282 -218 282 -218 310.5 -165 c 128,-1,3 + 339 -112 339 -112 360.5 -56.5 c 128,-1,4 + 382 -1 382 -1 402 69 c 0,5,6 + 466 286 466 286 466 546 c 0,7,8 + 466 675 466 675 450.5 784.5 c 128,-1,9 + 435 894 435 894 405 994 c 0,10,11 + 386 1058 386 1058 364.5 1109 c 128,-1,12 + 343 1160 343 1160 313.5 1211.5 c 128,-1,13 + 284 1263 284 1263 244 1316 c 128,-1,14 + 204 1369 204 1369 149 1435 c 1,15,-1 + 187 1488 l 1,16,17 + 267 1416 267 1416 324.5 1355.5 c 128,-1,18 + 382 1295 382 1295 425 1238 c 128,-1,19 + 468 1181 468 1181 501 1119.5 c 128,-1,20 + 534 1058 534 1058 562 984 c 0,21,22 + 642 777 642 777 642 544 c 0,23,24 + 642 357 642 357 594 184 c 128,-1,25 + 546 11 546 11 452 -138 c 0,26,27 + 427 -175 427 -175 403.5 -209 c 128,-1,28 + 380 -243 380 -243 349.5 -276.5 c 128,-1,29 + 319 -310 319 -310 280 -350 c 128,-1,30 + 241 -390 241 -390 187 -439 c 1,31,-1 + 149 -396 l 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: asterisk +Encoding: 42 42 13 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +12026 -1200 m 1,0,-1 + 12261 -1200 l 1,1,2 + 11776 -1391 11776 -1391 11126 -1519 c 0,3,4 + 10201 -1702 10201 -1702 8943.5 -1801 c 128,-1,5 + 7686 -1900 7686 -1900 6336 -1900 c 0,6,7 + 4361 -1900 4361 -1900 2731 -1705.5 c 128,-1,8 + 1101 -1511 1101 -1511 396 -1200 c 1,9,-1 + 666 -1200 l 1,10,11 + 1101 -1355 1101 -1355 1853.5 -1455.5 c 128,-1,12 + 2606 -1556 2606 -1556 3761 -1605.5 c 128,-1,13 + 4916 -1655 4916 -1655 6171 -1655 c 0,14,15 + 7536 -1655 7536 -1655 8651 -1613 c 0,16,17 + 9531 -1580 9531 -1580 10063.5 -1533 c 128,-1,18 + 10596 -1486 10596 -1486 11086 -1407 c 128,-1,19 + 11576 -1328 11576 -1328 12026 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: plus +Encoding: 43 43 14 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +734 1052 m 1,0,-1 + 849 1052 l 1,1,-1 + 849 595 l 1,2,-1 + 1308 595 l 1,3,-1 + 1308 480 l 1,4,-1 + 849 480 l 1,5,-1 + 849 17 l 1,6,-1 + 734 17 l 1,7,-1 + 734 480 l 1,8,-1 + 275 480 l 1,9,-1 + 275 595 l 1,10,-1 + 734 595 l 1,11,-1 + 734 1052 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: comma +Encoding: 44 44 15 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +446 223 m 1,0,1 + 424 164 424 164 398.5 108.5 c 128,-1,2 + 373 53 373 53 337 -6.5 c 128,-1,3 + 301 -66 301 -66 254 -132.5 c 128,-1,4 + 207 -199 207 -199 145 -279 c 1,5,-1 + 61 -317 l 1,6,-1 + 33 -295 l 1,7,8 + 121 -147 121 -147 164 -36.5 c 128,-1,9 + 207 74 207 74 217 190 c 1,10,11 + 258 203 258 203 286.5 211 c 128,-1,12 + 315 219 315 219 337.5 226 c 128,-1,13 + 360 233 360 233 378.5 239.5 c 128,-1,14 + 397 246 397 246 418 252 c 1,15,-1 + 446 223 l 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: hyphen +Encoding: 45 45 16 +AltUni2: 0000ad.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +499 440 m 1,0,-1 + 489 451 l 1,1,-1 + 544 588 l 1,2,-1 + 1083 588 l 1,3,-1 + 1093 578 l 1,4,-1 + 1032 440 l 1,5,-1 + 499 440 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: period +Encoding: 46 46 17 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: slash +Encoding: 47 47 18 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zero +Encoding: 48 48 19 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1074 455 m 0,0,1 + 1014 387 1014 387 964 368 c 0,2,3 + 930 356 930 356 850 356 c 0,4,5 + 691 356 691 356 562 474 c 0,6,7 + 421 603 421 603 421 775 c 0,8,9 + 421 882 421 882 492 966 c 0,10,11 + 579 1068 579 1068 719 1068 c 0,12,13 + 878 1068 878 1068 1011 951 c 0,14,15 + 1117 858 1117 858 1151 739 c 0,16,17 + 1161 704 1161 704 1161 665 c 0,18,19 + 1161 554 1161 554 1074 455 c 0,0,1 +938 891 m 1,20,-1 + 889 918 l 2,21,22 + 864 928 864 928 841 928 c 0,23,24 + 795 928 795 928 716 879 c 0,25,26 + 599 807 599 807 599 649 c 0,27,28 + 599 557 599 557 663 510 c 0,29,30 + 690 490 690 490 727 490 c 0,31,32 + 868 490 868 490 959 662 c 0,33,34 + 993 727 993 727 993 784 c 0,35,36 + 993 854 993 854 938 891 c 1,20,-1 +EndSplineSet +Fore +SplineSet +1074 455 m 0,0,1 + 1014 387 1014 387 964 368 c 0,2,3 + 930 356 930 356 850 356 c 0,4,5 + 691 356 691 356 562 474 c 0,6,7 + 421 603 421 603 421 775 c 0,8,9 + 421 882 421 882 492 966 c 0,10,11 + 579 1068 579 1068 719 1068 c 0,12,13 + 878 1068 878 1068 1011 951 c 0,14,15 + 1117 858 1117 858 1151 739 c 0,16,17 + 1161 704 1161 704 1161 665 c 0,18,19 + 1161 554 1161 554 1074 455 c 0,0,1 +938 891 m 1,20,-1 + 889 918 l 2,21,22 + 864 928 864 928 841 928 c 0,23,24 + 795 928 795 928 716 879 c 0,25,26 + 599 807 599 807 599 649 c 0,27,28 + 599 557 599 557 663 510 c 0,29,30 + 690 490 690 490 727 490 c 0,31,32 + 868 490 868 490 959 662 c 0,33,34 + 993 727 993 727 993 784 c 0,35,36 + 993 854 993 854 938 891 c 1,20,-1 +EndSplineSet +EndChar + +StartChar: one +Encoding: 49 49 20 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1022 42 m 0,0,1 + 1034 10 1034 10 1037 -16 c 0,2,3 + 1037 -73 1037 -73 966 -73 c 0,4,5 + 885 -73 885 -73 831 -26 c 1,6,-1 + 772 14 l 2,7,8 + 735 39 735 39 735 75 c 0,9,10 + 735 110 735 110 778 123 c 2,11,-1 + 822 136 l 1,12,-1 + 819 141 l 1,13,14 + 819 181 819 181 687.5 340.5 c 128,-1,15 + 556 500 556 500 556 535 c 1,16,17 + 560 552 560 552 647 623 c 0,18,19 + 739 699 739 699 759 739 c 1,20,-1 + 607 853 l 1,21,22 + 538 922 538 922 538 1012 c 0,23,24 + 538 1117 538 1117 595 1187 c 0,25,26 + 656 1263 656 1263 759 1263 c 0,27,28 + 861 1263 861 1263 949 1168 c 0,29,30 + 1045 1065 1045 1065 1045 927 c 0,31,32 + 1045 862 1045 862 1022 798 c 0,33,34 + 1007 756 1007 756 913 659 c 1,35,36 + 856 608 856 608 799 557 c 0,37,38 + 724 485 724 485 724 439 c 0,39,40 + 724 397 724 397 759 360 c 2,41,-1 + 908 202 l 2,42,43 + 979 126 979 126 1022 42 c 0,0,1 +912 1083 m 0,44,45 + 884 1133 884 1133 837 1133 c 0,46,47 + 804 1133 804 1133 759 1098 c 0,48,49 + 689 1044 689 1044 689 965 c 0,50,51 + 689 940 689 940 692 931 c 0,52,53 + 701 887 701 887 733 841 c 0,54,55 + 770 788 770 788 810 788 c 0,56,57 + 819 788 819 788 831 798 c 0,58,59 + 929 921 929 921 929 1015 c 0,60,61 + 929 1052 929 1052 912 1083 c 0,44,45 +EndSplineSet +Fore +SplineSet +1055.5 242.5 m 5,0,1 + 1095.5 330.5 1095.5 330.5 1099.5 378.5 c 4,2,3 + 1115.5 570.5 1115.5 570.5 839.5 738.5 c 5,4,-1 + 835.5 738.5 l 5,5,-1 + 719.5 806.5 l 5,6,-1 + 623.5 866.5 l 6,7,8 + 463.5 982.5 463.5 982.5 439.5 1110.5 c 4,9,10 + 427.5 1186.5 427.5 1186.5 455.5 1234.5 c 4,11,12 + 491.5 1298.5 491.5 1298.5 567.5 1298.5 c 4,13,14 + 627.5 1298.5 627.5 1298.5 663.5 1254.5 c 4,15,16 + 695.5 1218.5 695.5 1218.5 699.5 1166.5 c 6,17,-1 + 691.5 1122.5 l 5,18,-1 + 679.5 1094.5 l 5,19,-1 + 667.5 1062.5 l 5,20,-1 + 675.5 1042.5 l 5,21,-1 + 691.5 1010.5 l 5,22,-1 + 707.5 982.5 l 6,23,24 + 763.5 906.5 763.5 906.5 907.5 798.5 c 5,25,-1 + 915.5 794.5 l 5,26,-1 + 919.5 790.5 l 6,27,28 + 987.5 738.5 987.5 738.5 1023.5 706.5 c 4,29,30 + 1163.5 586.5 1163.5 586.5 1179.5 454.5 c 4,31,32 + 1183.5 394.5 1183.5 394.5 1171.5 326.5 c 4,33,34 + 1127.5 82.5 1127.5 82.5 919.5 -37.5 c 6,35,-1 + 847.5 -73.5 l 6,36,37 + 791.5 -93.5 791.5 -93.5 735.5 -97.5 c 4,38,39 + 619.5 -105.5 619.5 -105.5 575.5 -25.5 c 6,40,-1 + 567.5 -5.5 l 5,41,-1 + 563.5 14.5 l 5,42,-1 + 559.5 42.5 l 5,43,-1 + 563.5 70.5 l 6,44,45 + 587.5 222.5 587.5 222.5 759.5 298.5 c 4,46,47 + 787.5 310.5 787.5 310.5 815.5 318.5 c 4,48,49 + 827.5 318.5 827.5 318.5 839.5 322.5 c 6,50,-1 + 907.5 326.5 l 5,51,-1 + 911.5 326.5 l 6,52,53 + 975.5 322.5 975.5 322.5 1015.5 290.5 c 4,54,55 + 1035.5 274.5 1035.5 274.5 1055.5 242.5 c 5,0,1 +EndSplineSet +EndChar + +StartChar: two +Encoding: 50 50 21 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1220 -1 m 1,0,1 + 1220 -47 1220 -47 1143 -47 c 0,2,3 + 1078 -47 1078 -47 1052 -1 c 0,4,5 + 1010 72 1010 72 873 290 c 0,6,7 + 850 327 850 327 823 373 c 0,8,9 + 814 388 814 388 776 459 c 0,10,11 + 767 475 767 475 749 489 c 2,12,-1 + 717 513 l 1,13,-1 + 684 511 l 2,14,15 + 586 505 586 505 519 567.5 c 128,-1,16 + 452 630 452 630 455 728 c 2,17,-1 + 456 764 l 1,18,19 + 467 845 467 845 567 845 c 0,20,21 + 622 845 622 845 650 806 c 0,22,23 + 716 716 716 716 761 716 c 0,24,25 + 829 716 829 716 930 926 c 0,26,27 + 946 959 946 959 946 1005 c 0,28,29 + 946 1092 946 1092 909 1123 c 0,30,31 + 884 1144 884 1144 828 1144 c 0,32,33 + 771 1144 771 1144 686 1123 c 1,34,-1 + 580 1084 l 2,35,36 + 542 1070 542 1070 499 1070 c 0,37,38 + 472 1070 472 1070 434 1120 c 2,39,-1 + 377 1195 l 2,40,41 + 362 1215 362 1215 362 1226 c 0,42,43 + 362 1265 362 1265 456 1283 c 0,44,45 + 564 1304 564 1304 660 1304 c 0,46,47 + 784 1304 784 1304 857 1271 c 0,48,49 + 936 1236 936 1236 1009 1142 c 0,50,51 + 1105 1018 1105 1018 1098 902 c 2,52,-1 + 1096 869 l 2,53,54 + 1090 767 1090 767 1010 687 c 0,55,56 + 986 663 986 663 833 545 c 1,57,58 + 871 446 871 446 951 360 c 2,59,-1 + 1103 197 l 2,60,61 + 1182 112 1182 112 1220 -1 c 1,0,1 +EndSplineSet +Fore +SplineSet +297 864.5 m 5,0,-1 + 409 800.5 l 5,1,-1 + 417 792.5 l 5,2,-1 + 497 744.5 l 6,3,4 + 581 704.5 581 704.5 689 700.5 c 6,5,-1 + 701 700.5 l 5,6,-1 + 841 708.5 l 5,7,-1 + 873 716.5 l 6,8,9 + 1013 752.5 1013 752.5 1021 856.5 c 6,10,-1 + 1021 884.5 l 5,11,-1 + 1017 912.5 l 5,12,-1 + 1009 932.5 l 6,13,14 + 1001 952.5 1001 952.5 993 964.5 c 4,15,16 + 941 1052.5 941 1052.5 761 1120.5 c 5,17,-1 + 757 1124.5 l 6,18,19 + 761 1124.5 761 1124.5 717 1140.5 c 6,20,-1 + 637 1172.5 l 6,21,22 + 549 1216.5 549 1216.5 509 1264.5 c 4,23,24 + 473 1308.5 473 1308.5 469 1368.5 c 4,25,26 + 457 1472.5 457 1472.5 545 1512.5 c 6,27,-1 + 565 1520.5 l 5,28,-1 + 589 1524.5 l 5,29,-1 + 645 1516.5 l 5,30,31 + 733 1476.5 733 1476.5 729 1380.5 c 5,32,-1 + 717 1332.5 l 5,33,-1 + 709 1316.5 l 5,34,-1 + 705 1300.5 l 5,35,-1 + 729 1260.5 l 5,36,-1 + 737 1248.5 l 6,37,38 + 781 1204.5 781 1204.5 885 1136.5 c 5,39,-1 + 885 1136.5 l 5,40,41 + 1021 1052.5 1021 1052.5 1065 984.5 c 4,42,43 + 1105 928.5 1105 928.5 1101 856.5 c 4,44,45 + 1097 768.5 1097 768.5 1041 696.5 c 4,46,47 + 969 600.5 969 600.5 833 560.5 c 4,48,49 + 797 552.5 797 552.5 765 548.5 c 5,50,-1 + 937 400.5 l 5,51,-1 + 1145 192.5 l 5,52,-1 + 1289 28.5 l 5,53,-1 + 1321 -47.5 l 5,54,-1 + 1193 56.5 l 5,55,-1 + 1185 60.5 l 5,56,-1 + 1129 108.5 l 6,57,58 + 937 260.5 937 260.5 761 376.5 c 6,59,-1 + 521 524.5 l 5,60,-1 + 485 544.5 l 5,61,-1 + 449 564.5 l 6,62,63 + 417 580.5 417 580.5 405 596.5 c 6,64,-1 + 377 660.5 l 5,65,-1 + 373 664.5 l 5,66,-1 + 373 668.5 l 5,67,-1 + 365 692.5 l 5,68,-1 + 297 864.5 l 5,0,-1 +EndSplineSet +EndChar + +StartChar: three +Encoding: 51 51 22 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1221 16 m 1,0,-1 + 1228 -15 l 1,1,2 + 1228 -73 1228 -73 1166 -73 c 0,3,4 + 1113 -73 1113 -73 1042 12 c 0,5,6 + 1032 24 1032 24 951 138 c 0,7,8 + 843 290 843 290 812 318 c 1,9,-1 + 769 315 l 2,10,11 + 666 308 666 308 586 372 c 0,12,13 + 503 439 503 439 503 541 c 1,14,-1 + 507 579 l 2,15,16 + 511 618 511 618 561 640 c 0,17,18 + 586 651 586 651 608 651 c 0,19,20 + 637 651 637 651 661 637 c 1,21,22 + 688 627 688 627 707 597 c 1,23,24 + 754 541 754 541 800 541 c 0,25,26 + 860 541 860 541 899 640 c 1,27,-1 + 906 683 l 1,28,29 + 906 717 906 717 892 745 c 1,30,31 + 883 772 883 772 860 800 c 0,32,33 + 850 812 850 812 830 813 c 1,34,-1 + 803 808 l 1,35,-1 + 762 798 l 1,36,-1 + 666 781 l 1,37,38 + 628 781 628 781 602 813 c 2,39,-1 + 548 879 l 2,40,41 + 527 905 527 905 527 923 c 0,42,43 + 527 943 527 943 567 949 c 0,44,45 + 590 952 590 952 613 951 c 2,46,-1 + 647 949 l 2,47,48 + 804 940 804 940 861 1075 c 0,49,50 + 870 1096 870 1096 870 1120 c 0,51,52 + 870 1210 870 1210 748 1210 c 0,53,54 + 687 1210 687 1210 632 1186 c 2,55,-1 + 556 1153 l 2,56,57 + 529 1141 529 1141 472 1129 c 1,58,59 + 442 1144 442 1144 393 1211 c 2,60,-1 + 354 1264 l 1,61,-1 + 369 1287 l 1,62,63 + 383 1300 383 1300 419 1316 c 1,64,65 + 548 1357 548 1357 637 1357 c 0,66,67 + 741 1357 741 1357 830 1297 c 0,68,69 + 1014 1173 1014 1173 1014 1023 c 0,70,71 + 1014 937 1014 937 947 880 c 1,72,-1 + 920 863 l 1,73,-1 + 914 853 l 1,74,75 + 914 843 914 843 930 827 c 0,76,77 + 1048 709 1048 709 1048 580 c 0,78,79 + 1048 482 1048 482 961 402 c 1,80,-1 + 926 376 l 2,81,82 + 911 365 911 365 911 354 c 0,83,84 + 911 344 911 344 918 332 c 2,85,-1 + 947 297 l 1,86,-1 + 1113 136 l 2,87,88 + 1209 43 1209 43 1221 16 c 1,0,-1 +EndSplineSet +Fore +SplineSet +853.5 923 m 5,0,-1 + 897.5 859 l 6,1,2 + 921.5 815 921.5 815 921.5 763 c 4,3,4 + 921.5 707 921.5 707 893.5 663 c 4,5,6 + 841.5 567 841.5 567 725.5 567 c 4,7,8 + 585.5 567 585.5 567 541.5 687 c 4,9,10 + 521.5 731 521.5 731 525.5 783 c 4,11,12 + 529.5 939 529.5 939 661.5 1023 c 4,13,14 + 717.5 1059 717.5 1059 797.5 1071 c 4,15,16 + 829.5 1075 829.5 1075 865.5 1071 c 4,17,18 + 1089.5 1047 1089.5 1047 1205.5 807 c 5,19,-1 + 1237.5 719 l 6,20,21 + 1269.5 611 1269.5 611 1229.5 279 c 5,22,-1 + 1269.5 495 l 5,23,24 + 1269.5 379 1269.5 379 1229.5 279 c 4,25,26 + 1149.5 79 1149.5 79 961.5 23 c 4,27,28 + 873.5 -5 873.5 -5 785.5 15 c 4,29,30 + 741.5 27 741.5 27 685.5 59 c 4,31,32 + 569.5 123 569.5 123 473.5 295 c 4,33,34 + 461.5 315 461.5 315 449.5 335 c 4,35,36 + 381.5 451 381.5 451 305.5 647 c 6,37,-1 + 261.5 751 l 6,38,39 + 253.5 771 253.5 771 177.5 959 c 6,40,-1 + 229.5 823 l 5,41,-1 + 177.5 959 l 5,42,-1 + 205.5 947 l 6,43,44 + 229.5 939 229.5 939 241.5 927 c 4,45,46 + 261.5 915 261.5 915 277.5 879 c 6,47,-1 + 289.5 855 l 5,48,-1 + 325.5 779 l 5,49,-1 + 357.5 707 l 5,50,-1 + 425.5 555 l 6,51,52 + 577.5 247 577.5 247 773.5 195 c 5,53,-1 + 825.5 187 l 6,54,55 + 877.5 179 877.5 179 933.5 199 c 6,56,-1 + 1021.5 235 l 5,57,58 + 1209.5 355 1209.5 355 1185.5 603 c 4,59,60 + 1181.5 643 1181.5 643 1169.5 683 c 6,61,-1 + 1165.5 699 l 6,62,63 + 1121.5 859 1121.5 859 997.5 911 c 6,64,-1 + 965.5 923 l 5,65,-1 + 909.5 931 l 5,66,-1 + 873.5 927 l 5,67,-1 + 853.5 923 l 5,0,-1 +EndSplineSet +EndChar + +StartChar: four +Encoding: 52 52 23 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1140 718 m 1,0,-1 + 948 565 l 1,1,-1 + 937 549 l 2,2,3 + 932 545 932 545 928 537 c 1,4,5 + 928 525 928 525 962 505 c 0,6,7 + 1034 463 1034 463 1080 384.5 c 128,-1,8 + 1126 306 1126 306 1126 224 c 0,9,10 + 1126 128 1126 128 1051 56 c 128,-1,11 + 976 -16 976 -16 879 -16 c 0,12,13 + 807 -16 807 -16 702 48 c 0,14,15 + 628 93 628 93 579.5 174 c 128,-1,16 + 531 255 531 255 531 339 c 0,17,18 + 531 492 531 492 685 588 c 1,19,20 + 655 620 655 620 591 668 c 0,21,22 + 523 720 523 720 496 747 c 0,23,24 + 335 908 335 908 335 1056 c 0,25,26 + 335 1176 335 1176 436 1267 c 0,27,28 + 450 1279 450 1279 478 1292 c 1,29,-1 + 545 1299 l 1,30,31 + 576 1295 576 1295 609.5 1264.5 c 128,-1,32 + 643 1234 643 1234 646 1204 c 2,33,-1 + 649 1174 l 2,34,35 + 649 1154 649 1154 644 1146 c 2,36,-1 + 586 1103 l 2,37,38 + 503 1041 503 1041 503 955 c 0,39,40 + 503 789 503 789 761 639 c 1,41,42 + 1114 867 1114 867 1114 1040 c 0,43,44 + 1114 1093 1114 1093 1077 1154 c 1,45,-1 + 1066 1169 l 2,46,47 + 1056 1183 1056 1183 1041 1188 c 0,48,49 + 999 1203 999 1203 999 1257 c 1,50,-1 + 1003 1278 l 2,51,52 + 1007 1299 1007 1299 1031 1301 c 1,53,-1 + 1052 1296 l 2,54,55 + 1066 1291 1066 1291 1080 1278 c 0,56,57 + 1248 1128 1248 1128 1248 971 c 0,58,59 + 1248 832 1248 832 1140 718 c 1,0,-1 +962 325 m 0,60,61 + 962 426 962 426 851 480 c 1,62,63 + 804 458 804 458 748 401 c 0,64,65 + 704 356 704 356 688 300 c 1,66,-1 + 683 247 l 1,67,68 + 683 132 683 132 780 132 c 1,69,-1 + 799 129 l 1,70,71 + 861 129 861 129 913 197 c 0,72,73 + 962 261 962 261 962 325 c 0,60,61 +EndSplineSet +Fore +SplineSet +679 583.5 m 1,0,1 + 483 655.5 483 655.5 427 823.5 c 0,2,3 + 407 879.5 407 879.5 411 943.5 c 2,4,-1 + 431 1023.5 l 2,5,6 + 451 1075.5 451 1075.5 483 1107.5 c 0,7,8 + 527 1159.5 527 1159.5 579 1187.5 c 0,9,10 + 655 1231.5 655 1231.5 731 1243.5 c 2,11,-1 + 835 1247.5 l 1,12,13 + 1059 1227.5 1059 1227.5 1143 1067.5 c 0,14,15 + 1159 1035.5 1159 1035.5 1167 999.5 c 2,16,-1 + 1175 959.5 l 1,17,-1 + 1175 919.5 l 2,18,19 + 1171 871.5 1171 871.5 1151 823.5 c 0,20,21 + 1115 739.5 1115 739.5 987 655.5 c 1,22,-1 + 987 655.5 l 1,23,-1 + 955 635.5 l 1,24,25 + 1067 587.5 1067 587.5 1135 495.5 c 0,26,27 + 1203 407.5 1203 407.5 1203 319.5 c 2,28,-1 + 1191 227.5 l 1,29,30 + 1131 35.5 1131 35.5 895 -12.5 c 0,31,32 + 851 -20.5 851 -20.5 807 -20.5 c 0,33,34 + 663 -20.5 663 -20.5 555 43.5 c 0,35,36 + 403 139.5 403 139.5 411 295.5 c 0,37,38 + 415 315.5 415 315.5 419 335.5 c 2,39,-1 + 435 379.5 l 2,40,41 + 451 423.5 451 423.5 483 451.5 c 0,42,43 + 527 499.5 527 499.5 635 559.5 c 1,44,-1 + 639 559.5 l 1,45,46 + 663 575.5 663 575.5 679 583.5 c 1,0,1 +547 931.5 m 0,47,48 + 567 799.5 567 799.5 747 719.5 c 1,49,-1 + 751 719.5 l 1,50,-1 + 759 715.5 l 1,51,-1 + 787 699.5 l 1,52,-1 + 819 687.5 l 1,53,-1 + 859 683.5 l 2,54,55 + 879 687.5 879 687.5 911 711.5 c 1,56,57 + 887 691.5 887 691.5 935 731.5 c 0,58,59 + 1055 843.5 1055 843.5 1035 963.5 c 0,60,61 + 1015 1107.5 1015 1107.5 879 1163.5 c 0,62,63 + 835 1179.5 835 1179.5 787 1179.5 c 2,64,-1 + 779 1179.5 l 2,65,66 + 639 1171.5 639 1171.5 571 1055.5 c 0,67,68 + 539 995.5 539 995.5 547 931.5 c 0,47,48 +551 251.5 m 0,69,70 + 571 115.5 571 115.5 715 63.5 c 0,71,72 + 759 47.5 759 47.5 807 47.5 c 2,73,-1 + 867 55.5 l 2,74,75 + 1007 79.5 1007 79.5 1055 203.5 c 0,76,77 + 1067 243.5 1067 243.5 1063 287.5 c 2,78,-1 + 1063 295.5 l 2,79,80 + 1051 419.5 1051 419.5 867 507.5 c 0,81,82 + 855 511.5 855 511.5 831 523.5 c 2,83,-1 + 827 523.5 l 1,84,-1 + 819 527.5 l 1,85,-1 + 775 539.5 l 1,86,-1 + 747 531.5 l 1,87,-1 + 743 527.5 l 1,88,-1 + 715 511.5 l 1,89,-1 + 691 495.5 l 2,90,91 + 535 387.5 535 387.5 551 251.5 c 0,69,70 +EndSplineSet +EndChar + +StartChar: five +Encoding: 53 53 24 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1192 -42 m 0,0,1 + 1171 -42 1171 -42 1163 -33 c 0,2,3 + 1138 -14 1138 -14 1119 63 c 2,4,-1 + 1093 167 l 1,5,6 + 1073 219 1073 219 1017 354 c 2,7,-1 + 922 570 l 1,8,-1 + 906 577 l 1,9,-1 + 868 565 l 2,10,11 + 836 555 836 555 795 555 c 0,12,13 + 662 555 662 555 540 628 c 0,14,15 + 341 747 341 747 341 934 c 2,16,-1 + 341 974 l 2,17,18 + 344 983 344 983 348 1004 c 2,19,-1 + 356 1059 l 1,20,-1 + 360 1096 l 1,21,22 + 360 1143 360 1143 335 1210 c 0,23,24 + 332 1218 332 1218 313 1255 c 1,25,26 + 313 1299 313 1299 336 1300 c 0,27,28 + 368 1301 368 1301 408 1279 c 2,29,-1 + 481 1239 l 1,30,31 + 589 1193 589 1193 589 1127 c 0,32,33 + 589 1104 589 1104 582 1083 c 2,34,-1 + 561 1021 l 2,35,36 + 554 999 554 999 538.5 944 c 128,-1,37 + 523 889 523 889 523 836 c 0,38,39 + 523 691 523 691 681 697 c 0,40,41 + 830 702 830 702 830 823 c 0,42,43 + 830 855 830 855 826 867 c 1,44,45 + 826 1009 826 1009 965 1026 c 1,46,47 + 1034 1006 1034 1006 1079 948 c 128,-1,48 + 1124 890 1124 890 1124 818 c 0,49,50 + 1124 722 1124 722 1041 648 c 1,51,-1 + 1022 638 l 2,52,53 + 1010 633 1010 633 1008 624 c 0,54,55 + 1008 619 1008 619 1090 465 c 2,56,-1 + 1150 352 l 1,57,-1 + 1237 213 l 1,58,59 + 1270 139 1270 139 1270 77 c 0,60,61 + 1270 46 1270 46 1259.5 5.5 c 128,-1,62 + 1249 -35 1249 -35 1192 -42 c 0,0,1 +EndSplineSet +Fore +SplineSet +1190.5 34.5 m 5,0,1 + 1062.5 -33.5 1062.5 -33.5 902.5 -25.5 c 4,2,3 + 618.5 -13.5 618.5 -13.5 462.5 186.5 c 4,4,5 + 398.5 266.5 398.5 266.5 374.5 366.5 c 6,6,-1 + 362.5 478.5 l 6,7,8 + 362.5 558.5 362.5 558.5 382.5 646.5 c 4,9,10 + 458.5 950.5 458.5 950.5 722.5 1122.5 c 4,11,12 + 882.5 1226.5 882.5 1226.5 1058.5 1234.5 c 5,13,-1 + 1058.5 1202.5 l 6,14,15 + 1062.5 990.5 1062.5 990.5 1170.5 894.5 c 5,16,-1 + 1234.5 854.5 l 6,17,18 + 1270.5 834.5 1270.5 834.5 1318.5 826.5 c 5,19,-1 + 1318.5 818.5 l 5,20,21 + 1090.5 782.5 1090.5 782.5 966.5 562.5 c 4,22,23 + 926.5 498.5 926.5 498.5 910.5 426.5 c 6,24,-1 + 894.5 330.5 l 6,25,26 + 890.5 258.5 890.5 258.5 914.5 210.5 c 4,27,28 + 954.5 142.5 954.5 142.5 1018.5 118.5 c 6,29,-1 + 1054.5 106.5 l 5,30,-1 + 1094.5 94.5 l 5,31,-1 + 1166.5 54.5 l 5,32,-1 + 1190.5 38.5 l 5,33,-1 + 1190.5 34.5 l 5,0,1 +946.5 46.5 m 5,34,35 + 822.5 150.5 822.5 150.5 786.5 258.5 c 4,36,37 + 754.5 342.5 754.5 342.5 758.5 438.5 c 4,38,39 + 774.5 674.5 774.5 674.5 942.5 782.5 c 5,40,-1 + 1022.5 818.5 l 5,41,-1 + 1022.5 826.5 l 5,42,43 + 902.5 862.5 902.5 862.5 882.5 1006.5 c 4,44,45 + 878.5 1018.5 878.5 1018.5 878.5 1026.5 c 6,46,-1 + 878.5 1042.5 l 5,47,-1 + 750.5 974.5 l 5,48,49 + 586.5 866.5 586.5 866.5 514.5 686.5 c 4,50,51 + 482.5 602.5 482.5 602.5 474.5 518.5 c 4,52,53 + 458.5 326.5 458.5 326.5 566.5 194.5 c 4,54,55 + 590.5 162.5 590.5 162.5 638.5 126.5 c 4,56,57 + 682.5 86.5 682.5 86.5 750.5 66.5 c 4,58,59 + 822.5 38.5 822.5 38.5 946.5 46.5 c 5,34,35 +EndSplineSet +EndChar + +StartChar: six +Encoding: 54 54 25 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1138 -1 m 2,0,1 + 1148 -18 1148 -18 1148 -35 c 0,2,3 + 1148 -88 1148 -88 1083 -95 c 1,4,5 + 1040 -95 1040 -95 1005 -50 c 0,6,7 + 981 -19 981 -19 946 77 c 0,8,9 + 865 304 865 304 837 344 c 1,10,11 + 735 344 735 344 685 368 c 0,12,13 + 616 401 616 401 522 513 c 0,14,15 + 450 599 450 599 450 684 c 0,16,17 + 450 791 450 791 558 888 c 1,18,19 + 497 957 497 957 471 1001 c 0,20,21 + 435 1060 435 1060 435 1114 c 0,22,23 + 435 1161 435 1161 464 1204 c 0,24,25 + 548 1327 548 1327 733 1319 c 2,26,-1 + 777 1317 l 2,27,28 + 888 1312 888 1312 922 1292 c 0,29,30 + 944 1279 944 1279 962 1233 c 2,31,-1 + 980 1186 l 1,32,-1 + 992 1143 l 1,33,34 + 992 1117 992 1117 968 1105 c 1,35,36 + 952 1108 952 1108 883 1133 c 0,37,38 + 801 1162 801 1162 755 1162 c 0,39,40 + 715 1162 715 1162 686 1148 c 0,41,42 + 582 1112 582 1112 582 1011 c 0,43,44 + 582 959 582 959 621 922 c 1,45,46 + 649 933 649 933 721 951 c 1,47,-1 + 821 958 l 2,48,49 + 868 961 868 961 885 919 c 1,50,-1 + 910 876 l 2,51,52 + 926 854 926 854 929 833 c 1,53,-1 + 924 813 l 1,54,55 + 914 793 914 793 881 795 c 2,56,-1 + 815 799 l 2,57,58 + 728 804 728 804 657 748 c 0,59,60 + 584 689 584 689 584 602 c 0,61,62 + 584 569 584 569 597 537 c 0,63,64 + 606 515 606 515 644 500 c 0,65,66 + 676 487 676 487 705 487 c 0,67,68 + 751 487 751 487 787 513 c 1,69,-1 + 796 530 l 1,70,-1 + 797 575 l 1,71,72 + 807 655 807 655 924 655 c 0,73,74 + 976 655 976 655 1017 600 c 0,75,76 + 1056 549 1056 549 1056 496 c 0,77,78 + 1056 433 1056 433 989 392 c 2,79,-1 + 955 371 l 2,80,81 + 939 361 939 361 939 344 c 1,82,-1 + 950 311 l 1,83,-1 + 1138 -1 l 2,0,1 +EndSplineSet +Fore +SplineSet +539 928.5 m 5,0,1 + 479 928.5 479 928.5 439 952.5 c 4,2,3 + 415 972.5 415 972.5 403 992.5 c 6,4,-1 + 387 1032.5 l 6,5,6 + 367 1124.5 367 1124.5 451 1172.5 c 4,7,8 + 499 1204.5 499 1204.5 559 1184.5 c 4,9,10 + 627 1160.5 627 1160.5 647 1088.5 c 6,11,-1 + 651 1056.5 l 5,12,-1 + 655 1024.5 l 5,13,-1 + 679 740.5 l 5,14,-1 + 679 724.5 l 5,15,-1 + 679 720.5 l 5,16,-1 + 683 676.5 l 5,17,-1 + 683 672.5 l 5,18,-1 + 687 668.5 l 5,19,20 + 695 604.5 695 604.5 735 592.5 c 5,21,-1 + 771 596.5 l 5,22,-1 + 783 600.5 l 5,23,-1 + 863 656.5 l 5,24,-1 + 947 736.5 l 5,25,-1 + 971 760.5 l 6,26,27 + 1035 836.5 1035 836.5 1047 892.5 c 5,28,29 + 1127 852.5 1127 852.5 1191 748.5 c 4,30,31 + 1267 628.5 1267 628.5 1267 476.5 c 4,32,33 + 1267 212.5 1267 212.5 1075 72.5 c 4,34,35 + 1039 44.5 1039 44.5 999 28.5 c 6,36,-1 + 919 4.5 l 5,37,-1 + 879 -3.5 l 5,38,-1 + 771 0.5 l 5,39,40 + 595 28.5 595 28.5 467 216.5 c 4,41,42 + 387 336.5 387 336.5 303 592.5 c 5,43,-1 + 299 596.5 l 5,44,-1 + 291 616.5 l 6,45,46 + 267 692.5 267 692.5 251 736.5 c 6,47,-1 + 163 976.5 l 5,48,-1 + 191 964.5 l 6,49,50 + 215 956.5 215 956.5 227 944.5 c 6,51,-1 + 251 900.5 l 6,52,53 + 251 904.5 251 904.5 259 884.5 c 6,54,-1 + 267 864.5 l 5,55,-1 + 331 692.5 l 5,56,-1 + 383 568.5 l 6,57,58 + 507 280.5 507 280.5 683 196.5 c 4,59,60 + 755 160.5 755 160.5 843 160.5 c 4,61,62 + 1043 160.5 1043 160.5 1147 316.5 c 4,63,64 + 1175 356.5 1175 356.5 1187 408.5 c 4,65,66 + 1199 452.5 1199 452.5 1199 492.5 c 4,67,68 + 1195 560.5 1195 560.5 1139 644.5 c 5,69,-1 + 1135 648.5 l 5,70,-1 + 1119 672.5 l 5,71,-1 + 1115 672.5 l 5,72,73 + 1079 628.5 1079 628.5 983 556.5 c 6,74,-1 + 867 476.5 l 6,75,76 + 819 444.5 819 444.5 783 440.5 c 4,77,78 + 699 432.5 699 432.5 631 544.5 c 4,79,80 + 583 632.5 583 632.5 559 796.5 c 6,81,-1 + 547 860.5 l 5,82,-1 + 539 928.5 l 5,0,1 +EndSplineSet +EndChar + +StartChar: seven +Encoding: 55 55 26 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1245 808 m 2,0,-1 + 1251 738 l 1,1,-1 + 1253 701 l 2,2,3 + 1262 530 1262 530 1166 402 c 0,4,5 + 1063 264 1063 264 896 264 c 0,6,7 + 581 264 581 264 415 711 c 0,8,9 + 361 857 361 857 328 1047 c 1,10,11 + 328 1118 328 1118 365 1122 c 0,12,13 + 389 1122 389 1122 406 1097 c 128,-1,14 + 423 1072 423 1072 423 1047 c 0,15,16 + 423 984 423 984 458 865 c 0,17,18 + 563 508 563 508 779 453 c 1,19,-1 + 844 444 l 1,20,21 + 930 444 930 444 1000 493 c 0,22,23 + 1075 545 1075 545 1091 626 c 0,24,25 + 1091 646 1091 646 1058 645 c 2,26,-1 + 1014 643 l 2,27,28 + 913 638 913 638 799 706 c 0,29,30 + 670 782 670 782 670 893 c 0,31,32 + 670 1110 670 1110 912 1110 c 0,33,34 + 1014 1110 1014 1110 1129 1013 c 0,35,36 + 1235 923 1235 923 1245 808 c 2,0,-1 +1104 710 m 1,37,-1 + 1116 805 l 1,38,39 + 1116 837 1116 837 1104 872 c 1,40,41 + 1081 998 1081 998 983 998 c 1,42,-1 + 944 993 l 2,43,44 + 920 990 920 990 896 960 c 0,45,46 + 875 934 875 934 869 907 c 1,47,48 + 869 710 869 710 1104 710 c 1,37,-1 +EndSplineSet +Fore +SplineSet +949.5 638.5 m 5,0,-1 + 849.5 634.5 l 5,1,-1 + 837.5 634.5 l 5,2,-1 + 829.5 634.5 l 6,3,4 + 805.5 634.5 805.5 634.5 785.5 634.5 c 6,5,-1 + 621.5 642.5 l 6,6,7 + 549.5 650.5 549.5 650.5 485.5 682.5 c 4,8,9 + 433.5 710.5 433.5 710.5 405.5 746.5 c 4,10,11 + 349.5 810.5 349.5 810.5 365.5 910.5 c 4,12,13 + 377.5 1010.5 377.5 1010.5 445.5 1094.5 c 4,14,15 + 541.5 1218.5 541.5 1218.5 701.5 1218.5 c 4,16,17 + 809.5 1218.5 809.5 1218.5 897.5 1146.5 c 4,18,19 + 961.5 1098.5 961.5 1098.5 1005.5 998.5 c 4,20,21 + 1053.5 886.5 1053.5 886.5 1073.5 738.5 c 6,22,-1 + 1077.5 602.5 l 5,23,-1 + 1077.5 534.5 l 5,24,-1 + 1077.5 466.5 l 5,25,-1 + 1081.5 358.5 l 5,26,-1 + 1081.5 246.5 l 5,27,28 + 1137.5 246.5 1137.5 246.5 1177.5 210.5 c 4,29,30 + 1213.5 174.5 1213.5 174.5 1177.5 18.5 c 5,31,-1 + 1217.5 110.5 l 5,32,33 + 1213.5 54.5 1213.5 54.5 1177.5 18.5 c 6,34,-1 + 1129.5 -9.5 l 5,35,-1 + 1105.5 -17.5 l 6,36,37 + 1033.5 -29.5 1033.5 -29.5 985.5 30.5 c 4,38,39 + 961.5 58.5 961.5 58.5 957.5 90.5 c 6,40,-1 + 953.5 126.5 l 5,41,-1 + 953.5 146.5 l 5,42,-1 + 953.5 166.5 l 5,43,-1 + 953.5 290.5 l 5,44,-1 + 953.5 334.5 l 5,45,-1 + 949.5 378.5 l 5,46,-1 + 949.5 638.5 l 5,0,-1 +477.5 814.5 m 6,47,48 + 485.5 762.5 485.5 762.5 537.5 750.5 c 6,49,-1 + 585.5 746.5 l 5,50,-1 + 597.5 750.5 l 5,51,-1 + 601.5 750.5 l 5,52,-1 + 629.5 750.5 l 5,53,-1 + 821.5 750.5 l 5,54,-1 + 901.5 750.5 l 5,55,-1 + 913.5 750.5 l 5,56,-1 + 949.5 754.5 l 6,57,58 + 973.5 762.5 973.5 762.5 973.5 798.5 c 6,59,-1 + 969.5 818.5 l 5,60,-1 + 957.5 874.5 l 6,61,62 + 929.5 974.5 929.5 974.5 865.5 1046.5 c 4,63,64 + 809.5 1102.5 809.5 1102.5 765.5 1110.5 c 260,65,66 + 721.5 1118.5 721.5 1118.5 661.5 1090.5 c 4,67,68 + 553.5 1038.5 553.5 1038.5 501.5 926.5 c 6,69,-1 + 477.5 858.5 l 5,70,-1 + 477.5 814.5 l 6,47,48 +EndSplineSet +EndChar + +StartChar: eight +Encoding: 56 56 27 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1219 1086 m 0,0,1 + 1109 988 1109 988 924 837 c 2,2,-1 + 667 628 l 2,3,4 + 552 534 552 534 552 434 c 0,5,6 + 552 318 552 318 719 267 c 1,7,8 + 829 283 829 283 864 308 c 0,9,10 + 886 324 886 324 962 427 c 0,11,12 + 994 471 994 471 1066 471 c 1,13,-1 + 1096 467 l 1,14,15 + 1133 457 1133 457 1199 423 c 1,16,17 + 1232 397 1232 397 1232 365 c 0,18,19 + 1232 316 1232 316 1158 248 c 0,20,21 + 1037 137 1037 137 855 137 c 0,22,23 + 797 137 797 137 732 153 c 0,24,25 + 682 165 682 165 621 196 c 0,26,27 + 379 318 379 318 349 515 c 2,28,-1 + 341 567 l 1,29,30 + 341 599 341 599 386 644 c 0,31,32 + 390 648 390 648 433 683 c 2,33,-1 + 694 896 l 1,34,-1 + 1027 1180 l 2,35,36 + 1052 1201 1052 1201 1087 1205 c 0,37,38 + 1119 1205 1119 1205 1158 1180 c 1,39,-1 + 1209 1155 l 2,40,41 + 1240 1140 1240 1140 1242 1123 c 0,42,43 + 1242 1107 1242 1107 1219 1086 c 0,0,1 +EndSplineSet +Fore +SplineSet +949 635 m 5,0,-1 + 985 691 l 5,1,2 + 1045 751 1045 751 1129 751 c 6,3,-1 + 1169 751 l 5,4,-1 + 1181 747 l 5,5,-1 + 1185 747 l 6,6,7 + 1249 747 1249 747 1285 763 c 4,8,9 + 1325 775 1325 775 1341 811 c 6,10,-1 + 1349 831 l 5,11,-1 + 1349 835 l 5,12,-1 + 1365 871 l 6,13,14 + 1385 891 1385 891 1401 855 c 6,15,-1 + 1405 851 l 5,16,-1 + 1413 807 l 5,17,-1 + 1409 759 l 5,18,-1 + 1385 679 l 5,19,20 + 1333 587 1333 587 1209 587 c 6,21,-1 + 1189 587 l 6,22,23 + 1157 591 1157 591 1141 591 c 4,24,25 + 1061 591 1061 591 1025 547 c 4,26,27 + 1009 531 1009 531 1017 491 c 6,28,-1 + 1021 483 l 5,29,-1 + 1025 463 l 6,30,31 + 1029 387 1029 387 1005 311 c 4,32,33 + 941 103 941 103 737 31 c 6,34,-1 + 665 11 l 6,35,36 + 525 -17 525 -17 445 59 c 4,37,38 + 373 131 373 131 373 347 c 6,39,-1 + 373 327 l 5,40,-1 + 373 347 l 5,41,-1 + 373 727 l 6,42,43 + 373 747 373 747 373 791 c 6,44,-1 + 373 919 l 6,45,46 + 369 943 369 943 329 959 c 5,47,-1 + 325 959 l 5,48,-1 + 297 971 l 6,49,50 + 233 1011 233 1011 237 1087 c 6,51,-1 + 241 1107 l 6,52,53 + 261 1199 261 1199 357 1211 c 4,54,55 + 365 1211 365 1211 373 1211 c 4,56,57 + 429 1211 429 1211 465 1167 c 4,58,59 + 501 1127 501 1127 501 1043 c 6,60,-1 + 501 1039 l 5,61,-1 + 501 1035 l 6,62,63 + 501 1031 501 1031 501 1023 c 6,64,-1 + 501 1019 l 5,65,-1 + 501 1015 l 5,66,-1 + 501 1007 l 5,67,-1 + 501 975 l 5,68,-1 + 501 763 l 5,69,-1 + 501 735 l 5,70,-1 + 505 643 l 5,71,-1 + 525 683 l 5,72,-1 + 529 687 l 5,73,-1 + 541 703 l 6,74,75 + 609 787 609 787 725 771 c 4,76,77 + 873 755 873 755 945 635 c 5,78,-1 + 949 635 l 5,0,-1 +921 479 m 4,79,80 + 933 547 933 547 853 575 c 4,81,82 + 777 603 777 603 693 611 c 6,83,-1 + 613 611 l 5,84,-1 + 605 611 l 6,85,86 + 609 611 609 611 593 611 c 6,87,-1 + 565 607 l 6,88,89 + 509 595 509 595 501 567 c 6,90,-1 + 501 519 l 5,91,-1 + 501 499 l 5,92,-1 + 501 467 l 5,93,-1 + 501 275 l 6,94,95 + 501 183 501 183 549 151 c 4,96,97 + 573 135 573 135 605 143 c 4,98,99 + 645 147 645 147 689 179 c 6,100,-1 + 697 183 l 6,101,102 + 793 247 793 247 865 355 c 4,103,104 + 909 423 909 423 921 479 c 4,79,80 +EndSplineSet +EndChar + +StartChar: nine +Encoding: 57 57 28 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1240 102 m 0,0,1 + 1240 -49 1240 -49 1130 -49 c 0,2,3 + 1065 -49 1065 -49 979 63 c 1,4,5 + 979 109 979 109 992 120 c 0,6,7 + 1052 153 1052 153 1052 211 c 0,8,9 + 1052 306 1052 306 911 416 c 0,10,11 + 775 522 775 522 630 643 c 0,12,13 + 461 784 461 784 434 815 c 0,14,15 + 343 919 343 919 343 1048 c 0,16,17 + 343 1170 343 1170 408 1248 c 0,18,19 + 475 1330 475 1330 596 1342 c 2,20,-1 + 635 1346 l 1,21,-1 + 685 1340 l 1,22,23 + 809 1340 809 1340 924 1227 c 0,24,25 + 1026 1127 1026 1127 1026 1006 c 0,26,27 + 1026 971 1026 971 1015 937 c 0,28,29 + 981 832 981 832 920 790.5 c 128,-1,30 + 859 749 859 749 747 749 c 0,31,32 + 728 749 728 749 708 740 c 2,33,-1 + 674 725 l 1,34,-1 + 953 494 l 2,35,36 + 1129 348 1129 348 1184.5 274.5 c 128,-1,37 + 1240 201 1240 201 1240 102 c 0,0,1 +808 937 m 0,38,39 + 847 1002 847 1002 847 1089 c 0,40,41 + 847 1138 847 1138 832 1167 c 1,42,43 + 810 1233 810 1233 726 1233 c 0,44,45 + 634 1233 634 1233 577 1136 c 0,46,47 + 533 1061 533 1061 533 961 c 0,48,49 + 533 845 533 845 596 808 c 1,50,51 + 731 808 731 808 808 937 c 0,38,39 +EndSplineSet +Fore +SplineSet +1033.5 181.5 m 5,0,1 + 1097.5 209.5 1097.5 209.5 1129.5 241.5 c 6,2,-1 + 1169.5 297.5 l 6,3,4 + 1197.5 349.5 1197.5 349.5 1197.5 409.5 c 4,5,6 + 1197.5 569.5 1197.5 569.5 1053.5 685.5 c 4,7,8 + 957.5 765.5 957.5 765.5 721.5 821.5 c 5,9,-1 + 717.5 825.5 l 5,10,11 + 597.5 853.5 597.5 853.5 537.5 873.5 c 4,12,13 + 393.5 925.5 393.5 925.5 361.5 1025.5 c 5,14,-1 + 349.5 1105.5 l 5,15,-1 + 365.5 1153.5 l 6,16,17 + 401.5 1225.5 401.5 1225.5 481.5 1225.5 c 4,18,19 + 581.5 1225.5 581.5 1225.5 609.5 1121.5 c 4,20,21 + 621.5 1073.5 621.5 1073.5 593.5 1021.5 c 5,22,-1 + 657.5 997.5 l 5,23,-1 + 721.5 977.5 l 5,24,-1 + 929.5 897.5 l 5,25,26 + 1109.5 809.5 1109.5 809.5 1201.5 661.5 c 4,27,28 + 1269.5 553.5 1269.5 553.5 1273.5 425.5 c 4,29,30 + 1281.5 229.5 1281.5 229.5 1149.5 105.5 c 4,31,32 + 1101.5 65.5 1101.5 65.5 1049.5 41.5 c 4,33,34 + 981.5 9.5 981.5 9.5 897.5 1.5 c 5,35,-1 + 897.5 85.5 l 6,36,37 + 889.5 229.5 889.5 229.5 857.5 333.5 c 4,38,39 + 821.5 429.5 821.5 429.5 757.5 481.5 c 4,40,41 + 713.5 509.5 713.5 509.5 665.5 513.5 c 4,42,43 + 537.5 521.5 537.5 521.5 469.5 409.5 c 5,44,-1 + 453.5 369.5 l 6,45,46 + 433.5 317.5 433.5 317.5 449.5 257.5 c 4,47,48 + 457.5 233.5 457.5 233.5 469.5 201.5 c 6,49,-1 + 477.5 181.5 l 5,50,51 + 517.5 233.5 517.5 233.5 561.5 253.5 c 6,52,-1 + 597.5 261.5 l 6,53,54 + 713.5 281.5 713.5 281.5 769.5 177.5 c 4,55,56 + 777.5 157.5 777.5 157.5 785.5 137.5 c 4,57,58 + 785.5 133.5 785.5 133.5 785.5 129.5 c 4,59,60 + 809.5 13.5 809.5 13.5 701.5 -46.5 c 4,61,62 + 681.5 -58.5 681.5 -58.5 661.5 -62.5 c 6,63,-1 + 593.5 -66.5 l 5,64,-1 + 525.5 -50.5 l 6,65,66 + 369.5 -2.5 369.5 -2.5 325.5 173.5 c 5,67,-1 + 317.5 249.5 l 6,68,69 + 313.5 273.5 313.5 273.5 317.5 293.5 c 4,70,71 + 337.5 417.5 337.5 417.5 409.5 497.5 c 4,72,73 + 505.5 597.5 505.5 597.5 657.5 597.5 c 4,74,75 + 753.5 601.5 753.5 601.5 833.5 557.5 c 4,76,77 + 1009.5 461.5 1009.5 461.5 1029.5 229.5 c 4,78,79 + 1033.5 225.5 1033.5 225.5 1033.5 221.5 c 6,80,-1 + 1033.5 181.5 l 5,0,1 +EndSplineSet +EndChar + +StartChar: colon +Encoding: 58 58 29 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: semicolon +Encoding: 59 59 30 +AltUni2: 00037e.ffffffff.0 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1282 1169 m 1,0,-1 + 1106 1169 l 1,1,2 + 1093 1136 1093 1136 1093 1109 c 0,3,4 + 1093 1083 1093 1083 1111 987 c 0,5,6 + 1122 929 1122 929 1122 899 c 2,7,-1 + 1122 869 l 1,8,9 + 1117 839 1117 839 1095 773 c 1,10,11 + 1077 766 1077 766 1040 767 c 2,12,-1 + 879 771 l 2,13,14 + 646 777 646 777 559 674 c 0,15,16 + 495 598 495 598 495 509 c 0,17,18 + 495 415 495 415 557.5 347.5 c 128,-1,19 + 620 280 620 280 714 280 c 1,20,-1 + 765 285 l 2,21,22 + 794 291 794 291 820 306 c 0,23,24 + 833 316 833 316 832 345 c 2,25,-1 + 830 400 l 2,26,27 + 826 521 826 521 969 544 c 1,28,29 + 1037 544 1037 544 1100.5 482 c 128,-1,30 + 1164 420 1164 420 1164 352 c 0,31,32 + 1164 317 1164 317 1149 285 c 0,33,34 + 1143 271 1143 271 1102 231 c 0,35,36 + 1065 195 1065 195 1065 182 c 1,37,-1 + 1079 151 l 1,38,39 + 1106 111 1106 111 1184 16 c 0,40,41 + 1297 -122 1297 -122 1297 -189 c 0,42,43 + 1297 -227 1297 -227 1268 -264 c 0,44,45 + 1251 -280 1251 -280 1226 -280 c 0,46,47 + 1183 -280 1183 -280 1116 -239 c 0,48,49 + 1044 -195 1044 -195 1044 -156 c 0,50,51 + 1044 -126 1044 -126 1072.5 -101 c 128,-1,52 + 1101 -76 1101 -76 1104 -60 c 0,53,54 + 1104 -16 1104 -16 1006 120 c 1,55,-1 + 988 139 l 2,56,57 + 973 151 973 151 948 155 c 1,58,-1 + 923 151 l 1,59,-1 + 863 146 l 2,60,61 + 851 145 851 145 837 145 c 0,62,63 + 697 145 697 145 534 274 c 0,64,65 + 361 411 361 411 339 609 c 1,66,67 + 339 763 339 763 447 844 c 0,68,69 + 544 918 544 918 703 916 c 2,70,-1 + 806 915 l 2,71,72 + 882 914 882 914 898 921 c 0,73,74 + 927 933 927 933 943 993 c 1,75,-1 + 943 1169 l 1,76,-1 + 286 1169 l 1,77,-1 + 286 1325 l 1,78,-1 + 1282 1325 l 1,79,-1 + 1282 1169 l 1,0,-1 +EndSplineSet +Fore +SplineSet +238.5 1436.5 m 5,0,-1 + 1038.5 1436.5 l 5,1,-1 + 1230.5 1436.5 l 5,2,-1 + 1306.5 1428.5 l 5,3,-1 + 1330.5 1396.5 l 5,4,-1 + 1362.5 1324.5 l 5,5,-1 + 490.5 1324.5 l 5,6,-1 + 490.5 748.5 l 5,7,8 + 666.5 924.5 666.5 924.5 890.5 1060.5 c 6,9,-1 + 994.5 1120.5 l 5,10,-1 + 1010.5 1128.5 l 5,11,-1 + 1046.5 1144.5 l 6,12,13 + 1058.5 1148.5 1058.5 1148.5 1078.5 1128.5 c 6,14,-1 + 1086.5 1120.5 l 5,15,-1 + 1118.5 1088.5 l 5,16,-1 + 1146.5 1056.5 l 5,17,-1 + 1174.5 1016.5 l 6,18,19 + 1182.5 996.5 1182.5 996.5 1162.5 972.5 c 6,20,-1 + 1146.5 940.5 l 5,21,-1 + 1130.5 908.5 l 6,22,23 + 1082.5 800.5 1082.5 800.5 1062.5 668.5 c 4,24,25 + 1030.5 424.5 1030.5 424.5 1114.5 208.5 c 6,26,-1 + 1146.5 132.5 l 5,27,-1 + 1150.5 120.5 l 5,28,-1 + 1182.5 56.5 l 5,29,-1 + 1114.5 92.5 l 5,30,-1 + 1074.5 144.5 l 5,31,-1 + 1018.5 252.5 l 6,32,33 + 922.5 452.5 922.5 452.5 950.5 880.5 c 5,34,-1 + 930.5 724.5 l 5,35,-1 + 950.5 880.5 l 5,36,37 + 726.5 716.5 726.5 716.5 606.5 596.5 c 6,38,-1 + 566.5 552.5 l 5,39,-1 + 526.5 508.5 l 5,40,-1 + 514.5 496.5 l 5,41,-1 + 490.5 480.5 l 5,42,-1 + 458.5 500.5 l 5,43,-1 + 446.5 516.5 l 5,44,-1 + 422.5 544.5 l 6,45,46 + 374.5 592.5 374.5 592.5 366.5 640.5 c 4,47,48 + 358.5 788.5 358.5 788.5 366.5 1096.5 c 6,49,-1 + 366.5 1324.5 l 5,50,-1 + 294.5 1328.5 l 5,51,-1 + 270.5 1364.5 l 5,52,-1 + 238.5 1436.5 l 5,0,-1 +EndSplineSet +EndChar + +StartChar: less +Encoding: 60 60 31 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: equal +Encoding: 61 61 32 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: greater +Encoding: 62 62 33 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: question +Encoding: 63 63 34 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: at +Encoding: 64 64 35 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +2722 -1200 m 1,0,-1 + 2769 -1200 l 1,1,2 + 2672 -1350 2672 -1350 2542 -1451 c 0,3,4 + 2357 -1594 2357 -1594 2105.5 -1672 c 128,-1,5 + 1854 -1750 1854 -1750 1584 -1750 c 0,6,7 + 1189 -1750 1189 -1750 863 -1597.5 c 128,-1,8 + 537 -1445 537 -1445 396 -1200 c 1,9,-1 + 450 -1200 l 1,10,11 + 537 -1322 537 -1322 687.5 -1400.5 c 128,-1,12 + 838 -1479 838 -1479 1069 -1518 c 128,-1,13 + 1300 -1557 1300 -1557 1551 -1557 c 0,14,15 + 1824 -1557 1824 -1557 2047 -1524 c 0,16,17 + 2223 -1498 2223 -1498 2329.5 -1461.5 c 128,-1,18 + 2436 -1425 2436 -1425 2534 -1362.5 c 128,-1,19 + 2632 -1300 2632 -1300 2722 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: A +Encoding: 65 65 36 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: B +Encoding: 66 66 37 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: C +Encoding: 67 67 38 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: D +Encoding: 68 68 39 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1381 1169 m 1,0,-1 + 1265 1169 l 1,1,-1 + 1265 68 l 2,2,3 + 1265 -3 1265 -3 1252 -3 c 0,4,5 + 1238 -3 1238 -3 1152 79 c 0,6,7 + 1094 134 1094 134 1081 169 c 1,8,9 + 1072 206 1072 206 1072 358 c 1,10,-1 + 965 304 l 2,11,12 + 884 263 884 263 795 263 c 0,13,14 + 696 263 696 263 632 293 c 0,15,16 + 575 319 575 319 499 394 c 0,17,18 + 383 507 383 507 383 639 c 0,19,20 + 383 696 383 696 414 731 c 2,21,-1 + 476 801 l 1,22,23 + 460 829 460 829 422 858 c 1,24,-1 + 376 885 l 2,25,26 + 354 898 354 898 345 906 c 0,27,28 + 310 929 310 929 292 981 c 1,29,30 + 280 1046 280 1046 280 1101 c 2,31,-1 + 280 1123 l 2,32,33 + 280 1169 280 1169 201 1169 c 1,34,-1 + 201 1325 l 1,35,-1 + 433 1325 l 1,36,-1 + 528 1169 l 1,37,-1 + 483 1169 l 1,38,-1 + 454 1078 l 2,39,40 + 445 1049 445 1049 445 1007 c 0,41,42 + 445 911 445 911 538 838 c 1,43,44 + 624 871 624 871 690 871 c 0,45,46 + 758 871 758 871 808 811 c 2,47,-1 + 837 776 l 2,48,49 + 858 751 858 751 858 737 c 0,50,51 + 858 711 858 711 792 711 c 0,52,53 + 686 711 686 711 616 669 c 0,54,55 + 532 618 532 618 532 519 c 0,56,57 + 532 400 532 400 658 406 c 2,58,-1 + 701 408 l 2,59,60 + 818 413 818 413 940 486 c 0,61,62 + 1045 549 1045 549 1092 622 c 1,63,-1 + 1092 1169 l 1,64,-1 + 744 1169 l 1,65,-1 + 642 1325 l 1,66,-1 + 1381 1325 l 1,67,-1 + 1381 1169 l 1,0,-1 +1224 -400 m 1,68,-1 + 264 -400 l 1,69,-1 + 264 -312 l 1,70,-1 + 1224 -312 l 1,71,-1 + 1224 -400 l 1,68,-1 +EndSplineSet +Fore +SplineSet +1091.34960938 1616.59960938 m 5,0,-1 + 1244.79980469 1473.04980469 l 5,1,-1 + 1398.25 1458.20019531 l 5,2,-1 + 1423 1418.59960938 l 5,3,-1 + 1467.54980469 1324.54980469 l 5,4,-1 + 1244.79980469 1324.54980469 l 5,5,-1 + 1244.79980469 -244.599609375 l 5,6,-1 + 1225 -234.700195312 l 6,7,8 + 1190.34960938 -214.900390625 1190.34960938 -214.900390625 1175.5 -190.150390625 c 6,9,-1 + 1170.54980469 -170.349609375 l 5,10,-1 + 1165.59960938 -150.549804688 l 5,11,-1 + 1160.65039062 -130.75 l 5,12,-1 + 1130.95019531 -31.75 l 6,13,14 + 1096.29980469 72.2001953125 1096.29980469 72.2001953125 987.400390625 186.049804688 c 4,15,16 + 819.099609375 359.299804688 819.099609375 359.299804688 581.5 473.150390625 c 5,17,-1 + 413.200195312 532.549804688 l 5,18,-1 + 378.549804688 542.450195312 l 5,19,-1 + 373.599609375 542.450195312 l 5,20,-1 + 368.650390625 542.450195312 l 5,21,-1 + 363.700195312 547.400390625 l 5,22,-1 + 314.200195312 562.25 l 5,23,-1 + 284.5 601.849609375 l 5,24,-1 + 264.700195312 626.599609375 l 5,25,-1 + 239.950195312 666.200195312 l 5,26,-1 + 190.450195312 750.349609375 l 5,27,-1 + 393.400390625 884 l 5,28,-1 + 512.200195312 948.349609375 l 5,29,-1 + 512.200195312 953.299804688 l 5,30,31 + 353.799804688 958.25 353.799804688 958.25 319.150390625 1131.5 c 5,32,-1 + 319.150390625 1136.45019531 l 5,33,-1 + 314.200195312 1200.79980469 l 5,34,-1 + 314.200195312 1210.70019531 l 5,35,-1 + 314.200195312 1225.54980469 l 5,36,37 + 338.950195312 1418.59960938 338.950195312 1418.59960938 502.299804688 1487.90039062 c 5,38,-1 + 566.650390625 1502.75 l 5,39,-1 + 606.25 1502.75 l 6,40,41 + 685.450195312 1492.84960938 685.450195312 1492.84960938 725.049804688 1463.15039062 c 4,42,43 + 804.25 1408.70019531 804.25 1408.70019531 794.349609375 1319.59960938 c 4,44,45 + 794.349609375 1275.04980469 794.349609375 1275.04980469 764.650390625 1235.45019531 c 4,46,47 + 725.049804688 1185.95019531 725.049804688 1185.95019531 650.799804688 1185.95019531 c 4,48,49 + 591.400390625 1185.95019531 591.400390625 1185.95019531 546.849609375 1230.5 c 4,50,51 + 512.200195312 1265.15039062 512.200195312 1265.15039062 512.200195312 1339.40039062 c 5,52,-1 + 457.75 1289.90039062 l 5,53,54 + 383.5 1181 383.5 1181 512.200195312 1096.84960938 c 6,55,-1 + 561.700195312 1067.15039062 l 6,56,57 + 631 1037.45019531 631 1037.45019531 675.549804688 1042.40039062 c 6,58,-1 + 734.950195312 1062.20019531 l 5,59,-1 + 779.5 1082 l 5,60,-1 + 868.599609375 1116.65039062 l 5,61,-1 + 952.75 1151.29980469 l 5,62,-1 + 997.299804688 1171.09960938 l 5,63,-1 + 1046.79980469 1185.95019531 l 5,64,-1 + 1086.40039062 1210.70019531 l 5,65,-1 + 1096.29980469 1275.04980469 l 5,66,-1 + 1091.34960938 1299.79980469 l 5,67,-1 + 1091.34960938 1334.45019531 l 5,68,-1 + 1091.34960938 1616.59960938 l 5,0,-1 +462.700195312 695.900390625 m 5,69,70 + 541.900390625 681.049804688 541.900390625 681.049804688 655.75 601.849609375 c 4,71,72 + 764.650390625 537.5 764.650390625 537.5 873.549804688 433.549804688 c 260,73,74 + 982.450195312 329.599609375 982.450195312 329.599609375 1091.34960938 186.049804688 c 5,75,-1 + 1091.34960938 1007.75 l 5,76,77 + 848.799804688 923.599609375 848.799804688 923.599609375 640.900390625 804.799804688 c 6,78,-1 + 581.5 775.099609375 l 5,79,-1 + 512.200195312 735.5 l 5,80,-1 + 462.700195312 695.900390625 l 5,69,70 +1271 -400 m 1,81,-1 + 311 -400 l 1,82,-1 + 311 -300 l 1,83,-1 + 1271 -300 l 1,84,-1 + 1271 -400 l 1,81,-1 +EndSplineSet +EndChar + +StartChar: E +Encoding: 69 69 40 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +1303 3639 m 1,0,-1 + 1303 2498 l 1,1,-1 + 1138 2498 l 1,2,-1 + 1138 3309 l 1,3,-1 + 1 3309 l 1,4,-1 + 1 3640 l 1,5,-1 + 1229 3640 l 1,6,-1 + 1229 3639 l 1,7,-1 + 1303 3639 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: F +Encoding: 70 70 41 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: G +Encoding: 71 71 42 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1397 1169 m 1,0,-1 + 1291 1169 l 1,1,-1 + 1291 59 l 2,2,3 + 1291 -1 1291 -1 1262 -2 c 0,4,5 + 1235 0 1235 0 1115 155 c 1,6,7 + 1096 193 1096 193 1096 247 c 2,8,-1 + 1096 1169 l 1,9,-1 + 625 1169 l 1,10,-1 + 686 891 l 2,11,12 + 715 760 715 760 715 660 c 0,13,14 + 715 525 715 525 650 445 c 0,15,16 + 604 389 604 389 533 389 c 1,17,18 + 432 400 432 400 340 528 c 0,19,20 + 257 643 257 643 246 750 c 1,21,22 + 246 830 246 830 300 830 c 0,23,24 + 336 830 336 830 385 797 c 0,25,26 + 419 774 419 774 442 774 c 0,27,28 + 518 773 518 773 518 979 c 0,29,30 + 518 1040 518 1040 509 1097 c 2,31,-1 + 498 1169 l 1,32,-1 + 186 1169 l 1,33,-1 + 186 1325 l 1,34,-1 + 1397 1325 l 1,35,-1 + 1397 1169 l 1,0,-1 +1209 -400 m 1,36,-1 + 249 -400 l 1,37,-1 + 249 -312 l 1,38,-1 + 1209 -312 l 1,39,-1 + 1209 -400 l 1,36,-1 +EndSplineSet +Fore +SplineSet +1097.5703125 1616.25585938 m 1,0,-1 + 1250.79882812 1472.91308594 l 1,1,-1 + 1404.02734375 1458.08496094 l 1,2,-1 + 1428.7421875 1418.54199219 l 1,3,-1 + 1473.2265625 1324.62695312 l 1,4,-1 + 1250.79882812 1324.62695312 l 1,5,-1 + 1250.79882812 -242.255859375 l 1,6,-1 + 1201.37109375 -207.65625 l 1,7,-1 + 1151.94238281 -173.055664062 l 1,8,-1 + 1137.11425781 -158.227539062 l 1,9,-1 + 1132.17089844 -158.227539062 l 1,10,-1 + 1127.22753906 -153.284179688 l 1,11,-1 + 1102.51269531 -128.5703125 l 1,12,-1 + 1097.5703125 -89.0263671875 l 1,13,-1 + 1097.5703125 -64.3134765625 l 1,14,-1 + 1097.5703125 -44.5419921875 l 1,15,-1 + 1097.5703125 123.515625 l 1,16,-1 + 1097.5703125 731.485351562 l 1,17,-1 + 1097.5703125 899.54296875 l 1,18,-1 + 1097.5703125 924.256835938 l 1,19,-1 + 1097.5703125 929.200195312 l 1,20,-1 + 1097.5703125 934.142578125 l 1,21,-1 + 1092.62890625 988.514648438 l 2,22,23 + 1087.68652344 1023.11425781 1087.68652344 1023.11425781 1033.31347656 1067.59960938 c 2,24,-1 + 1008.59863281 1092.31347656 l 1,25,-1 + 934.45703125 1161.51367188 l 1,26,-1 + 885.02734375 1206 l 1,27,28 + 667.543945312 1374.05664062 667.543945312 1374.05664062 529.143554688 1339.45507812 c 2,29,-1 + 484.65625 1324.62695312 l 1,30,-1 + 425.34375 1290.02734375 l 1,31,-1 + 400.629882812 1265.3125 l 1,32,-1 + 366.029296875 1215.88476562 l 1,33,-1 + 336.372070312 1136.79882812 l 1,34,-1 + 331.4296875 1097.25683594 l 1,35,36 + 435.228515625 1126.9140625 435.228515625 1126.9140625 543.971679688 1126.9140625 c 2,37,-1 + 662.599609375 1107.14257812 l 1,38,-1 + 741.686523438 1062.65625 l 1,39,-1 + 791.114257812 1008.28515625 l 2,40,41 + 845.485351562 924.256835938 845.485351562 924.256835938 830.657226562 825.400390625 c 0,42,43 + 815.829101562 716.657226562 815.829101562 716.657226562 736.7421875 588.143554688 c 0,44,45 + 697.200195312 514.000976562 697.200195312 514.000976562 628.000976562 439.857421875 c 2,46,-1 + 613.171875 425.028320312 l 1,47,-1 + 608.227539062 420.0859375 l 1,48,-1 + 588.45703125 405.2578125 l 1,49,-1 + 568.686523438 400.314453125 l 2,50,51 + 553.857421875 390.4296875 553.857421875 390.4296875 529.143554688 415.143554688 c 2,52,-1 + 519.2578125 420.0859375 l 1,53,-1 + 430.286132812 479.401367188 l 1,54,-1 + 430.286132812 484.34375 l 1,55,56 + 593.400390625 647.456054688 593.400390625 647.456054688 657.657226562 805.629882812 c 2,57,-1 + 667.543945312 830.342773438 l 1,58,-1 + 682.37109375 879.772460938 l 2,59,60 + 692.2578125 929.200195312 692.2578125 929.200195312 677.428710938 953.9140625 c 0,61,62 + 642.830078125 1028.05664062 642.830078125 1028.05664062 534.0859375 1008.28515625 c 2,63,-1 + 455.000976562 978.62890625 l 1,64,-1 + 450.057617188 978.62890625 l 1,65,-1 + 445.115234375 973.686523438 l 1,66,-1 + 420.400390625 963.799804688 l 1,67,-1 + 370.971679688 934.142578125 l 1,68,-1 + 341.314453125 919.314453125 l 1,69,-1 + 306.71484375 904.486328125 l 1,70,-1 + 282 894.599609375 l 1,71,-1 + 242.45703125 884.713867188 l 1,72,-1 + 193.029296875 889.65625 l 1,73,-1 + 173.2578125 919.314453125 l 1,74,-1 + 163.373046875 934.142578125 l 1,75,-1 + 133.715820312 1042.88476562 l 1,76,-1 + 128.772460938 1117.02832031 l 1,77,78 + 148.544921875 1324.62695312 148.544921875 1324.62695312 390.743164062 1423.48535156 c 0,79,80 + 450.057617188 1448.19824219 450.057617188 1448.19824219 632.942382812 1463.02636719 c 2,81,-1 + 514.314453125 1458.08496094 l 1,82,-1 + 632.942382812 1463.02636719 l 2,83,84 + 702.143554688 1453.14257812 702.143554688 1453.14257812 786.170898438 1408.65625 c 0,85,86 + 919.62890625 1344.40039062 919.62890625 1344.40039062 1097.5703125 1156.5703125 c 1,87,-1 + 1097.5703125 1616.25585938 l 1,0,-1 +1272 -400 m 1,88,-1 + 312 -400 l 1,89,-1 + 312 -300 l 1,90,-1 + 1272 -300 l 1,91,-1 + 1272 -400 l 1,88,-1 +EndSplineSet +EndChar + +StartChar: H +Encoding: 72 72 43 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: I +Encoding: 73 73 44 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: J +Encoding: 74 74 45 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: K +Encoding: 75 75 46 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: L +Encoding: 76 76 47 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-428 -824 m 1,0,-1 + -492 -902 l 1,1,-1 + -544 -960 l 1,2,3 + -566 -972 -566 -972 -578 -972 c 0,4,5 + -594 -972 -594 -972 -662 -892 c 2,6,-1 + -725 -820 l 1,7,-1 + -725 -783 l 1,8,-1 + -650 -681 l 2,9,10 + -622 -643 -622 -643 -594 -627 c 1,11,12 + -566 -627 -566 -627 -428 -783 c 1,13,-1 + -426 -804 l 1,14,-1 + -428 -824 l 1,0,-1 +-873 -824 m 1,15,-1 + -937 -902 l 1,16,-1 + -989 -960 l 1,17,18 + -1011 -972 -1011 -972 -1023 -972 c 0,19,20 + -1039 -972 -1039 -972 -1107 -892 c 2,21,-1 + -1170 -820 l 1,22,-1 + -1170 -783 l 1,23,-1 + -1095 -681 l 2,24,25 + -1067 -643 -1067 -643 -1039 -627 c 1,26,27 + -1011 -627 -1011 -627 -873 -783 c 1,28,-1 + -871 -804 l 1,29,-1 + -873 -824 l 1,15,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: M +Encoding: 77 77 48 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1394 1169 m 1,0,-1 + 1253 1169 l 1,1,-1 + 1253 56 l 1,2,3 + 1257 -4 1257 -4 1230 0 c 1,4,5 + 1205 -4 1205 -4 1137.5 68 c 128,-1,6 + 1070 140 1070 140 1062 176 c 1,7,-1 + 1062 529 l 1,8,-1 + 659 529 l 1,9,10 + 624 512 624 512 627 480 c 2,11,-1 + 631 432 l 1,12,-1 + 631 407 l 2,13,14 + 631 390 631 390 627 372 c 1,15,16 + 627 347 627 347 596 330 c 0,17,18 + 569 315 569 315 542 315 c 0,19,20 + 488 315 488 315 431 379 c 2,21,-1 + 340 482 l 1,22,23 + 251 557 251 557 251 626 c 0,24,25 + 251 712 251 712 338 712 c 2,26,-1 + 376 712 l 1,27,-1 + 405 714 l 1,28,-1 + 434 724 l 1,29,-1 + 434 1169 l 1,30,-1 + 189 1169 l 1,31,-1 + 189 1325 l 1,32,-1 + 1394 1325 l 1,33,-1 + 1394 1169 l 1,0,-1 +1068 706 m 1,34,-1 + 1068 1169 l 1,35,-1 + 618 1169 l 1,36,-1 + 618 706 l 1,37,-1 + 1068 706 l 1,34,-1 +887 1370 m 1,38,-1 + 791 1370 l 1,39,-1 + 791 2058 l 1,40,-1 + 887 2058 l 1,41,-1 + 887 1370 l 1,38,-1 +EndSplineSet +Fore +SplineSet +134 1436.5 m 1,0,-1 + 1030 1436.5 l 1,1,-1 + 1234 1436.5 l 1,2,-1 + 1318 1428.5 l 1,3,-1 + 1342 1396.5 l 1,4,-1 + 1374 1324.5 l 1,5,-1 + 1194 1324.5 l 1,6,-1 + 1194 56.5 l 1,7,-1 + 1178 64.5 l 2,8,9 + 1150 80.5 1150 80.5 1138 100.5 c 2,10,-1 + 1126 136.5 l 1,11,-1 + 1126 156.5 l 1,12,-1 + 1122 172.5 l 1,13,-1 + 1110 212.5 l 1,14,-1 + 1078 292.5 l 1,15,16 + 990 452.5 990 452.5 802 568.5 c 1,17,18 + 770 496.5 770 496.5 722 456.5 c 0,19,20 + 682 424.5 682 424.5 634 412.5 c 2,21,-1 + 550 404.5 l 1,22,23 + 410 424.5 410 424.5 362 556.5 c 0,24,25 + 342 604.5 342 604.5 350 652.5 c 0,26,27 + 354 716.5 354 716.5 390 768.5 c 0,28,29 + 406 792.5 406 792.5 454 828.5 c 0,30,31 + 502 860.5 502 860.5 554 864.5 c 0,32,33 + 602 868.5 602 868.5 666 852.5 c 1,34,-1 + 670 852.5 l 1,35,-1 + 674 848.5 l 1,36,-1 + 722 836.5 l 1,37,-1 + 726 860.5 l 1,38,-1 + 730 892.5 l 1,39,-1 + 726 952.5 l 2,40,41 + 710 1020.5 710 1020.5 626 1076.5 c 2,42,-1 + 474 1152.5 l 1,43,-1 + 398 1184.5 l 2,44,45 + 338 1212.5 338 1212.5 290 1260.5 c 2,46,-1 + 278 1276.5 l 1,47,-1 + 278 1280.5 l 1,48,-1 + 274 1288.5 l 1,49,-1 + 254 1312.5 l 1,50,-1 + 222 1324.5 l 1,51,-1 + 222 1324.5 l 1,52,-1 + 190 1332.5 l 1,53,-1 + 170 1356.5 l 1,54,-1 + 166 1364.5 l 1,55,-1 + 150 1400.5 l 1,56,-1 + 134 1436.5 l 1,0,-1 +526 1320.5 m 1,57,58 + 566 1296.5 566 1296.5 626 1232.5 c 1,59,-1 + 630 1224.5 l 1,60,-1 + 646 1208.5 l 2,61,62 + 778 1060.5 778 1060.5 834 904.5 c 2,63,-1 + 858 812.5 l 1,64,-1 + 858 800.5 l 1,65,-1 + 866 752.5 l 1,66,-1 + 886 728.5 l 1,67,-1 + 890 724.5 l 1,68,-1 + 898 716.5 l 1,69,-1 + 946 664.5 l 2,70,71 + 994 616.5 994 616.5 1042 536.5 c 2,72,-1 + 1070 492.5 l 1,73,-1 + 1070 1324.5 l 1,74,-1 + 526 1324.5 l 1,75,-1 + 526 1320.5 l 1,57,58 +844 2060 m 1,76,-1 + 844 1510 l 1,77,-1 + 744 1510 l 1,78,-1 + 744 2060 l 1,79,-1 + 844 2060 l 1,76,-1 +EndSplineSet +Kerns2: 88 190 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: N +Encoding: 78 78 49 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1093 1168 m 1,0,-1 + 1004 1168 l 1,1,-1 + 1004 75 l 2,2,3 + 1005 1 1005 1 980 0 c 0,4,5 + 954 -1 954 -1 883 73 c 2,6,-1 + 832 130 l 2,7,8 + 806 159 806 159 801 188 c 1,9,-1 + 802 639 l 1,10,-1 + 489 639 l 2,11,12 + 454 639 454 639 424 614 c 0,13,14 + 404 598 404 598 400 566 c 1,15,-1 + 404 548 l 1,16,17 + 434 455 434 455 434 401 c 0,18,19 + 434 336 434 336 402 325 c 1,20,-1 + 342 318 l 1,21,22 + 282 318 282 318 223 364 c 1,23,-1 + 158 428 l 2,24,25 + 59 525 59 525 59 634 c 0,26,27 + 59 816 59 816 324 808 c 1,28,-1 + 823 807 l 1,29,-1 + 823 1168 l 1,30,-1 + 0 1168 l 1,31,-1 + 0 1325 l 1,32,-1 + 1093 1325 l 1,33,-1 + 1093 1168 l 1,0,-1 +1582 1169 m 1,34,-1 + 1433 1169 l 1,35,-1 + 1434 20 l 2,36,37 + 1434 -6 1434 -6 1423 -6 c 0,38,39 + 1414 -6 1414 -6 1394 8 c 2,40,-1 + 1339 58 l 1,41,-1 + 1285 112 l 2,42,43 + 1262 135 1262 135 1257 166 c 1,44,-1 + 1257 1169 l 1,45,-1 + 1095 1169 l 1,46,-1 + 1095 1325 l 1,47,-1 + 1283 1325 l 1,48,-1 + 1286 1365 l 2,49,50 + 1291 1433 1291 1433 1252 1520 c 2,51,-1 + 1211 1611 l 2,52,53 + 1181 1677 1181 1677 1114.5 1721.5 c 128,-1,54 + 1048 1766 1048 1766 976 1766 c 0,55,56 + 945 1766 945 1766 917 1757 c 0,57,58 + 769 1710 769 1710 777 1492 c 2,59,-1 + 779 1439 l 2,60,61 + 781 1394 781 1394 753 1394 c 0,62,63 + 700 1393 700 1393 639 1497 c 0,64,65 + 582 1594 582 1594 582 1653 c 0,66,67 + 582 1742 582 1742 640 1828 c 0,68,69 + 727 1956 727 1956 890 1956 c 0,70,71 + 1075 1956 1075 1956 1187 1807 c 0,72,73 + 1242 1733 1242 1733 1283 1642 c 0,74,75 + 1318 1565 1318 1565 1378 1325 c 1,76,-1 + 1582 1325 l 1,77,-1 + 1582 1169 l 1,34,-1 +1299 -400 m 1,78,-1 + 339 -400 l 1,79,-1 + 339 -312 l 1,80,-1 + 1299 -312 l 1,81,-1 + 1299 -400 l 1,78,-1 +EndSplineSet +Fore +SplineSet +1322.41015625 1325.27734375 m 1,0,-1 + 1050.921875 1325.27734375 l 1,1,-1 + 1029.71191406 1325.27734375 l 1,2,-1 + 1004.25976562 1325.27734375 l 2,3,4 + 966.08203125 1325.27734375 966.08203125 1325.27734375 953.35546875 1338.00390625 c 2,5,-1 + 940.629882812 1350.73046875 l 1,6,-1 + 932.145507812 1367.69824219 l 1,7,-1 + 919.419921875 1388.90820312 l 2,8,9 + 902.452148438 1414.36035156 902.452148438 1414.36035156 906.694335938 1431.328125 c 0,10,11 + 906.694335938 1444.0546875 906.694335938 1444.0546875 915.177734375 1465.26464844 c 2,12,-1 + 919.419921875 1482.23242188 l 1,13,-1 + 923.662109375 1503.44238281 l 2,14,15 + 923.662109375 1541.62011719 923.662109375 1541.62011719 893.967773438 1567.07226562 c 0,16,17 + 860.032226562 1592.52441406 860.032226562 1592.52441406 800.64453125 1613.734375 c 0,18,19 + 783.67578125 1617.97558594 783.67578125 1617.97558594 753.982421875 1626.45996094 c 0,20,21 + 686.110351562 1643.42773438 686.110351562 1643.42773438 567.333984375 1651.91210938 c 2,22,-1 + 563.091796875 1651.91210938 l 1,23,-1 + 546.124023438 1651.91210938 l 2,24,25 + 304.330078125 1664.63769531 304.330078125 1664.63769531 206.764648438 1745.23535156 c 0,26,27 + 164.344726562 1783.4140625 164.344726562 1783.4140625 134.650390625 1821.59179688 c 0,28,29 + 117.682617188 1851.28515625 117.682617188 1851.28515625 109.198242188 1885.22265625 c 0,30,31 + 66.77734375 2042.17578125 66.77734375 2042.17578125 253.42578125 2131.2578125 c 1,32,-1 + 304.330078125 2148.22558594 l 1,33,-1 + 312.814453125 2152.46777344 l 1,34,35 + 431.58984375 2182.16210938 431.58984375 2182.16210938 571.575195312 2169.43554688 c 0,36,37 + 966.08203125 2143.984375 966.08203125 2143.984375 1233.328125 1851.28515625 c 0,38,39 + 1250.29589844 1830.07519531 1250.29589844 1830.07519531 1267.26464844 1813.10742188 c 0,40,41 + 1415.734375 1630.70214844 1415.734375 1630.70214844 1436.94433594 1444.0546875 c 1,42,-1 + 1538.75195312 1444.0546875 l 1,43,-1 + 1585.4140625 1435.5703125 l 1,44,-1 + 1610.86523438 1401.63476562 l 1,45,-1 + 1644.80175781 1325.27734375 l 1,46,-1 + 1453.91210938 1325.27734375 l 1,47,-1 + 1453.91210938 -19.435546875 l 1,48,-1 + 1369.07226562 39.9521484375 l 1,49,-1 + 1330.89453125 73.8876953125 l 1,50,-1 + 1322.41015625 171.454101562 l 1,51,-1 + 1322.41015625 404.764648438 l 1,52,-1 + 1322.41015625 1325.27734375 l 1,0,-1 +1335.13574219 1444.0546875 m 1,53,54 + 1335.13574219 1511.92578125 1335.13574219 1511.92578125 1313.92578125 1596.765625 c 0,55,56 + 1229.0859375 1893.70605469 1229.0859375 1893.70605469 881.2421875 2012.48242188 c 0,57,58 + 792.16015625 2046.41796875 792.16015625 2046.41796875 694.594726562 2059.14453125 c 0,59,60 + 686.110351562 2059.14453125 686.110351562 2059.14453125 677.625976562 2059.14453125 c 2,61,-1 + 554.607421875 2063.38574219 l 2,62,63 + 414.622070312 2059.14453125 414.622070312 2059.14453125 321.297851562 2008.24023438 c 0,64,65 + 215.248046875 1944.61035156 215.248046875 1944.61035156 211.005859375 1847.04394531 c 0,66,67 + 211.005859375 1800.38183594 211.005859375 1800.38183594 274.635742188 1783.4140625 c 2,68,-1 + 372.202148438 1766.4453125 l 1,69,-1 + 469.767578125 1762.20410156 l 2,70,71 + 495.219726562 1762.20410156 495.219726562 1762.20410156 516.4296875 1762.20410156 c 0,72,73 + 758.224609375 1749.47753906 758.224609375 1749.47753906 910.935546875 1622.21777344 c 0,74,75 + 1016.98535156 1541.62011719 1016.98535156 1541.62011719 1029.71191406 1444.0546875 c 1,76,-1 + 1335.13574219 1444.0546875 l 1,53,54 +-51 1448.5 m 1,77,-1 + 934.599609375 1448.5 l 1,78,-1 + 1159 1448.5 l 1,79,-1 + 1251.40039062 1439.70019531 l 1,80,-1 + 1277.79980469 1404.5 l 1,81,-1 + 1313 1325.29980469 l 1,82,-1 + 1115 1325.29980469 l 1,83,-1 + 1115 -69.5 l 1,84,-1 + 1093 -56.2998046875 l 2,85,86 + 1062.20019531 -38.7001953125 1062.20019531 -38.7001953125 1053.40039062 -21.099609375 c 2,87,-1 + 1044.59960938 22.900390625 l 1,88,-1 + 1044.59960938 36.099609375 l 1,89,-1 + 1040.20019531 66.900390625 l 1,90,-1 + 1005 220.900390625 l 2,91,92 + 934.599609375 454.099609375 934.599609375 454.099609375 771.799804688 621.299804688 c 0,93,94 + 648.599609375 735.700195312 648.599609375 735.700195312 516.599609375 744.5 c 1,95,96 + 565 687.299804688 565 687.299804688 578.200195312 630.099609375 c 0,97,98 + 582.599609375 590.5 582.599609375 590.5 578.200195312 550.900390625 c 0,99,100 + 560.599609375 405.700195312 560.599609375 405.700195312 415.400390625 370.5 c 1,101,-1 + 336.200195312 361.700195312 l 2,102,103 + 265.799804688 366.099609375 265.799804688 366.099609375 213 405.700195312 c 0,104,105 + 177.799804688 436.5 177.799804688 436.5 155.799804688 471.700195312 c 0,106,107 + 120.599609375 533.299804688 120.599609375 533.299804688 125 616.900390625 c 0,108,109 + 133.799804688 762.099609375 133.799804688 762.099609375 243.799804688 850.099609375 c 0,110,111 + 340.599609375 933.700195312 340.599609375 933.700195312 463.799804688 924.900390625 c 0,112,113 + 679.400390625 916.099609375 679.400390625 916.099609375 890.599609375 625.700195312 c 1,114,-1 + 877.400390625 647.700195312 l 2,115,116 + 881.799804688 634.5 881.799804688 634.5 890.599609375 625.700195312 c 2,117,-1 + 908.200195312 594.900390625 l 2,118,119 + 961 520.099609375 961 520.099609375 974.200195312 476.099609375 c 1,120,-1 + 978.599609375 476.099609375 l 1,121,-1 + 978.599609375 1325.29980469 l 1,122,-1 + 287.799804688 1325.29980469 l 1,123,-1 + 98.599609375 1325.29980469 l 1,124,-1 + 10.599609375 1329.70019531 l 1,125,-1 + -15.7998046875 1369.29980469 l 1,126,-1 + -51 1448.5 l 1,77,-1 +1273 -400 m 1,127,-1 + 313 -400 l 1,128,-1 + 313 -300 l 1,129,-1 + 1273 -300 l 1,130,-1 + 1273 -400 l 1,127,-1 +EndSplineSet +Kerns2: 88 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: O +Encoding: 79 79 50 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: P +Encoding: 80 80 51 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Q +Encoding: 81 81 52 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +271 3639 m 1,0,-1 + 271 3640 l 1,1,-1 + 1499 3640 l 1,2,-1 + 1499 3309 l 1,3,-1 + 362 3309 l 1,4,-1 + 362 2498 l 1,5,-1 + 197 2498 l 1,6,-1 + 197 3639 l 1,7,-1 + 271 3639 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: R +Encoding: 82 82 53 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +955 1489 m 2,0,1 + 1002 1433 1002 1433 1002 1399 c 0,2,3 + 1002 1382 1002 1382 985 1379 c 0,4,5 + 952 1379 952 1379 910 1433 c 2,6,-1 + 769 1613 l 2,7,8 + 739 1651 739 1651 683 1684 c 0,9,10 + 652 1698 652 1698 623 1698 c 1,11,-1 + 580 1692 l 1,12,-1 + 536 1685 l 1,13,-1 + 508 1680 l 1,14,-1 + 479 1678 l 2,15,16 + 432 1675 432 1675 358 1777 c 2,17,-1 + 324 1824 l 2,18,19 + 297 1861 297 1861 297 1877 c 0,20,21 + 296 1907 296 1907 368 1907 c 0,22,23 + 606 1907 606 1907 789 1688 c 2,24,-1 + 955 1489 l 2,0,1 +1287 1169 m 1,25,-1 + 1019 1169 l 1,26,27 + 1019 1139 1019 1139 1021 1108 c 0,28,29 + 1023 1086 1023 1086 1027 1028 c 2,30,-1 + 1036 889 l 2,31,32 + 1038 858 1038 858 1038 839 c 0,33,34 + 1038 646 1038 646 942 507 c 0,35,36 + 903 450 903 450 903 402 c 0,37,38 + 903 363 903 363 928 336 c 0,39,40 + 1003 253 1003 253 1075 204 c 2,41,-1 + 1234 95 l 2,42,43 + 1287 59 1287 59 1287 -1 c 0,44,45 + 1287 -50 1287 -50 1246 -50 c 0,46,47 + 1220 -50 1220 -50 1190 -25 c 2,48,-1 + 1013 122 l 1,49,-1 + 840 274 l 2,50,51 + 769 336 769 336 678 448 c 0,52,53 + 667 461 667 461 632 510 c 0,54,55 + 595 556 595 556 533 656 c 0,56,57 + 525 673 525 673 520 689 c 2,58,-1 + 511 747 l 1,59,60 + 511 859 511 859 597 859 c 0,61,62 + 625 859 625 859 682 833.5 c 128,-1,63 + 739 808 739 808 768 808 c 0,64,65 + 792 808 792 808 807 816 c 1,66,67 + 850 879 850 879 850 994 c 0,68,69 + 850 1061 850 1061 840 1115 c 0,70,71 + 838 1144 838 1144 830 1169 c 1,72,-1 + 452 1169 l 1,73,-1 + 452 1325 l 1,74,-1 + 1287 1325 l 1,75,-1 + 1287 1169 l 1,25,-1 +1269 -400 m 1,76,-1 + 456 -400 l 1,77,-1 + 456 -312 l 1,78,-1 + 1269 -312 l 1,79,-1 + 1269 -400 l 1,76,-1 +EndSplineSet +Fore +SplineSet +-16.9716796875 1448.24804688 m 5,0,-1 + 479.978515625 1448.24804688 l 5,1,-1 + 610.9921875 1448.24804688 l 5,2,-1 + 669.723632812 1439.21289062 l 5,3,-1 + 696.829101562 1403.0703125 l 5,4,-1 + 732.971679688 1321.75195312 l 5,5,-1 + 701.346679688 1321.75195312 l 5,6,-1 + 669.723632812 1321.75195312 l 5,7,-1 + 606.473632812 1317.234375 l 5,8,-1 + 520.637695312 1272.05664062 l 6,9,10 + 430.283203125 1213.32714844 430.283203125 1213.32714844 353.481445312 1122.97265625 c 4,11,12 + 213.43359375 946.780273438 213.43359375 946.780273438 190.844726562 707.341796875 c 5,13,-1 + 195.362304688 544.704101562 l 6,14,15 + 204.396484375 314.299804688 204.396484375 314.299804688 303.788085938 165.21484375 c 5,16,17 + 330.893554688 210.391601562 330.893554688 210.391601562 367.034179688 242.016601562 c 6,18,-1 + 430.283203125 269.123046875 l 5,19,20 + 565.814453125 305.264648438 565.814453125 305.264648438 642.6171875 187.803710938 c 4,21,22 + 692.311523438 111.002929688 692.311523438 111.002929688 665.205078125 25.1650390625 c 6,23,-1 + 656.169921875 2.5771484375 l 6,24,25 + 642.6171875 -24.529296875 642.6171875 -24.529296875 624.545898438 -42.6005859375 c 4,26,27 + 556.780273438 -119.401367188 556.780273438 -119.401367188 443.836914062 -105.848632812 c 4,28,29 + 344.446289062 -96.8125 344.446289062 -96.8125 267.645507812 -29.046875 c 4,30,31 + 199.879882812 34.2021484375 199.879882812 34.2021484375 154.703125 156.180664062 c 6,32,-1 + 136.631835938 214.911132812 l 6,33,34 + 100.489257812 359.4765625 100.489257812 359.4765625 91.4541015625 535.66796875 c 4,35,36 + 77.9013671875 811.25 77.9013671875 811.25 141.149414062 1010.02929688 c 4,37,38 + 186.327148438 1141.04296875 186.327148438 1141.04296875 303.788085938 1321.75195312 c 5,39,-1 + 123.079101562 1321.75195312 l 5,40,-1 + 46.2763671875 1330.78808594 l 5,41,-1 + 19.1708984375 1366.9296875 l 5,42,-1 + -16.9716796875 1448.24804688 l 5,0,-1 +481.461914062 1448.62304688 m 5,43,-1 + 1250.53027344 1448.62304688 l 5,44,-1 + 1463.90625 1448.62304688 l 5,45,-1 + 1548.3671875 1439.73242188 l 5,46,-1 + 1575.0390625 1404.16992188 l 5,47,-1 + 1610.60351562 1324.15429688 l 5,48,-1 + 1410.5625 1324.15429688 l 5,49,-1 + 1410.5625 -85.0185546875 l 5,50,-1 + 1392.78027344 -76.1279296875 l 6,51,52 + 1353.33886719 -56.171875 1353.33886719 -56.171875 1348.32714844 -36.119140625 c 6,53,-1 + 1343.8828125 -18.337890625 l 5,54,-1 + 1339.4375 -0.5576171875 l 5,55,-1 + 1334.99121094 17.224609375 l 5,56,-1 + 1308.3203125 106.131835938 l 6,57,58 + 1281 197 1281 197 1179.40429688 301.725585938 c 4,59,60 + 1028 457 1028 457 814.885742188 559.555664062 c 5,61,-1 + 663.745117188 612.899414062 l 5,62,-1 + 632.627929688 621.790039062 l 5,63,-1 + 628.182617188 621.790039062 l 5,64,-1 + 623.737304688 621.790039062 l 5,65,-1 + 619.291992188 626.235351562 l 5,66,-1 + 574.837890625 639.572265625 l 5,67,-1 + 548.166015625 675.133789062 l 5,68,-1 + 530.385742188 697.361328125 l 5,69,-1 + 508.159179688 732.923828125 l 5,70,-1 + 463.705078125 808.494140625 l 5,71,72 + 819.40234375 1038.25976562 819.40234375 1038.25976562 943.801757812 1088.54980469 c 6,73,-1 + 1152.73339844 1173.01269531 l 5,74,-1 + 1188.29589844 1186.34960938 l 5,75,-1 + 1206.07617188 1190.79394531 l 5,76,-1 + 1259.41992188 1213.02050781 l 6,77,78 + 1277.20214844 1220.08007812 1277.20214844 1220.08007812 1277.20214844 1275.25488281 c 6,79,-1 + 1277.20214844 1279.70019531 l 5,80,-1 + 1277.20214844 1284.14550781 l 5,81,-1 + 1277.20214844 1288.58984375 l 5,82,-1 + 1272.75585938 1297.48242188 l 5,83,-1 + 1272.75585938 1324.15429688 l 5,84,-1 + 788.190429688 1324.15429688 l 5,85,-1 + 619.268554688 1324.15429688 l 5,86,-1 + 543.698242188 1328.59960938 l 5,87,-1 + 517.025390625 1368.60742188 l 5,88,-1 + 481.461914062 1448.62304688 l 5,43,-1 +708.19921875 759.595703125 m 5,89,90 + 779.32421875 746.259765625 779.32421875 746.259765625 881.56640625 675.133789062 c 4,91,92 + 979.364257812 617.344726562 979.364257812 617.344726562 1077.16113281 523.9921875 c 260,93,94 + 1174.95996094 430.640625 1174.95996094 430.640625 1272.75585938 301.725585938 c 5,95,-1 + 1272.75585938 1039.65234375 l 5,96,97 + 1054.93554688 964.08203125 1054.93554688 964.08203125 868.232421875 857.393554688 c 6,98,-1 + 814.885742188 830.720703125 l 5,99,-1 + 752.65234375 795.159179688 l 5,100,-1 + 708.19921875 759.595703125 l 5,89,90 +837.088867188 346.178710938 m 6,101,-1 + 863.76171875 350.625 l 5,102,-1 + 894.87890625 346.178710938 l 6,103,104 + 988 333 988 333 992.67578125 221.709960938 c 4,105,106 + 997 115.002929688 997 115.002929688 890.432617188 97.2412109375 c 6,107,-1 + 863.76171875 92.7958984375 l 5,108,-1 + 832.645507812 97.2412109375 l 6,109,110 + 740 110 740 110 734.845703125 221.709960938 c 4,111,112 + 730 328 730 328 837.088867188 346.178710938 c 6,101,-1 +1273 -400 m 1,113,-1 + 313 -400 l 1,114,-1 + 313 -300 l 1,115,-1 + 1273 -300 l 1,116,-1 + 1273 -400 l 1,113,-1 +EndSplineSet +Kerns2: 79 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: S +Encoding: 83 83 54 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: T +Encoding: 84 84 55 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: U +Encoding: 85 85 56 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-406 2303 m 1,0,-1 + -470 2225 l 1,1,-1 + -522 2167 l 1,2,3 + -544 2155 -544 2155 -556 2155 c 0,4,5 + -572 2155 -572 2155 -640 2235 c 2,6,-1 + -703 2307 l 1,7,-1 + -703 2344 l 1,8,-1 + -628 2446 l 2,9,10 + -600 2484 -600 2484 -572 2500 c 1,11,12 + -544 2500 -544 2500 -406 2344 c 1,13,-1 + -404 2323 l 1,14,-1 + -406 2303 l 1,0,-1 +-889 2303 m 1,15,-1 + -953 2225 l 1,16,-1 + -1005 2167 l 1,17,18 + -1027 2155 -1027 2155 -1039 2155 c 0,19,20 + -1055 2155 -1055 2155 -1123 2235 c 2,21,-1 + -1186 2307 l 1,22,-1 + -1186 2344 l 1,23,-1 + -1111 2446 l 2,24,25 + -1083 2484 -1083 2484 -1055 2500 c 1,26,27 + -1027 2500 -1027 2500 -889 2344 c 1,28,-1 + -887 2323 l 1,29,-1 + -889 2303 l 1,15,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: V +Encoding: 86 86 57 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: W +Encoding: 87 87 58 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-46 3643 m 1,0,-1 + 1547 3643 l 1,1,-1 + 1565 3625 l 1,2,-1 + 1565 3328 l 1,3,-1 + 1547 3310 l 1,4,-1 + 917 3310 l 1,5,-1 + 917 3166 l 1,6,-1 + 899 3148 l 1,7,-1 + 602 3148 l 1,8,-1 + 584 3166 l 1,9,-1 + 584 3310 l 1,10,-1 + -46 3310 l 1,11,-1 + -64 3328 l 1,12,-1 + -64 3625 l 1,13,-1 + -46 3643 l 1,0,-1 +602 2995 m 1,14,-1 + 899 2995 l 1,15,-1 + 917 2977 l 1,16,-1 + 917 2842 l 1,17,-1 + 899 2824 l 1,18,-1 + 602 2824 l 1,19,-1 + 584 2842 l 1,20,-1 + 584 2977 l 1,21,-1 + 602 2995 l 1,14,-1 +602 2671 m 1,22,-1 + 899 2671 l 1,23,-1 + 917 2653 l 1,24,-1 + 917 2518 l 1,25,-1 + 899 2500 l 1,26,-1 + 602 2500 l 1,27,-1 + 584 2518 l 1,28,-1 + 584 2653 l 1,29,-1 + 602 2671 l 1,22,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: X +Encoding: 88 88 59 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Y +Encoding: 89 89 60 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Z +Encoding: 90 90 61 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: bracketleft +Encoding: 91 91 62 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1038 1169 m 1,0,-1 + 862 1169 l 1,1,2 + 849 1136 849 1136 849 1109 c 0,3,4 + 849 1083 849 1083 867 987 c 0,5,6 + 878 929 878 929 878 899 c 2,7,-1 + 878 869 l 1,8,9 + 873 839 873 839 851 773 c 1,10,11 + 833 766 833 766 796 767 c 2,12,-1 + 635 771 l 2,13,14 + 402 777 402 777 315 674 c 0,15,16 + 251 598 251 598 251 509 c 0,17,18 + 251 415 251 415 313.5 347.5 c 128,-1,19 + 376 280 376 280 470 280 c 1,20,-1 + 521 285 l 2,21,22 + 550 291 550 291 576 306 c 0,23,24 + 589 316 589 316 588 345 c 2,25,-1 + 586 400 l 2,26,27 + 582 521 582 521 725 544 c 1,28,29 + 793 544 793 544 856.5 482 c 128,-1,30 + 920 420 920 420 920 352 c 0,31,32 + 920 317 920 317 905 285 c 0,33,34 + 899 271 899 271 858 231 c 0,35,36 + 821 195 821 195 821 182 c 1,37,-1 + 835 151 l 1,38,39 + 862 111 862 111 940 16 c 0,40,41 + 1053 -122 1053 -122 1053 -189 c 0,42,43 + 1053 -227 1053 -227 1024 -264 c 0,44,45 + 1007 -280 1007 -280 982 -280 c 0,46,47 + 939 -280 939 -280 872 -239 c 0,48,49 + 800 -195 800 -195 800 -156 c 0,50,51 + 800 -126 800 -126 828.5 -101 c 128,-1,52 + 857 -76 857 -76 860 -60 c 0,53,54 + 860 -16 860 -16 762 120 c 1,55,-1 + 744 139 l 2,56,57 + 729 151 729 151 704 155 c 1,58,-1 + 679 151 l 1,59,-1 + 619 146 l 2,60,61 + 607 145 607 145 593 145 c 0,62,63 + 453 145 453 145 290 274 c 0,64,65 + 117 411 117 411 95 609 c 1,66,67 + 95 763 95 763 203 844 c 0,68,69 + 300 918 300 918 459 916 c 2,70,-1 + 562 915 l 2,71,72 + 638 914 638 914 654 921 c 0,73,74 + 683 933 683 933 699 993 c 1,75,-1 + 699 1169 l 1,76,-1 + 42 1169 l 1,77,-1 + 42 1325 l 1,78,-1 + 1038 1325 l 1,79,-1 + 1038 1169 l 1,0,-1 +1540 1169 m 1,80,-1 + 1384 1169 l 1,81,-1 + 1383 44 l 2,82,83 + 1383 1 1383 1 1372 -3 c 1,84,85 + 1357 -3 1357 -3 1283 66 c 2,86,-1 + 1228 117 l 2,87,88 + 1206 137 1206 137 1202 170 c 1,89,-1 + 1202 1169 l 1,90,-1 + 1042 1169 l 1,91,-1 + 1042 1325 l 1,92,-1 + 1540 1325 l 1,93,-1 + 1540 1169 l 1,80,-1 +EndSplineSet +Fore +SplineSet +331 1157 m 1,0,-1 + 348 1189 l 1,1,2 + 538 1126 538 1126 654.5 959.5 c 128,-1,3 + 771 793 771 793 771 587 c 0,4,5 + 771 344 771 344 623 170 c 128,-1,6 + 475 -4 475 -4 273 -4 c 0,7,8 + 159 -4 159 -4 90 70 c 128,-1,9 + 21 144 21 144 21 259 c 0,10,11 + 21 450 21 450 175 606 c 128,-1,12 + 329 762 329 762 481 762 c 0,13,14 + 567 762 567 762 632 700 c 1,15,16 + 616 1052 616 1052 331 1157 c 1,0,-1 +480 719 m 0,17,18 + 360 719 360 719 257.5 546.5 c 128,-1,19 + 155 374 155 374 155 206 c 0,20,21 + 155 124 155 124 195 80 c 128,-1,22 + 235 36 235 36 302 36 c 0,23,24 + 410 36 410 36 512.5 207 c 128,-1,25 + 615 378 615 378 615 552 c 0,26,27 + 615 719 615 719 480 719 c 0,17,18 +1564 742 m 1,28,-1 + 1403 183 l 1,29,-1 + 1385 108 l 2,30,31 + 1382 97 1382 97 1382 90 c 0,32,33 + 1382 77 1382 77 1391 67 c 0,34,35 + 1397 59 1397 59 1407 59 c 0,36,37 + 1418 59 1418 59 1435 73 c 0,38,39 + 1467 96 1467 96 1521 172 c 1,40,-1 + 1549 152 l 1,41,42 + 1492 66 1492 66 1432 21 c 128,-1,43 + 1372 -24 1372 -24 1320 -24 c 0,44,45 + 1285 -24 1285 -24 1267 -6.5 c 128,-1,46 + 1249 11 1249 11 1249 45 c 0,47,48 + 1249 86 1249 86 1268 152 c 2,49,-1 + 1285 214 l 1,50,51 + 1177 73 1177 73 1086 16 c 0,52,53 + 1021 -24 1021 -24 958 -24 c 0,54,55 + 898 -24 898 -24 854.5 26 c 128,-1,56 + 811 76 811 76 811 163 c 0,57,58 + 811 294 811 294 889.5 440 c 128,-1,59 + 968 586 968 586 1089 673 c 0,60,61 + 1184 742 1184 742 1268 742 c 0,62,63 + 1319 742 1319 742 1352.5 716 c 128,-1,64 + 1386 690 1386 690 1403 629 c 1,65,-1 + 1433 723 l 1,66,-1 + 1564 742 l 1,28,-1 +1270 700 m 0,67,68 + 1217 700 1217 700 1158 650 c 0,69,70 + 1074 580 1074 580 1008.5 442 c 128,-1,71 + 943 304 943 304 943 193 c 0,72,73 + 943 137 943 137 971 104.5 c 128,-1,74 + 999 72 999 72 1035 72 c 0,75,76 + 1125 72 1125 72 1230 205 c 0,77,78 + 1372 381 1372 381 1372 567 c 0,79,80 + 1372 637 1372 637 1344.5 668.5 c 128,-1,81 + 1317 700 1317 700 1270 700 c 0,67,68 +EndSplineSet +Validated: 1 +EndChar + +StartChar: backslash +Encoding: 92 92 63 +Width: 3164 +Flags: W +LayerCount: 2 +Back +SplineSet +2740 1170 m 1,0,-1 + 2472 1170 l 1,1,2 + 2472 1140 2472 1140 2474 1109 c 0,3,4 + 2476 1087 2476 1087 2480 1029 c 2,5,-1 + 2489 890 l 2,6,7 + 2491 859 2491 859 2491 840 c 0,8,9 + 2491 647 2491 647 2395 508 c 0,10,11 + 2356 451 2356 451 2356 403 c 0,12,13 + 2356 364 2356 364 2381 337 c 0,14,15 + 2456 254 2456 254 2528 205 c 2,16,-1 + 2687 96 l 2,17,18 + 2740 60 2740 60 2740 0 c 0,19,20 + 2740 -49 2740 -49 2699 -49 c 0,21,22 + 2673 -49 2673 -49 2643 -24 c 2,23,-1 + 2466 123 l 1,24,-1 + 2293 275 l 2,25,26 + 2222 337 2222 337 2131 449 c 0,27,28 + 2120 462 2120 462 2085 511 c 0,29,30 + 2048 557 2048 557 1986 657 c 0,31,32 + 1978 674 1978 674 1973 690 c 2,33,-1 + 1964 748 l 1,34,35 + 1964 860 1964 860 2050 860 c 0,36,37 + 2078 860 2078 860 2135 834.5 c 128,-1,38 + 2192 809 2192 809 2221 809 c 0,39,40 + 2245 809 2245 809 2260 817 c 1,41,42 + 2303 880 2303 880 2303 995 c 0,43,44 + 2303 1062 2303 1062 2293 1116 c 0,45,46 + 2291 1145 2291 1145 2283 1170 c 1,47,-1 + 1905 1170 l 1,48,-1 + 1905 1326 l 1,49,-1 + 2740 1326 l 1,50,-1 + 2740 1170 l 1,0,-1 +1896 1170 m 1,51,-1 + 1720 1170 l 1,52,53 + 1707 1137 1707 1137 1707 1110 c 0,54,55 + 1707 1084 1707 1084 1725 988 c 0,56,57 + 1736 930 1736 930 1736 900 c 2,58,-1 + 1736 870 l 1,59,60 + 1731 840 1731 840 1709 774 c 1,61,62 + 1691 767 1691 767 1654 768 c 2,63,-1 + 1493 772 l 2,64,65 + 1260 778 1260 778 1173 675 c 0,66,67 + 1109 599 1109 599 1109 510 c 0,68,69 + 1109 416 1109 416 1171.5 348.5 c 128,-1,70 + 1234 281 1234 281 1328 281 c 1,71,-1 + 1379 286 l 2,72,73 + 1408 292 1408 292 1434 307 c 0,74,75 + 1447 317 1447 317 1446 346 c 2,76,-1 + 1444 401 l 2,77,78 + 1440 522 1440 522 1583 545 c 1,79,80 + 1651 545 1651 545 1714.5 483 c 128,-1,81 + 1778 421 1778 421 1778 353 c 0,82,83 + 1778 318 1778 318 1763 286 c 0,84,85 + 1757 272 1757 272 1716 232 c 0,86,87 + 1679 196 1679 196 1679 183 c 1,88,-1 + 1693 152 l 1,89,90 + 1720 112 1720 112 1798 17 c 0,91,92 + 1911 -121 1911 -121 1911 -188 c 0,93,94 + 1911 -226 1911 -226 1882 -263 c 0,95,96 + 1865 -279 1865 -279 1840 -279 c 0,97,98 + 1797 -279 1797 -279 1730 -238 c 0,99,100 + 1658 -194 1658 -194 1658 -155 c 0,101,102 + 1658 -125 1658 -125 1686.5 -100 c 128,-1,103 + 1715 -75 1715 -75 1718 -59 c 0,104,105 + 1718 -15 1718 -15 1620 121 c 1,106,-1 + 1602 140 l 2,107,108 + 1587 152 1587 152 1562 156 c 1,109,-1 + 1537 152 l 1,110,-1 + 1477 147 l 2,111,112 + 1465 146 1465 146 1451 146 c 0,113,114 + 1311 146 1311 146 1148 275 c 0,115,116 + 975 412 975 412 953 610 c 1,117,118 + 953 764 953 764 1061 845 c 0,119,120 + 1158 919 1158 919 1317 917 c 2,121,-1 + 1420 916 l 2,122,123 + 1496 915 1496 915 1512 922 c 0,124,125 + 1541 934 1541 934 1557 994 c 1,126,-1 + 1557 1170 l 1,127,-1 + 900 1170 l 1,128,-1 + 900 1326 l 1,129,-1 + 1896 1326 l 1,130,-1 + 1896 1170 l 1,51,-1 +1508 1506 m 2,131,132 + 1573 1438 1573 1438 1573 1396 c 0,133,134 + 1573 1368 1573 1368 1548 1367 c 0,135,136 + 1529 1366 1529 1366 1414 1488 c 0,137,138 + 1287 1622 1287 1622 1261 1641 c 0,139,140 + 1120 1740 1120 1740 975 1740 c 0,141,142 + 860 1740 860 1740 790.5 1664.5 c 128,-1,143 + 721 1589 721 1589 721 1472 c 0,144,145 + 721 1371 721 1371 686 1371 c 0,146,147 + 646 1371 646 1371 575 1493 c 0,148,149 + 544 1546 544 1546 544 1607 c 0,150,151 + 544 1727 544 1727 639.5 1817 c 128,-1,152 + 735 1907 735 1907 856 1907 c 0,153,154 + 868 1907 868 1907 881 1906 c 2,155,-1 + 931 1902 l 2,156,157 + 1144 1885 1144 1885 1292 1731 c 2,158,-1 + 1508 1506 l 2,131,132 +892 1169 m 1,159,-1 + 742 1169 l 1,160,-1 + 742 41 l 2,161,162 + 742 5 742 5 715 1 c 0,163,164 + 697 0 697 0 629 68 c 1,165,166 + 575 116 575 116 574 155 c 2,167,-1 + 575 1169 l 1,168,-1 + 424 1169 l 1,169,-1 + 424 1325 l 1,170,-1 + 892 1325 l 1,171,-1 + 892 1169 l 1,159,-1 +2722 -1200 m 1,172,-1 + 2769 -1200 l 1,173,174 + 2672 -1350 2672 -1350 2542 -1451 c 0,175,176 + 2357 -1594 2357 -1594 2105.5 -1672 c 128,-1,177 + 1854 -1750 1854 -1750 1584 -1750 c 0,178,179 + 1189 -1750 1189 -1750 863 -1597.5 c 128,-1,180 + 537 -1445 537 -1445 396 -1200 c 1,181,-1 + 450 -1200 l 1,182,183 + 537 -1322 537 -1322 687.5 -1400.5 c 128,-1,184 + 838 -1479 838 -1479 1069 -1518 c 128,-1,185 + 1300 -1557 1300 -1557 1551 -1557 c 0,186,187 + 1824 -1557 1824 -1557 2047 -1524 c 0,188,189 + 2223 -1498 2223 -1498 2329.5 -1461.5 c 128,-1,190 + 2436 -1425 2436 -1425 2534 -1362.5 c 128,-1,191 + 2632 -1300 2632 -1300 2722 -1200 c 1,172,-1 +EndSplineSet +Fore +SplineSet +2722 -1200 m 1,0,-1 + 2769 -1200 l 1,1,2 + 2672 -1350 2672 -1350 2542 -1451 c 0,3,4 + 2357 -1594 2357 -1594 2105.5 -1672 c 128,-1,5 + 1854 -1750 1854 -1750 1584 -1750 c 0,6,7 + 1189 -1750 1189 -1750 863 -1597.5 c 128,-1,8 + 537 -1445 537 -1445 396 -1200 c 1,9,-1 + 450 -1200 l 1,10,11 + 537 -1322 537 -1322 687.5 -1400.5 c 128,-1,12 + 838 -1479 838 -1479 1069 -1518 c 128,-1,13 + 1300 -1557 1300 -1557 1551 -1557 c 0,14,15 + 1824 -1557 1824 -1557 2047 -1524 c 0,16,17 + 2223 -1498 2223 -1498 2329.5 -1461.5 c 128,-1,18 + 2436 -1425 2436 -1425 2534 -1362.5 c 128,-1,19 + 2632 -1300 2632 -1300 2722 -1200 c 1,0,-1 +1842 701 m 1,20,-1 + 2127 747 l 1,21,-1 + 2008 346 l 1,22,23 + 2153 593 2153 593 2271 691 c 0,24,25 + 2337 747 2337 747 2380 747 c 0,26,27 + 2407 747 2407 747 2422.5 731 c 128,-1,28 + 2438 715 2438 715 2438 684 c 0,29,30 + 2438 630 2438 630 2410 580 c 0,31,32 + 2390 543 2390 543 2353 543 c 0,33,34 + 2334 543 2334 543 2320.5 555.5 c 128,-1,35 + 2307 568 2307 568 2304 594 c 0,36,37 + 2302 609 2302 609 2296 614 c 0,38,39 + 2290 621 2290 621 2281 621 c 0,40,41 + 2267 621 2267 621 2254 614 c 0,42,43 + 2233 603 2233 603 2189 550 c 0,44,45 + 2120 469 2120 469 2040 340 c 0,46,47 + 2006 286 2006 286 1981 217 c 0,48,49 + 1946 123 1946 123 1941 104 c 2,50,-1 + 1915 0 l 1,51,-1 + 1789 0 l 1,52,-1 + 1941 513 l 2,53,54 + 1968 602 1968 602 1968 640 c 0,55,56 + 1968 655 1968 655 1955 665 c 0,57,58 + 1939 678 1939 678 1912 678 c 0,59,60 + 1894 678 1894 678 1848 670 c 1,61,-1 + 1842 701 l 1,20,-1 +928 1161 m 1,62,-1 + 945 1193 l 1,63,64 + 1135 1130 1135 1130 1251.5 963.5 c 128,-1,65 + 1368 797 1368 797 1368 590 c 0,66,67 + 1368 348 1368 348 1220 174 c 128,-1,68 + 1072 0 1072 0 870 0 c 0,69,70 + 756 0 756 0 687 74 c 128,-1,71 + 618 148 618 148 618 263 c 0,72,73 + 618 454 618 454 772 610 c 128,-1,74 + 926 766 926 766 1078 766 c 0,75,76 + 1164 766 1164 766 1229 703 c 1,77,78 + 1213 1056 1213 1056 928 1161 c 1,62,-1 +1077 722 m 0,79,80 + 957 722 957 722 854.5 550 c 128,-1,81 + 752 378 752 378 752 210 c 0,82,83 + 752 128 752 128 792 84 c 128,-1,84 + 832 40 832 40 898 40 c 0,85,86 + 1006 40 1006 40 1109 211 c 128,-1,87 + 1212 382 1212 382 1212 556 c 0,88,89 + 1212 722 1212 722 1077 722 c 0,79,80 +1695 1071 m 0,90,91 + 1730 1071 1730 1071 1754 1047 c 128,-1,92 + 1778 1023 1778 1023 1778 988 c 0,93,94 + 1778 955 1778 955 1753.5 930.5 c 128,-1,95 + 1729 906 1729 906 1695 906 c 256,96,97 + 1661 906 1661 906 1637 930.5 c 128,-1,98 + 1613 955 1613 955 1613 988 c 0,99,100 + 1613 1023 1613 1023 1637 1047 c 128,-1,101 + 1661 1071 1661 1071 1695 1071 c 0,90,91 +1706 743 m 1,102,-1 + 1543 165 l 2,103,104 + 1526 107 1526 107 1526 95 c 0,105,106 + 1526 82 1526 82 1534 73.5 c 128,-1,107 + 1542 65 1542 65 1553 65 c 0,108,109 + 1565 65 1565 65 1582 78 c 0,110,111 + 1629 116 1629 116 1677 184 c 1,112,-1 + 1706 165 l 1,113,114 + 1650 79 1650 79 1574 21 c 0,115,116 + 1518 -23 1518 -23 1467 -23 c 0,117,118 + 1433 -23 1433 -23 1411.5 -3 c 128,-1,119 + 1390 17 1390 17 1390 48 c 0,120,121 + 1390 78 1390 78 1411 149 c 2,122,-1 + 1518 519 l 2,123,124 + 1544 610 1544 610 1544 633 c 0,125,126 + 1544 651 1544 651 1531.5 662.5 c 128,-1,127 + 1519 674 1519 674 1496 674 c 0,128,129 + 1478 674 1478 674 1421 665 c 1,130,-1 + 1421 697 l 1,131,-1 + 1706 743 l 1,102,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bracketright +Encoding: 93 93 64 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +957 1169 m 1,0,-1 + 689 1169 l 1,1,2 + 689 1139 689 1139 691 1108 c 0,3,4 + 693 1086 693 1086 697 1028 c 2,5,-1 + 706 889 l 2,6,7 + 708 858 708 858 708 839 c 0,8,9 + 708 646 708 646 612 507 c 0,10,11 + 573 450 573 450 573 402 c 0,12,13 + 573 363 573 363 598 336 c 0,14,15 + 673 253 673 253 745 204 c 2,16,-1 + 904 95 l 2,17,18 + 957 59 957 59 957 -1 c 0,19,20 + 957 -50 957 -50 916 -50 c 0,21,22 + 890 -50 890 -50 860 -25 c 2,23,-1 + 683 122 l 1,24,-1 + 510 274 l 2,25,26 + 439 336 439 336 348 448 c 0,27,28 + 337 461 337 461 302 510 c 0,29,30 + 265 556 265 556 203 656 c 0,31,32 + 195 673 195 673 190 689 c 2,33,-1 + 181 747 l 1,34,35 + 181 859 181 859 267 859 c 0,36,37 + 295 859 295 859 352 833.5 c 128,-1,38 + 409 808 409 808 438 808 c 0,39,40 + 462 808 462 808 477 816 c 1,41,42 + 520 879 520 879 520 994 c 0,43,44 + 520 1061 520 1061 510 1115 c 0,45,46 + 508 1144 508 1144 500 1169 c 1,47,-1 + 122 1169 l 1,48,-1 + 122 1325 l 1,49,-1 + 957 1325 l 1,50,-1 + 957 1169 l 1,0,-1 +1460 1169 m 1,51,-1 + 1304 1169 l 1,52,-1 + 1303 44 l 2,53,54 + 1303 1 1303 1 1292 -3 c 1,55,56 + 1277 -3 1277 -3 1203 66 c 2,57,-1 + 1148 117 l 2,58,59 + 1126 137 1126 137 1122 170 c 1,60,-1 + 1122 1169 l 1,61,-1 + 962 1169 l 1,62,-1 + 962 1325 l 1,63,-1 + 1460 1325 l 1,64,-1 + 1460 1169 l 1,51,-1 +EndSplineSet +Fore +SplineSet +1448 742 m 1,0,-1 + 1288 183 l 1,1,-1 + 1269 108 l 2,2,3 + 1267 97 1267 97 1267 90 c 0,4,5 + 1267 77 1267 77 1275 67 c 0,6,7 + 1282 59 1282 59 1292 59 c 256,8,9 + 1302 59 1302 59 1320 73 c 0,10,11 + 1352 96 1352 96 1405 172 c 1,12,-1 + 1434 152 l 1,13,14 + 1377 66 1377 66 1316.5 21 c 128,-1,15 + 1256 -24 1256 -24 1205 -24 c 0,16,17 + 1170 -24 1170 -24 1152 -6.5 c 128,-1,18 + 1134 11 1134 11 1134 45 c 0,19,20 + 1134 86 1134 86 1152 152 c 2,21,-1 + 1170 214 l 1,22,23 + 1061 73 1061 73 971 16 c 0,24,25 + 906 -24 906 -24 843 -24 c 0,26,27 + 783 -24 783 -24 739 26 c 128,-1,28 + 695 76 695 76 695 163 c 0,29,30 + 695 294 695 294 774 440 c 128,-1,31 + 853 586 853 586 974 673 c 0,32,33 + 1069 742 1069 742 1153 742 c 0,34,35 + 1203 742 1203 742 1236.5 716 c 128,-1,36 + 1270 690 1270 690 1288 629 c 1,37,-1 + 1317 723 l 1,38,-1 + 1448 742 l 1,0,-1 +1155 700 m 0,39,40 + 1102 700 1102 700 1042 650 c 0,41,42 + 958 580 958 580 892.5 442 c 128,-1,43 + 827 304 827 304 827 193 c 0,44,45 + 827 137 827 137 855 104.5 c 128,-1,46 + 883 72 883 72 920 72 c 0,47,48 + 1009 72 1009 72 1115 205 c 0,49,50 + 1256 381 1256 381 1256 567 c 0,51,52 + 1256 637 1256 637 1229 668.5 c 128,-1,53 + 1202 700 1202 700 1155 700 c 0,39,40 +190 700 m 1,54,-1 + 474 747 l 1,55,-1 + 355 346 l 1,56,57 + 500 592 500 592 618 691 c 0,58,59 + 685 747 685 747 727 747 c 0,60,61 + 754 747 754 747 769.5 730.5 c 128,-1,62 + 785 714 785 714 785 684 c 0,63,64 + 785 629 785 629 757 580 c 0,65,66 + 737 543 737 543 700 543 c 0,67,68 + 681 543 681 543 667.5 555.5 c 128,-1,69 + 654 568 654 568 651 593 c 0,70,71 + 649 609 649 609 643 614 c 0,72,73 + 637 620 637 620 628 620 c 0,74,75 + 614 620 614 620 601 614 c 0,76,77 + 580 602 580 602 536 549 c 0,78,79 + 468 469 468 469 388 340 c 0,80,81 + 353 285 353 285 328 217 c 0,82,83 + 294 123 294 123 289 104 c 2,84,-1 + 262 0 l 1,85,-1 + 136 0 l 1,86,-1 + 289 512 l 2,87,88 + 315 601 315 601 315 639 c 0,89,90 + 315 654 315 654 303 664 c 0,91,92 + 286 677 286 677 259 677 c 0,93,94 + 242 677 242 677 195 670 c 1,95,-1 + 190 700 l 1,54,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: asciicircum +Encoding: 94 94 65 +Width: 7 +Flags: W +LayerCount: 2 +Fore +SplineSet +8925 -1200 m 1,0,-1 + 9097 -1200 l 1,1,2 + 8741 -1391 8741 -1391 8265 -1519 c 0,3,4 + 7586 -1702 7586 -1702 6664 -1801 c 128,-1,5 + 5742 -1900 5742 -1900 4752 -1900 c 0,6,7 + 3304 -1900 3304 -1900 2108.5 -1705.5 c 128,-1,8 + 913 -1511 913 -1511 396 -1200 c 1,9,-1 + 594 -1200 l 1,10,11 + 913 -1355 913 -1355 1465 -1455.5 c 128,-1,12 + 2017 -1556 2017 -1556 2864 -1605.5 c 128,-1,13 + 3711 -1655 3711 -1655 4631 -1655 c 0,14,15 + 5632 -1655 5632 -1655 6450 -1613 c 0,16,17 + 7095 -1580 7095 -1580 7485.5 -1533 c 128,-1,18 + 7876 -1486 7876 -1486 8235.5 -1407 c 128,-1,19 + 8595 -1328 8595 -1328 8925 -1200 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: underscore +Encoding: 95 95 66 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +-72 440 m 1,0,-1 + -103 451 l 1,1,-1 + 63 588 l 1,2,-1 + 1688 588 l 1,3,-1 + 1718 578 l 1,4,-1 + 1534 440 l 1,5,-1 + -72 440 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: grave +Encoding: 96 96 67 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +5823 -2000 m 1,0,-1 + 5933 -2000 l 1,1,2 + 5707 -2242 5707 -2242 5403 -2407 c 0,3,4 + 4972 -2640 4972 -2640 4385 -2766.5 c 128,-1,5 + 3798 -2893 3798 -2893 3168 -2893 c 0,6,7 + 2246 -2893 2246 -2893 1485.5 -2645 c 128,-1,8 + 725 -2397 725 -2397 396 -2000 c 1,9,-1 + 522 -2000 l 1,10,11 + 725 -2198 725 -2198 1076 -2326 c 128,-1,12 + 1427 -2454 1427 -2454 1966 -2517 c 128,-1,13 + 2505 -2580 2505 -2580 3091 -2580 c 0,14,15 + 3728 -2580 3728 -2580 4248 -2527 c 0,16,17 + 4659 -2484 4659 -2484 4907.5 -2424 c 128,-1,18 + 5156 -2364 5156 -2364 5384.5 -2263 c 128,-1,19 + 5613 -2162 5613 -2162 5823 -2000 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: a +Encoding: 97 97 68 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: b +Encoding: 98 98 69 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: c +Encoding: 99 99 70 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: d +Encoding: 100 100 71 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1381 1169 m 1,0,-1 + 1265 1169 l 1,1,-1 + 1265 68 l 2,2,3 + 1265 -3 1265 -3 1252 -3 c 0,4,5 + 1238 -3 1238 -3 1152 79 c 0,6,7 + 1094 134 1094 134 1081 169 c 1,8,9 + 1072 206 1072 206 1072 358 c 1,10,-1 + 965 304 l 2,11,12 + 884 263 884 263 795 263 c 0,13,14 + 696 263 696 263 632 293 c 0,15,16 + 575 319 575 319 499 394 c 0,17,18 + 383 507 383 507 383 639 c 0,19,20 + 383 696 383 696 414 731 c 2,21,-1 + 476 801 l 1,22,23 + 460 829 460 829 422 858 c 1,24,-1 + 376 885 l 2,25,26 + 354 898 354 898 345 906 c 0,27,28 + 310 929 310 929 292 981 c 1,29,30 + 280 1046 280 1046 280 1101 c 2,31,-1 + 280 1123 l 2,32,33 + 280 1169 280 1169 201 1169 c 1,34,-1 + 201 1325 l 1,35,-1 + 433 1325 l 1,36,-1 + 528 1169 l 1,37,-1 + 483 1169 l 1,38,-1 + 454 1078 l 2,39,40 + 445 1049 445 1049 445 1007 c 0,41,42 + 445 911 445 911 538 838 c 1,43,44 + 624 871 624 871 690 871 c 0,45,46 + 758 871 758 871 808 811 c 2,47,-1 + 837 776 l 2,48,49 + 858 751 858 751 858 737 c 0,50,51 + 858 711 858 711 792 711 c 0,52,53 + 686 711 686 711 616 669 c 0,54,55 + 532 618 532 618 532 519 c 0,56,57 + 532 400 532 400 658 406 c 2,58,-1 + 701 408 l 2,59,60 + 818 413 818 413 940 486 c 0,61,62 + 1045 549 1045 549 1092 622 c 1,63,-1 + 1092 1169 l 1,64,-1 + 744 1169 l 1,65,-1 + 642 1325 l 1,66,-1 + 1381 1325 l 1,67,-1 + 1381 1169 l 1,0,-1 +EndSplineSet +Fore +SplineSet +1091.34960938 1616.59960938 m 1,0,-1 + 1244.79980469 1473.04980469 l 1,1,-1 + 1398.25 1458.20019531 l 1,2,-1 + 1423 1418.59960938 l 1,3,-1 + 1467.54980469 1324.54980469 l 1,4,-1 + 1244.79980469 1324.54980469 l 1,5,-1 + 1244.79980469 -244.599609375 l 1,6,-1 + 1225 -234.700195312 l 2,7,8 + 1190.34960938 -214.900390625 1190.34960938 -214.900390625 1175.5 -190.150390625 c 2,9,-1 + 1170.54980469 -170.349609375 l 1,10,-1 + 1165.59960938 -150.549804688 l 1,11,-1 + 1160.65039062 -130.75 l 1,12,-1 + 1130.95019531 -31.75 l 2,13,14 + 1096.29980469 72.2001953125 1096.29980469 72.2001953125 987.400390625 186.049804688 c 0,15,16 + 819.099609375 359.299804688 819.099609375 359.299804688 581.5 473.150390625 c 1,17,-1 + 413.200195312 532.549804688 l 1,18,-1 + 378.549804688 542.450195312 l 1,19,-1 + 373.599609375 542.450195312 l 1,20,-1 + 368.650390625 542.450195312 l 1,21,-1 + 363.700195312 547.400390625 l 1,22,-1 + 314.200195312 562.25 l 1,23,-1 + 284.5 601.849609375 l 1,24,-1 + 264.700195312 626.599609375 l 1,25,-1 + 239.950195312 666.200195312 l 1,26,-1 + 190.450195312 750.349609375 l 1,27,-1 + 393.400390625 884 l 1,28,-1 + 512.200195312 948.349609375 l 1,29,-1 + 512.200195312 953.299804688 l 1,30,31 + 353.799804688 958.25 353.799804688 958.25 319.150390625 1131.5 c 1,32,-1 + 319.150390625 1136.45019531 l 1,33,-1 + 314.200195312 1200.79980469 l 1,34,-1 + 314.200195312 1210.70019531 l 1,35,-1 + 314.200195312 1225.54980469 l 1,36,37 + 338.950195312 1418.59960938 338.950195312 1418.59960938 502.299804688 1487.90039062 c 1,38,-1 + 566.650390625 1502.75 l 1,39,-1 + 606.25 1502.75 l 2,40,41 + 685.450195312 1492.84960938 685.450195312 1492.84960938 725.049804688 1463.15039062 c 0,42,43 + 804.25 1408.70019531 804.25 1408.70019531 794.349609375 1319.59960938 c 0,44,45 + 794.349609375 1275.04980469 794.349609375 1275.04980469 764.650390625 1235.45019531 c 0,46,47 + 725.049804688 1185.95019531 725.049804688 1185.95019531 650.799804688 1185.95019531 c 0,48,49 + 591.400390625 1185.95019531 591.400390625 1185.95019531 546.849609375 1230.5 c 0,50,51 + 512.200195312 1265.15039062 512.200195312 1265.15039062 512.200195312 1339.40039062 c 1,52,-1 + 457.75 1289.90039062 l 1,53,54 + 383.5 1181 383.5 1181 512.200195312 1096.84960938 c 2,55,-1 + 561.700195312 1067.15039062 l 2,56,57 + 631 1037.45019531 631 1037.45019531 675.549804688 1042.40039062 c 2,58,-1 + 734.950195312 1062.20019531 l 1,59,-1 + 779.5 1082 l 1,60,-1 + 868.599609375 1116.65039062 l 1,61,-1 + 952.75 1151.29980469 l 1,62,-1 + 997.299804688 1171.09960938 l 1,63,-1 + 1046.79980469 1185.95019531 l 1,64,-1 + 1086.40039062 1210.70019531 l 1,65,-1 + 1096.29980469 1275.04980469 l 1,66,-1 + 1091.34960938 1299.79980469 l 1,67,-1 + 1091.34960938 1334.45019531 l 1,68,-1 + 1091.34960938 1616.59960938 l 1,0,-1 +462.700195312 695.900390625 m 1,69,70 + 541.900390625 681.049804688 541.900390625 681.049804688 655.75 601.849609375 c 0,71,72 + 764.650390625 537.5 764.650390625 537.5 873.549804688 433.549804688 c 256,73,74 + 982.450195312 329.599609375 982.450195312 329.599609375 1091.34960938 186.049804688 c 1,75,-1 + 1091.34960938 1007.75 l 1,76,77 + 848.799804688 923.599609375 848.799804688 923.599609375 640.900390625 804.799804688 c 2,78,-1 + 581.5 775.099609375 l 1,79,-1 + 512.200195312 735.5 l 1,80,-1 + 462.700195312 695.900390625 l 1,69,70 +EndSplineSet +EndChar + +StartChar: e +Encoding: 101 101 72 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +28 3643 m 0,0,1 + 651 3643 651 3643 1108 3094 c 1,2,3 + 1306 2811 1306 2811 1306 2509 c 1,4,-1 + 1297 2500 l 1,5,-1 + 1153 2500 l 2,6,7 + 1137 2500 1137 2500 1108 2761 c 1,8,9 + 1003 3063 1003 3063 775 3175 c 1,10,11 + 486 3310 486 3310 10 3310 c 1,12,-1 + 1 3319 l 1,13,-1 + 1 3625 l 2,14,15 + 1 3643 1 3643 28 3643 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f +Encoding: 102 102 73 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: g +Encoding: 103 103 74 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1398 1169 m 1,0,-1 + 1292 1169 l 1,1,-1 + 1292 59 l 2,2,3 + 1292 -1 1292 -1 1263 -2 c 0,4,5 + 1236 0 1236 0 1116 155 c 1,6,7 + 1097 193 1097 193 1097 247 c 2,8,-1 + 1097 1169 l 1,9,-1 + 626 1169 l 1,10,-1 + 687 891 l 2,11,12 + 716 760 716 760 716 660 c 0,13,14 + 716 525 716 525 651 445 c 0,15,16 + 605 389 605 389 534 389 c 1,17,18 + 433 400 433 400 341 528 c 0,19,20 + 258 643 258 643 247 750 c 1,21,22 + 247 830 247 830 301 830 c 0,23,24 + 337 830 337 830 386 797 c 0,25,26 + 420 774 420 774 443 774 c 0,27,28 + 519 773 519 773 519 979 c 0,29,30 + 519 1040 519 1040 510 1097 c 2,31,-1 + 499 1169 l 1,32,-1 + 187 1169 l 1,33,-1 + 187 1325 l 1,34,-1 + 1398 1325 l 1,35,-1 + 1398 1169 l 1,0,-1 +EndSplineSet +Fore +SplineSet +1097.5703125 1616.25585938 m 5,0,-1 + 1250.79882812 1472.91308594 l 5,1,-1 + 1404.02734375 1458.08496094 l 5,2,-1 + 1428.7421875 1418.54199219 l 5,3,-1 + 1473.2265625 1324.62695312 l 5,4,-1 + 1250.79882812 1324.62695312 l 5,5,-1 + 1250.79882812 -242.255859375 l 5,6,-1 + 1201.37109375 -207.65625 l 5,7,-1 + 1151.94238281 -173.055664062 l 5,8,-1 + 1137.11425781 -158.227539062 l 5,9,-1 + 1132.17089844 -158.227539062 l 5,10,-1 + 1127.22753906 -153.284179688 l 5,11,-1 + 1102.51269531 -128.5703125 l 5,12,-1 + 1097.5703125 -89.0263671875 l 5,13,-1 + 1097.5703125 -64.3134765625 l 5,14,-1 + 1097.5703125 -44.5419921875 l 5,15,-1 + 1097.5703125 123.515625 l 5,16,-1 + 1097.5703125 731.485351562 l 5,17,-1 + 1097.5703125 899.54296875 l 5,18,-1 + 1097.5703125 924.256835938 l 5,19,-1 + 1097.5703125 929.200195312 l 5,20,-1 + 1097.5703125 934.142578125 l 5,21,-1 + 1092.62890625 988.514648438 l 6,22,23 + 1087.68652344 1023.11425781 1087.68652344 1023.11425781 1033.31347656 1067.59960938 c 6,24,-1 + 1008.59863281 1092.31347656 l 5,25,-1 + 934.45703125 1161.51367188 l 5,26,-1 + 885.02734375 1206 l 5,27,28 + 667.543945312 1374.05664062 667.543945312 1374.05664062 529.143554688 1339.45507812 c 6,29,-1 + 484.65625 1324.62695312 l 5,30,-1 + 425.34375 1290.02734375 l 5,31,-1 + 400.629882812 1265.3125 l 5,32,-1 + 366.029296875 1215.88476562 l 5,33,-1 + 336.372070312 1136.79882812 l 5,34,-1 + 331.4296875 1097.25683594 l 5,35,36 + 435.228515625 1126.9140625 435.228515625 1126.9140625 543.971679688 1126.9140625 c 6,37,-1 + 662.599609375 1107.14257812 l 5,38,-1 + 741.686523438 1062.65625 l 5,39,-1 + 791.114257812 1008.28515625 l 6,40,41 + 845.485351562 924.256835938 845.485351562 924.256835938 830.657226562 825.400390625 c 4,42,43 + 815.829101562 716.657226562 815.829101562 716.657226562 736.7421875 588.143554688 c 4,44,45 + 697.200195312 514.000976562 697.200195312 514.000976562 628.000976562 439.857421875 c 6,46,-1 + 613.171875 425.028320312 l 5,47,-1 + 608.227539062 420.0859375 l 5,48,-1 + 588.45703125 405.2578125 l 5,49,-1 + 568.686523438 400.314453125 l 6,50,51 + 553.857421875 390.4296875 553.857421875 390.4296875 529.143554688 415.143554688 c 6,52,-1 + 519.2578125 420.0859375 l 5,53,-1 + 430.286132812 479.401367188 l 5,54,-1 + 430.286132812 484.34375 l 5,55,56 + 593.400390625 647.456054688 593.400390625 647.456054688 657.657226562 805.629882812 c 6,57,-1 + 667.543945312 830.342773438 l 5,58,-1 + 682.37109375 879.772460938 l 6,59,60 + 692.2578125 929.200195312 692.2578125 929.200195312 677.428710938 953.9140625 c 4,61,62 + 642.830078125 1028.05664062 642.830078125 1028.05664062 534.0859375 1008.28515625 c 6,63,-1 + 455.000976562 978.62890625 l 5,64,-1 + 450.057617188 978.62890625 l 5,65,-1 + 445.115234375 973.686523438 l 5,66,-1 + 420.400390625 963.799804688 l 5,67,-1 + 370.971679688 934.142578125 l 5,68,-1 + 341.314453125 919.314453125 l 5,69,-1 + 306.71484375 904.486328125 l 5,70,-1 + 282 894.599609375 l 5,71,-1 + 242.45703125 884.713867188 l 5,72,-1 + 193.029296875 889.65625 l 5,73,-1 + 173.2578125 919.314453125 l 5,74,-1 + 163.373046875 934.142578125 l 5,75,-1 + 133.715820312 1042.88476562 l 5,76,-1 + 128.772460938 1117.02832031 l 5,77,78 + 148.544921875 1324.62695312 148.544921875 1324.62695312 390.743164062 1423.48535156 c 4,79,80 + 450.057617188 1448.19824219 450.057617188 1448.19824219 632.942382812 1463.02636719 c 6,81,-1 + 514.314453125 1458.08496094 l 5,82,-1 + 632.942382812 1463.02636719 l 6,83,84 + 702.143554688 1453.14257812 702.143554688 1453.14257812 786.170898438 1408.65625 c 4,85,86 + 919.62890625 1344.40039062 919.62890625 1344.40039062 1097.5703125 1156.5703125 c 5,87,-1 + 1097.5703125 1616.25585938 l 5,0,-1 +EndSplineSet +EndChar + +StartChar: h +Encoding: 104 104 75 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: i +Encoding: 105 105 76 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: j +Encoding: 106 106 77 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: k +Encoding: 107 107 78 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: l +Encoding: 108 108 79 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-643 -824 m 1,0,-1 + -707 -902 l 1,1,-1 + -759 -960 l 1,2,3 + -781 -972 -781 -972 -793 -972 c 0,4,5 + -809 -972 -809 -972 -877 -892 c 2,6,-1 + -940 -820 l 1,7,-1 + -940 -783 l 1,8,-1 + -865 -681 l 2,9,10 + -837 -643 -837 -643 -809 -627 c 1,11,12 + -781 -627 -781 -627 -643 -783 c 1,13,-1 + -641 -804 l 1,14,-1 + -643 -824 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: m +Encoding: 109 109 80 +Width: 1596 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1395 1169 m 1,0,-1 + 1254 1169 l 1,1,-1 + 1254 56 l 1,2,3 + 1258 -6 1258 -6 1231 0 c 1,4,5 + 1206 -6 1206 -6 1138.5 67 c 128,-1,6 + 1071 140 1071 140 1063 176 c 1,7,-1 + 1063 529 l 1,8,-1 + 660 529 l 1,9,10 + 625 512 625 512 628 480 c 2,11,-1 + 632 432 l 1,12,-1 + 632 407 l 2,13,14 + 632 390 632 390 628 372 c 1,15,16 + 628 347 628 347 597 330 c 0,17,18 + 570 315 570 315 543 315 c 0,19,20 + 489 315 489 315 432 379 c 2,21,-1 + 341 482 l 1,22,23 + 252 557 252 557 252 626 c 0,24,25 + 252 712 252 712 339 712 c 2,26,-1 + 377 712 l 1,27,-1 + 406 714 l 1,28,-1 + 435 724 l 1,29,-1 + 435 1169 l 1,30,-1 + 190 1169 l 1,31,-1 + 190 1325 l 1,32,-1 + 1395 1325 l 1,33,-1 + 1395 1169 l 1,0,-1 +1069 707 m 1,34,-1 + 1069 1170 l 1,35,-1 + 619 1170 l 1,36,-1 + 619 707 l 1,37,-1 + 1069 707 l 1,34,-1 +EndSplineSet +Fore +SplineSet +134 1436.5 m 5,0,-1 + 1030 1436.5 l 5,1,-1 + 1234 1436.5 l 5,2,-1 + 1318 1428.5 l 5,3,-1 + 1342 1396.5 l 5,4,-1 + 1374 1324.5 l 5,5,-1 + 1194 1324.5 l 5,6,-1 + 1194 56.5 l 5,7,-1 + 1178 64.5 l 6,8,9 + 1150 80.5 1150 80.5 1138 100.5 c 6,10,-1 + 1126 136.5 l 5,11,-1 + 1126 156.5 l 5,12,-1 + 1122 172.5 l 5,13,-1 + 1110 212.5 l 5,14,-1 + 1078 292.5 l 5,15,16 + 990 452.5 990 452.5 802 568.5 c 5,17,18 + 770 496.5 770 496.5 722 456.5 c 4,19,20 + 682 424.5 682 424.5 634 412.5 c 6,21,-1 + 550 404.5 l 5,22,23 + 410 424.5 410 424.5 362 556.5 c 4,24,25 + 342 604.5 342 604.5 350 652.5 c 4,26,27 + 354 716.5 354 716.5 390 768.5 c 4,28,29 + 406 792.5 406 792.5 454 828.5 c 4,30,31 + 502 860.5 502 860.5 554 864.5 c 4,32,33 + 602 868.5 602 868.5 666 852.5 c 5,34,-1 + 670 852.5 l 5,35,-1 + 674 848.5 l 5,36,-1 + 722 836.5 l 5,37,-1 + 726 860.5 l 5,38,-1 + 730 892.5 l 5,39,-1 + 726 952.5 l 6,40,41 + 710 1020.5 710 1020.5 626 1076.5 c 6,42,-1 + 474 1152.5 l 5,43,-1 + 398 1184.5 l 6,44,45 + 338 1212.5 338 1212.5 290 1260.5 c 6,46,-1 + 278 1276.5 l 5,47,-1 + 278 1280.5 l 5,48,-1 + 274 1288.5 l 5,49,-1 + 254 1312.5 l 5,50,-1 + 222 1324.5 l 5,51,-1 + 222 1324.5 l 5,52,-1 + 190 1332.5 l 5,53,-1 + 170 1356.5 l 5,54,-1 + 166 1364.5 l 5,55,-1 + 150 1400.5 l 5,56,-1 + 134 1436.5 l 5,0,-1 +526 1320.5 m 5,57,58 + 566 1296.5 566 1296.5 626 1232.5 c 5,59,-1 + 630 1224.5 l 5,60,-1 + 646 1208.5 l 6,61,62 + 778 1060.5 778 1060.5 834 904.5 c 6,63,-1 + 858 812.5 l 5,64,-1 + 858 800.5 l 5,65,-1 + 866 752.5 l 5,66,-1 + 886 728.5 l 5,67,-1 + 890 724.5 l 5,68,-1 + 898 716.5 l 5,69,-1 + 946 664.5 l 6,70,71 + 994 616.5 994 616.5 1042 536.5 c 6,72,-1 + 1070 492.5 l 5,73,-1 + 1070 1324.5 l 5,74,-1 + 526 1324.5 l 5,75,-1 + 526 1320.5 l 5,57,58 +EndSplineSet +EndChar + +StartChar: n +Encoding: 110 110 81 +Width: 1582 +Flags: W +LayerCount: 2 +Back +SplineSet +1101 1168 m 1,0,-1 + 1012 1168 l 1,1,-1 + 1012 75 l 2,2,3 + 1013 1 1013 1 988 0 c 0,4,5 + 962 0 962 0 891 73 c 1,6,-1 + 840 130 l 2,7,8 + 814 159 814 159 809 188 c 1,9,-1 + 810 639 l 1,10,-1 + 497 639 l 2,11,12 + 462 639 462 639 432 614 c 0,13,14 + 412 598 412 598 408 566 c 1,15,-1 + 412 548 l 1,16,17 + 442 455 442 455 442 401 c 0,18,19 + 442 336 442 336 410 325 c 1,20,-1 + 350 318 l 1,21,22 + 290 318 290 318 231 364 c 1,23,-1 + 166 428 l 2,24,25 + 67 525 67 525 67 634 c 0,26,27 + 67 816 67 816 332 808 c 1,28,-1 + 831 807 l 1,29,-1 + 831 1168 l 1,30,-1 + 8 1168 l 1,31,-1 + 8 1325 l 1,32,-1 + 1101 1325 l 1,33,-1 + 1101 1168 l 1,0,-1 +1590 1170 m 1,34,-1 + 1441 1170 l 1,35,-1 + 1442 21 l 2,36,37 + 1442 -6 1442 -6 1431 -6 c 0,38,39 + 1422 -6 1422 -6 1402 9 c 2,40,-1 + 1347 59 l 1,41,-1 + 1293 113 l 2,42,43 + 1270 136 1270 136 1265 167 c 1,44,-1 + 1265 1170 l 1,45,-1 + 1103 1170 l 1,46,-1 + 1103 1326 l 1,47,-1 + 1291 1326 l 1,48,-1 + 1294 1366 l 2,49,50 + 1299 1434 1299 1434 1260 1521 c 2,51,-1 + 1219 1612 l 2,52,53 + 1189 1678 1189 1678 1122.5 1722.5 c 128,-1,54 + 1056 1767 1056 1767 984 1767 c 0,55,56 + 953 1767 953 1767 925 1758 c 0,57,58 + 777 1711 777 1711 785 1493 c 2,59,-1 + 787 1440 l 2,60,61 + 789 1395 789 1395 761 1395 c 0,62,63 + 708 1394 708 1394 647 1498 c 0,64,65 + 590 1595 590 1595 590 1654 c 0,66,67 + 590 1743 590 1743 648 1829 c 0,68,69 + 735 1957 735 1957 898 1957 c 0,70,71 + 1083 1957 1083 1957 1195 1808 c 0,72,73 + 1250 1734 1250 1734 1291 1643 c 0,74,75 + 1326 1566 1326 1566 1386 1326 c 1,76,-1 + 1590 1326 l 1,77,-1 + 1590 1170 l 1,34,-1 +EndSplineSet +Fore +SplineSet +1322.41015625 1325.27734375 m 5,0,-1 + 1050.921875 1325.27734375 l 5,1,-1 + 1029.71191406 1325.27734375 l 5,2,-1 + 1004.25976562 1325.27734375 l 6,3,4 + 966.08203125 1325.27734375 966.08203125 1325.27734375 953.35546875 1338.00390625 c 6,5,-1 + 940.629882812 1350.73046875 l 5,6,-1 + 932.145507812 1367.69824219 l 5,7,-1 + 919.419921875 1388.90820312 l 6,8,9 + 902.452148438 1414.36035156 902.452148438 1414.36035156 906.694335938 1431.328125 c 4,10,11 + 906.694335938 1444.0546875 906.694335938 1444.0546875 915.177734375 1465.26464844 c 6,12,-1 + 919.419921875 1482.23242188 l 5,13,-1 + 923.662109375 1503.44238281 l 6,14,15 + 923.662109375 1541.62011719 923.662109375 1541.62011719 893.967773438 1567.07226562 c 4,16,17 + 860.032226562 1592.52441406 860.032226562 1592.52441406 800.64453125 1613.734375 c 4,18,19 + 783.67578125 1617.97558594 783.67578125 1617.97558594 753.982421875 1626.45996094 c 4,20,21 + 686.110351562 1643.42773438 686.110351562 1643.42773438 567.333984375 1651.91210938 c 6,22,-1 + 563.091796875 1651.91210938 l 5,23,-1 + 546.124023438 1651.91210938 l 6,24,25 + 304.330078125 1664.63769531 304.330078125 1664.63769531 206.764648438 1745.23535156 c 4,26,27 + 164.344726562 1783.4140625 164.344726562 1783.4140625 134.650390625 1821.59179688 c 4,28,29 + 117.682617188 1851.28515625 117.682617188 1851.28515625 109.198242188 1885.22265625 c 4,30,31 + 66.77734375 2042.17578125 66.77734375 2042.17578125 253.42578125 2131.2578125 c 5,32,-1 + 304.330078125 2148.22558594 l 5,33,-1 + 312.814453125 2152.46777344 l 5,34,35 + 431.58984375 2182.16210938 431.58984375 2182.16210938 571.575195312 2169.43554688 c 4,36,37 + 966.08203125 2143.984375 966.08203125 2143.984375 1233.328125 1851.28515625 c 4,38,39 + 1250.29589844 1830.07519531 1250.29589844 1830.07519531 1267.26464844 1813.10742188 c 4,40,41 + 1415.734375 1630.70214844 1415.734375 1630.70214844 1436.94433594 1444.0546875 c 5,42,-1 + 1538.75195312 1444.0546875 l 5,43,-1 + 1585.4140625 1435.5703125 l 5,44,-1 + 1610.86523438 1401.63476562 l 5,45,-1 + 1644.80175781 1325.27734375 l 5,46,-1 + 1453.91210938 1325.27734375 l 5,47,-1 + 1453.91210938 -19.435546875 l 5,48,-1 + 1369.07226562 39.9521484375 l 5,49,-1 + 1330.89453125 73.8876953125 l 5,50,-1 + 1322.41015625 171.454101562 l 5,51,-1 + 1322.41015625 404.764648438 l 5,52,-1 + 1322.41015625 1325.27734375 l 5,0,-1 +1335.13574219 1444.0546875 m 5,53,54 + 1335.13574219 1511.92578125 1335.13574219 1511.92578125 1313.92578125 1596.765625 c 4,55,56 + 1229.0859375 1893.70605469 1229.0859375 1893.70605469 881.2421875 2012.48242188 c 4,57,58 + 792.16015625 2046.41796875 792.16015625 2046.41796875 694.594726562 2059.14453125 c 4,59,60 + 686.110351562 2059.14453125 686.110351562 2059.14453125 677.625976562 2059.14453125 c 6,61,-1 + 554.607421875 2063.38574219 l 6,62,63 + 414.622070312 2059.14453125 414.622070312 2059.14453125 321.297851562 2008.24023438 c 4,64,65 + 215.248046875 1944.61035156 215.248046875 1944.61035156 211.005859375 1847.04394531 c 4,66,67 + 211.005859375 1800.38183594 211.005859375 1800.38183594 274.635742188 1783.4140625 c 6,68,-1 + 372.202148438 1766.4453125 l 5,69,-1 + 469.767578125 1762.20410156 l 6,70,71 + 495.219726562 1762.20410156 495.219726562 1762.20410156 516.4296875 1762.20410156 c 4,72,73 + 758.224609375 1749.47753906 758.224609375 1749.47753906 910.935546875 1622.21777344 c 4,74,75 + 1016.98535156 1541.62011719 1016.98535156 1541.62011719 1029.71191406 1444.0546875 c 5,76,-1 + 1335.13574219 1444.0546875 l 5,53,54 +-51 1448.5 m 5,77,-1 + 934.599609375 1448.5 l 5,78,-1 + 1159 1448.5 l 5,79,-1 + 1251.40039062 1439.70019531 l 5,80,-1 + 1277.79980469 1404.5 l 5,81,-1 + 1313 1325.29980469 l 5,82,-1 + 1115 1325.29980469 l 5,83,-1 + 1115 -69.5 l 5,84,-1 + 1093 -56.2998046875 l 6,85,86 + 1062.20019531 -38.7001953125 1062.20019531 -38.7001953125 1053.40039062 -21.099609375 c 6,87,-1 + 1044.59960938 22.900390625 l 5,88,-1 + 1044.59960938 36.099609375 l 5,89,-1 + 1040.20019531 66.900390625 l 5,90,-1 + 1005 220.900390625 l 6,91,92 + 934.599609375 454.099609375 934.599609375 454.099609375 771.799804688 621.299804688 c 4,93,94 + 648.599609375 735.700195312 648.599609375 735.700195312 516.599609375 744.5 c 5,95,96 + 565 687.299804688 565 687.299804688 578.200195312 630.099609375 c 4,97,98 + 582.599609375 590.5 582.599609375 590.5 578.200195312 550.900390625 c 4,99,100 + 560.599609375 405.700195312 560.599609375 405.700195312 415.400390625 370.5 c 5,101,-1 + 336.200195312 361.700195312 l 6,102,103 + 265.799804688 366.099609375 265.799804688 366.099609375 213 405.700195312 c 4,104,105 + 177.799804688 436.5 177.799804688 436.5 155.799804688 471.700195312 c 4,106,107 + 120.599609375 533.299804688 120.599609375 533.299804688 125 616.900390625 c 4,108,109 + 133.799804688 762.099609375 133.799804688 762.099609375 243.799804688 850.099609375 c 4,110,111 + 340.599609375 933.700195312 340.599609375 933.700195312 463.799804688 924.900390625 c 4,112,113 + 679.400390625 916.099609375 679.400390625 916.099609375 890.599609375 625.700195312 c 5,114,-1 + 877.400390625 647.700195312 l 6,115,116 + 881.799804688 634.5 881.799804688 634.5 890.599609375 625.700195312 c 6,117,-1 + 908.200195312 594.900390625 l 6,118,119 + 961 520.099609375 961 520.099609375 974.200195312 476.099609375 c 5,120,-1 + 978.599609375 476.099609375 l 5,121,-1 + 978.599609375 1325.29980469 l 5,122,-1 + 287.799804688 1325.29980469 l 5,123,-1 + 98.599609375 1325.29980469 l 5,124,-1 + 10.599609375 1329.70019531 l 5,125,-1 + -15.7998046875 1369.29980469 l 5,126,-1 + -51 1448.5 l 5,77,-1 +EndSplineSet +Kerns2: 88 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: o +Encoding: 111 111 82 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: p +Encoding: 112 112 83 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1296 1169 m 1,0,-1 + 1184 1169 l 1,1,-1 + 1184 71 l 2,2,3 + 1184 -6 1184 -6 1161 -6 c 0,4,5 + 1142 -6 1142 -6 1104 25 c 2,6,-1 + 1047 72 l 2,7,8 + 980 128 980 128 981 232 c 2,9,-1 + 982 305 l 1,10,-1 + 991 370 l 1,11,-1 + 989 404 l 2,12,13 + 987 432 987 432 981 454 c 1,14,-1 + 912 439 l 1,15,-1 + 864 436 l 1,16,-1 + 821 436 l 2,17,18 + 733 436 733 436 669 468 c 0,19,20 + 643 481 643 481 553 552 c 0,21,22 + 475 613 475 613 453 637 c 0,23,24 + 404 688 404 688 389 749 c 1,25,-1 + 389 1169 l 1,26,-1 + 286 1169 l 1,27,-1 + 286 1325 l 1,28,-1 + 1296 1325 l 1,29,-1 + 1296 1169 l 1,0,-1 +1005 716 m 1,30,-1 + 1005 1170 l 1,31,-1 + 565 1170 l 1,32,-1 + 565 689 l 1,33,34 + 571 639 571 639 601 614 c 1,35,36 + 635 592 635 592 685 592 c 1,37,-1 + 746 598 l 1,38,-1 + 807 614 l 2,39,40 + 873 631 873 631 907 648 c 0,41,42 + 960 674 960 674 1005 716 c 1,30,-1 +EndSplineSet +Fore +SplineSet +1007 1561 m 1,0,-1 + 1131 1445 l 1,1,-1 + 1255 1433 l 1,2,-1 + 1275 1401 l 1,3,-1 + 1311 1325 l 1,4,-1 + 1131 1325 l 1,5,-1 + 1131 57 l 1,6,-1 + 1051 113 l 1,7,-1 + 1011 149 l 1,8,-1 + 1007 213 l 1,9,-1 + 1007 341 l 1,10,-1 + 1007 677 l 1,11,-1 + 1007 849 l 1,12,-1 + 975 913 l 1,13,-1 + 895 1025 l 1,14,-1 + 891 1025 l 1,15,-1 + 791 925 l 1,16,-1 + 567 705 l 1,17,-1 + 483 621 l 1,18,-1 + 439 589 l 1,19,-1 + 379 601 l 1,20,-1 + 259 633 l 1,21,-1 + 299 685 l 1,22,-1 + 331 725 l 2,23,24 + 391 801 391 801 403 857 c 0,25,26 + 411 905 411 905 387 945 c 0,27,28 + 347 1001 347 1001 251 969 c 1,29,-1 + 251 969 l 1,30,-1 + 227 961 l 1,31,-1 + 155 941 l 1,32,-1 + 131 941 l 2,33,34 + 63 949 63 949 43 1005 c 2,35,-1 + 39 1057 l 1,36,-1 + 55 1129 l 2,37,38 + 111 1321 111 1321 335 1373 c 2,39,-1 + 387 1385 l 1,40,-1 + 419 1389 l 2,41,42 + 663 1405 663 1405 875 1193 c 2,43,-1 + 879 1189 l 1,44,-1 + 899 1165 l 1,45,-1 + 915 1145 l 2,46,47 + 983 1061 983 1061 1003 1001 c 1,48,-1 + 1007 1001 l 1,49,-1 + 1007 1561 l 1,0,-1 +459 841 m 1,50,-1 + 639 1017 l 1,51,-1 + 767 1145 l 1,52,-1 + 659 1213 l 2,53,54 + 579 1253 579 1253 495 1261 c 0,55,56 + 355 1273 355 1273 291 1181 c 0,57,58 + 275 1157 275 1157 267 1105 c 1,59,60 + 399 1097 399 1097 447 925 c 0,61,62 + 447 917 447 917 451 909 c 2,63,-1 + 459 841 l 1,50,-1 +EndSplineSet +EndChar + +StartChar: q +Encoding: 113 113 84 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +1501 3625 m 2,1,-1 + 1501 3319 l 1,2,-1 + 1492 3310 l 1,3,4 + 1016 3310 1016 3310 727 3175 c 1,5,6 + 499 3063 499 3063 394 2761 c 1,7,8 + 365 2500 365 2500 349 2500 c 2,9,-1 + 205 2500 l 1,10,-1 + 196 2509 l 1,11,12 + 196 2811 196 2811 394 3094 c 1,13,14 + 851 3643 851 3643 1474 3643 c 0,15,0 + 1501 3643 1501 3643 1501 3625 c 2,1,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: r +Encoding: 114 114 85 +Width: 1582 +VWidth: 575 +Flags: WO +LayerCount: 2 +Back +SplineSet +955 1488 m 2,0,1 + 1002 1432 1002 1432 1002 1398 c 0,2,3 + 1002 1381 1002 1381 985 1378 c 0,4,5 + 952 1378 952 1378 910 1432 c 2,6,-1 + 769 1612 l 2,7,8 + 739 1650 739 1650 683 1683 c 0,9,10 + 652 1697 652 1697 623 1697 c 1,11,-1 + 580 1691 l 1,12,-1 + 536 1684 l 1,13,-1 + 508 1679 l 1,14,-1 + 479 1677 l 2,15,16 + 432 1674 432 1674 358 1776 c 2,17,-1 + 324 1823 l 2,18,19 + 297 1860 297 1860 297 1876 c 0,20,21 + 296 1906 296 1906 368 1906 c 0,22,23 + 606 1906 606 1906 789 1687 c 2,24,-1 + 955 1488 l 2,0,1 +1286 1169 m 1,25,-1 + 1018 1169 l 1,26,27 + 1018 1139 1018 1139 1020 1108 c 0,28,29 + 1022 1086 1022 1086 1026 1028 c 2,30,-1 + 1035 889 l 2,31,32 + 1037 858 1037 858 1037 839 c 0,33,34 + 1037 646 1037 646 941 507 c 0,35,36 + 902 450 902 450 902 402 c 0,37,38 + 902 363 902 363 927 336 c 0,39,40 + 1002 253 1002 253 1074 204 c 2,41,-1 + 1233 95 l 2,42,43 + 1286 59 1286 59 1286 -1 c 0,44,45 + 1286 -50 1286 -50 1245 -50 c 0,46,47 + 1219 -50 1219 -50 1189 -25 c 2,48,-1 + 1012 122 l 1,49,-1 + 839 274 l 2,50,51 + 768 336 768 336 677 448 c 0,52,53 + 666 461 666 461 631 510 c 0,54,55 + 594 556 594 556 532 656 c 0,56,57 + 524 673 524 673 519 689 c 2,58,-1 + 510 747 l 1,59,60 + 510 859 510 859 596 859 c 0,61,62 + 624 859 624 859 681 833.5 c 128,-1,63 + 738 808 738 808 767 808 c 0,64,65 + 791 808 791 808 806 816 c 1,66,67 + 849 879 849 879 849 994 c 0,68,69 + 849 1061 849 1061 839 1115 c 0,70,71 + 837 1144 837 1144 829 1169 c 1,72,-1 + 451 1169 l 1,73,-1 + 451 1325 l 1,74,-1 + 1286 1325 l 1,75,-1 + 1286 1169 l 1,25,-1 +EndSplineSet +Fore +SplineSet +-16.9716796875 1448.24804688 m 1,0,-1 + 479.978515625 1448.24804688 l 1,1,-1 + 610.9921875 1448.24804688 l 1,2,-1 + 669.723632812 1439.21289062 l 1,3,-1 + 696.829101562 1403.0703125 l 1,4,-1 + 732.971679688 1321.75195312 l 1,5,-1 + 701.346679688 1321.75195312 l 1,6,-1 + 669.723632812 1321.75195312 l 1,7,-1 + 606.473632812 1317.234375 l 1,8,-1 + 520.637695312 1272.05664062 l 2,9,10 + 430.283203125 1213.32714844 430.283203125 1213.32714844 353.481445312 1122.97265625 c 0,11,12 + 213.43359375 946.780273438 213.43359375 946.780273438 190.844726562 707.341796875 c 1,13,-1 + 195.362304688 544.704101562 l 2,14,15 + 204.396484375 314.299804688 204.396484375 314.299804688 303.788085938 165.21484375 c 1,16,17 + 330.893554688 210.391601562 330.893554688 210.391601562 367.034179688 242.016601562 c 2,18,-1 + 430.283203125 269.123046875 l 1,19,20 + 565.814453125 305.264648438 565.814453125 305.264648438 642.6171875 187.803710938 c 0,21,22 + 692.311523438 111.002929688 692.311523438 111.002929688 665.205078125 25.1650390625 c 2,23,-1 + 656.169921875 2.5771484375 l 2,24,25 + 642.6171875 -24.529296875 642.6171875 -24.529296875 624.545898438 -42.6005859375 c 0,26,27 + 556.780273438 -119.401367188 556.780273438 -119.401367188 443.836914062 -105.848632812 c 0,28,29 + 344.446289062 -96.8125 344.446289062 -96.8125 267.645507812 -29.046875 c 0,30,31 + 199.879882812 34.2021484375 199.879882812 34.2021484375 154.703125 156.180664062 c 2,32,-1 + 136.631835938 214.911132812 l 2,33,34 + 100.489257812 359.4765625 100.489257812 359.4765625 91.4541015625 535.66796875 c 0,35,36 + 77.9013671875 811.25 77.9013671875 811.25 141.149414062 1010.02929688 c 0,37,38 + 186.327148438 1141.04296875 186.327148438 1141.04296875 303.788085938 1321.75195312 c 1,39,-1 + 123.079101562 1321.75195312 l 1,40,-1 + 46.2763671875 1330.78808594 l 1,41,-1 + 19.1708984375 1366.9296875 l 1,42,-1 + -16.9716796875 1448.24804688 l 1,0,-1 +481.461914062 1448.62304688 m 1,43,-1 + 1250.53027344 1448.62304688 l 1,44,-1 + 1463.90625 1448.62304688 l 1,45,-1 + 1548.3671875 1439.73242188 l 1,46,-1 + 1575.0390625 1404.16992188 l 1,47,-1 + 1610.60351562 1324.15429688 l 1,48,-1 + 1410.5625 1324.15429688 l 1,49,-1 + 1410.5625 -85.0185546875 l 1,50,-1 + 1392.78027344 -76.1279296875 l 2,51,52 + 1353.33886719 -56.171875 1353.33886719 -56.171875 1348.32714844 -36.119140625 c 2,53,-1 + 1343.8828125 -18.337890625 l 1,54,-1 + 1339.4375 -0.5576171875 l 1,55,-1 + 1334.99121094 17.224609375 l 1,56,-1 + 1308.3203125 106.131835938 l 2,57,58 + 1281 197 1281 197 1179.40429688 301.725585938 c 0,59,60 + 1028 457 1028 457 814.885742188 559.555664062 c 1,61,-1 + 663.745117188 612.899414062 l 1,62,-1 + 632.627929688 621.790039062 l 1,63,-1 + 628.182617188 621.790039062 l 1,64,-1 + 623.737304688 621.790039062 l 1,65,-1 + 619.291992188 626.235351562 l 1,66,-1 + 574.837890625 639.572265625 l 1,67,-1 + 548.166015625 675.133789062 l 1,68,-1 + 530.385742188 697.361328125 l 1,69,-1 + 508.159179688 732.923828125 l 1,70,-1 + 463.705078125 808.494140625 l 1,71,72 + 819.40234375 1038.25976562 819.40234375 1038.25976562 943.801757812 1088.54980469 c 2,73,-1 + 1152.73339844 1173.01269531 l 1,74,-1 + 1188.29589844 1186.34960938 l 1,75,-1 + 1206.07617188 1190.79394531 l 1,76,-1 + 1259.41992188 1213.02050781 l 2,77,78 + 1277.20214844 1220.08007812 1277.20214844 1220.08007812 1277.20214844 1275.25488281 c 2,79,-1 + 1277.20214844 1279.70019531 l 1,80,-1 + 1277.20214844 1284.14550781 l 1,81,-1 + 1277.20214844 1288.58984375 l 1,82,-1 + 1272.75585938 1297.48242188 l 1,83,-1 + 1272.75585938 1324.15429688 l 1,84,-1 + 788.190429688 1324.15429688 l 1,85,-1 + 619.268554688 1324.15429688 l 1,86,-1 + 543.698242188 1328.59960938 l 1,87,-1 + 517.025390625 1368.60742188 l 1,88,-1 + 481.461914062 1448.62304688 l 1,43,-1 +708.19921875 759.595703125 m 1,89,90 + 779.32421875 746.259765625 779.32421875 746.259765625 881.56640625 675.133789062 c 0,91,92 + 979.364257812 617.344726562 979.364257812 617.344726562 1077.16113281 523.9921875 c 256,93,94 + 1174.95996094 430.640625 1174.95996094 430.640625 1272.75585938 301.725585938 c 1,95,-1 + 1272.75585938 1039.65234375 l 1,96,97 + 1054.93554688 964.08203125 1054.93554688 964.08203125 868.232421875 857.393554688 c 2,98,-1 + 814.885742188 830.720703125 l 1,99,-1 + 752.65234375 795.159179688 l 1,100,-1 + 708.19921875 759.595703125 l 1,89,90 +837.088867188 346.178710938 m 2,101,-1 + 863.76171875 350.625 l 1,102,-1 + 894.87890625 346.178710938 l 2,103,104 + 988 333 988 333 992.67578125 221.709960938 c 0,105,106 + 997 115.002929688 997 115.002929688 890.432617188 97.2412109375 c 2,107,-1 + 863.76171875 92.7958984375 l 1,108,-1 + 832.645507812 97.2412109375 l 2,109,110 + 740 110 740 110 734.845703125 221.709960938 c 0,111,112 + 730 328 730 328 837.088867188 346.178710938 c 2,101,-1 +EndSplineSet +Kerns2: 79 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" +EndChar + +StartChar: s +Encoding: 115 115 86 +Width: 1582 +VWidth: 575 +Flags: W +LayerCount: 2 +Back +SplineSet +1428 1170 m 1,0,-1 + 1321 1170 l 1,1,-1 + 1322 54 l 2,2,3 + 1322 37 1322 37 1318 22 c 1,4,5 + 1318 6 1318 6 1305 4 c 0,6,7 + 1284 4 1284 4 1242 52 c 1,8,9 + 1205 85 1205 85 1193 99 c 0,10,11 + 1140 157 1140 157 1141 257 c 2,12,-1 + 1144 582 l 1,13,14 + 1066 559 1066 559 1009 561 c 2,15,-1 + 930 564 l 2,16,17 + 837 568 837 568 796 586 c 0,18,19 + 774 596 774 596 716 651 c 0,20,21 + 695 671 695 671 673 680 c 1,22,-1 + 623 688 l 1,23,24 + 610 645 610 645 589 609 c 2,25,-1 + 523 494 l 1,26,-1 + 502 454 l 1,27,-1 + 496 420 l 1,28,29 + 496 370 496 370 599 272 c 1,30,-1 + 716 181 l 2,31,32 + 821 99 821 99 830 24 c 0,33,34 + 830 -3 830 -3 800 -3 c 0,35,36 + 756 -3 756 -3 713 36 c 0,37,38 + 597 140 597 140 530 222 c 2,39,-1 + 375 411 l 2,40,41 + 205 618 205 618 205 756 c 0,42,43 + 205 866 205 866 276 866 c 1,44,45 + 316 861 316 861 348 841 c 1,46,47 + 386 824 386 824 409 816 c 1,48,49 + 441 816 441 816 468 864 c 0,50,51 + 482 897 482 897 485 920 c 2,52,-1 + 485 1170 l 1,53,-1 + 154 1170 l 1,54,-1 + 154 1325 l 1,55,-1 + 1428 1325 l 1,56,-1 + 1428 1170 l 1,0,-1 +1144 1170 m 1,57,-1 + 652 1170 l 1,58,-1 + 652 756 l 1,59,60 + 675 733 675 733 742 731 c 2,61,-1 + 883 727 l 2,62,63 + 1049 722 1049 722 1144 781 c 1,64,-1 + 1144 1170 l 1,57,-1 +EndSplineSet +Fore +SplineSet +58 1437.5 m 1,0,-1 + 1078 1437.5 l 1,1,-1 + 1306 1437.5 l 1,2,-1 + 1394 1429.5 l 1,3,-1 + 1418 1397.5 l 1,4,-1 + 1450 1325.5 l 1,5,-1 + 1270 1325.5 l 1,6,-1 + 1270 57.5 l 1,7,-1 + 1230 85.5 l 1,8,-1 + 1190 113.5 l 1,9,-1 + 1178 125.5 l 1,10,-1 + 1174 125.5 l 1,11,-1 + 1150 149.5 l 1,12,-1 + 1146 173.5 l 1,13,-1 + 1146 189.5 l 1,14,-1 + 1146 201.5 l 1,15,-1 + 1146 293.5 l 1,16,-1 + 1146 621.5 l 1,17,-1 + 1146 709.5 l 1,18,-1 + 1142 765.5 l 1,19,20 + 1122 817.5 1122 817.5 1086 845.5 c 2,21,-1 + 1078 853.5 l 1,22,-1 + 1070 857.5 l 1,23,-1 + 1026 881.5 l 1,24,-1 + 982 889.5 l 1,25,-1 + 938 881.5 l 2,26,27 + 906 877.5 906 877.5 866 833.5 c 0,28,29 + 806 773.5 806 773.5 726 665.5 c 2,30,-1 + 714 649.5 l 1,31,-1 + 630 545.5 l 1,32,-1 + 606 517.5 l 2,33,34 + 546 457.5 546 457.5 498 457.5 c 2,35,-1 + 470 465.5 l 1,36,-1 + 442 485.5 l 1,37,-1 + 430 493.5 l 1,38,-1 + 310 609.5 l 1,39,-1 + 274 645.5 l 2,40,41 + 226 697.5 226 697.5 206 745.5 c 1,42,-1 + 266 773.5 l 1,43,44 + 306 721.5 306 721.5 366 677.5 c 2,45,-1 + 382 665.5 l 1,46,-1 + 422 645.5 l 1,47,-1 + 470 661.5 l 2,48,49 + 506 677.5 506 677.5 554 725.5 c 2,50,-1 + 646 821.5 l 1,51,-1 + 658 837.5 l 1,52,-1 + 682 873.5 l 1,53,-1 + 686 893.5 l 1,54,-1 + 682 917.5 l 1,55,-1 + 654 1013.5 l 1,56,57 + 586 1149.5 586 1149.5 446 1189.5 c 1,58,-1 + 382 1197.5 l 1,59,-1 + 294 1213.5 l 2,60,61 + 238 1233.5 238 1233.5 202 1273.5 c 2,62,-1 + 190 1293.5 l 1,63,-1 + 174 1313.5 l 1,64,-1 + 146 1325.5 l 1,65,-1 + 142 1325.5 l 1,66,-1 + 126 1329.5 l 1,67,-1 + 114 1333.5 l 1,68,-1 + 94 1357.5 l 1,69,-1 + 90 1365.5 l 1,70,-1 + 74 1401.5 l 1,71,-1 + 58 1437.5 l 1,0,-1 +590 1325.5 m 1,72,73 + 682 1205.5 682 1205.5 726 1065.5 c 2,74,-1 + 734 1029.5 l 1,75,-1 + 742 977.5 l 1,76,-1 + 750 933.5 l 1,77,-1 + 790 981.5 l 1,78,-1 + 794 985.5 l 1,79,-1 + 810 1001.5 l 2,80,81 + 914 1097.5 914 1097.5 1002 1069.5 c 2,82,-1 + 1042 1049.5 l 2,83,84 + 1066 1033.5 1066 1033.5 1094 1001.5 c 2,85,-1 + 1142 921.5 l 1,86,-1 + 1146 921.5 l 1,87,-1 + 1146 1325.5 l 1,88,-1 + 590 1325.5 l 1,72,73 +EndSplineSet +EndChar + +StartChar: t +Encoding: 116 116 87 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: u +Encoding: 117 117 88 +Width: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +-643 2303 m 1,0,-1 + -707 2225 l 1,1,-1 + -759 2167 l 1,2,3 + -781 2155 -781 2155 -793 2155 c 0,4,5 + -809 2155 -809 2155 -877 2235 c 2,6,-1 + -940 2307 l 1,7,-1 + -940 2344 l 1,8,-1 + -865 2446 l 2,9,10 + -837 2484 -837 2484 -809 2500 c 1,11,12 + -781 2500 -781 2500 -643 2344 c 1,13,-1 + -641 2323 l 1,14,-1 + -643 2303 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: v +Encoding: 118 118 89 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: w +Encoding: 119 119 90 +Width: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +-43 3643 m 1,0,-1 + 1550 3643 l 1,1,-1 + 1568 3625 l 1,2,-1 + 1568 3328 l 1,3,-1 + 1550 3310 l 1,4,-1 + -43 3310 l 1,5,-1 + -61 3328 l 1,6,-1 + -61 3625 l 1,7,-1 + -43 3643 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: x +Encoding: 120 120 91 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +341 892 m 1,0,-1 + 425 972 l 1,1,-1 + 792 605 l 1,2,-1 + 1158 972 l 1,3,-1 + 1242 892 l 1,4,-1 + 871 523 l 1,5,-1 + 1242 155 l 1,6,-1 + 1158 75 l 1,7,-1 + 792 441 l 1,8,-1 + 425 75 l 1,9,-1 + 341 155 l 1,10,-1 + 710 523 l 1,11,-1 + 341 892 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: y +Encoding: 121 121 92 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: z +Encoding: 122 122 93 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: braceleft +Encoding: 123 123 94 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: bar +Encoding: 124 124 95 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +879 -3 m 1,0,-1 + 703 184 l 1,1,-1 + 703 1397 l 1,2,-1 + 879 1231 l 1,3,-1 + 879 -3 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: braceright +Encoding: 125 125 96 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: asciitilde +Encoding: 126 126 97 +Width: 8 +Flags: W +LayerCount: 2 +Fore +SplineSet +12022 -2000 m 1,0,-1 + 12258 -2000 l 1,1,2 + 11773 -2273 11773 -2273 11123 -2456 c 0,3,4 + 10198 -2717 10198 -2717 8941.5 -2858.5 c 128,-1,5 + 7685 -3000 7685 -3000 6333 -3000 c 0,6,7 + 4356 -3000 4356 -3000 2727 -2722.5 c 128,-1,8 + 1098 -2445 1098 -2445 396 -2000 c 1,9,-1 + 664 -2000 l 1,10,11 + 1098 -2222 1098 -2222 1850.5 -2365.5 c 128,-1,12 + 2603 -2509 2603 -2509 3757 -2579.5 c 128,-1,13 + 4911 -2650 4911 -2650 6168 -2650 c 0,14,15 + 7532 -2650 7532 -2650 8648 -2590 c 0,16,17 + 9528 -2543 9528 -2543 10060.5 -2476 c 128,-1,18 + 10593 -2409 10593 -2409 11084.5 -2295.5 c 128,-1,19 + 11576 -2182 11576 -2182 12022 -2000 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: Adieresis +Encoding: 196 196 98 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Aring +Encoding: 197 197 99 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ccedilla +Encoding: 199 199 100 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eacute +Encoding: 201 201 101 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ntilde +Encoding: 209 209 102 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Odieresis +Encoding: 214 214 103 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Udieresis +Encoding: 220 220 104 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aacute +Encoding: 225 225 105 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: agrave +Encoding: 224 224 106 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: acircumflex +Encoding: 226 226 107 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: adieresis +Encoding: 228 228 108 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: atilde +Encoding: 227 227 109 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aring +Encoding: 229 229 110 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ccedilla +Encoding: 231 231 111 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eacute +Encoding: 233 233 112 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: egrave +Encoding: 232 232 113 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ecircumflex +Encoding: 234 234 114 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: edieresis +Encoding: 235 235 115 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iacute +Encoding: 237 237 116 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: igrave +Encoding: 236 236 117 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: icircumflex +Encoding: 238 238 118 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: idieresis +Encoding: 239 239 119 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ntilde +Encoding: 241 241 120 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oacute +Encoding: 243 243 121 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ograve +Encoding: 242 242 122 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ocircumflex +Encoding: 244 244 123 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: odieresis +Encoding: 246 246 124 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: otilde +Encoding: 245 245 125 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uacute +Encoding: 250 250 126 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ugrave +Encoding: 249 249 127 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ucircumflex +Encoding: 251 251 128 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: udieresis +Encoding: 252 252 129 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dagger +Encoding: 8224 8224 130 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: degree +Encoding: 176 176 131 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: cent +Encoding: 162 162 132 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sterling +Encoding: 163 163 133 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: section +Encoding: 167 167 134 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: bullet +Encoding: 8226 8226 135 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: paragraph +Encoding: 182 182 136 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: germandbls +Encoding: 223 223 137 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: registered +Encoding: 174 174 138 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: copyright +Encoding: 169 169 139 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: trademark +Encoding: 8482 8482 140 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: acute +Encoding: 180 180 141 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dieresis +Encoding: 168 168 142 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: notequal +Encoding: 8800 8800 143 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: AE +Encoding: 198 198 144 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Oslash +Encoding: 216 216 145 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: infinity +Encoding: 8734 8734 146 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: plusminus +Encoding: 177 177 147 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lessequal +Encoding: 8804 8804 148 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: greaterequal +Encoding: 8805 8805 149 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: yen +Encoding: 165 165 150 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: mu +Encoding: 181 181 151 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: partialdiff +Encoding: 8706 8706 152 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: summation +Encoding: 8721 8721 153 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: product +Encoding: 8719 8719 154 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: glyph155 +Encoding: 65539 -1 155 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: integral +Encoding: 8747 8747 156 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ordfeminine +Encoding: 170 170 157 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ordmasculine +Encoding: 186 186 158 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omega +Encoding: 8486 8486 159 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ae +Encoding: 230 230 160 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oslash +Encoding: 248 248 161 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: questiondown +Encoding: 191 191 162 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: exclamdown +Encoding: 161 161 163 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: logicalnot +Encoding: 172 172 164 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: radical +Encoding: 8730 8730 165 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: florin +Encoding: 402 402 166 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: approxequal +Encoding: 8776 8776 167 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Delta +Encoding: 8710 8710 168 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: guillemotleft +Encoding: 171 171 169 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: guillemotright +Encoding: 187 187 170 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ellipsis +Encoding: 8230 8230 171 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Agrave +Encoding: 192 192 172 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Atilde +Encoding: 195 195 173 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Otilde +Encoding: 213 213 174 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: OE +Encoding: 338 338 175 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oe +Encoding: 339 339 176 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: endash +Encoding: 8211 8211 177 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: emdash +Encoding: 8212 8212 178 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotedblleft +Encoding: 8220 8220 179 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotedblright +Encoding: 8221 8221 180 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quoteleft +Encoding: 8216 8216 181 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quoteright +Encoding: 8217 8217 182 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +SplineSet +464 849 m 1,0,-1 + 809 905 l 1,1,-1 + 665 419 l 1,2,3 + 840 718 840 718 983 837 c 0,4,5 + 1064 905 1064 905 1115 905 c 0,6,7 + 1148 905 1148 905 1167 885.5 c 128,-1,8 + 1186 866 1186 866 1186 829 c 0,9,10 + 1186 763 1186 763 1152 703 c 0,11,12 + 1128 658 1128 658 1083 658 c 0,13,14 + 1060 658 1060 658 1043.5 673 c 128,-1,15 + 1027 688 1027 688 1023 719 c 0,16,17 + 1021 738 1021 738 1014 744 c 0,18,19 + 1006 752 1006 752 995 752 c 0,20,21 + 978 752 978 752 963 744 c 0,22,23 + 937 730 937 730 884 666 c 0,24,25 + 801 568 801 568 704 412 c 0,26,27 + 662 346 662 346 632 263 c 0,28,29 + 590 149 590 149 584 126 c 2,30,-1 + 552 0 l 1,31,-1 + 399 0 l 1,32,-1 + 584 621 l 2,33,34 + 616 729 616 729 616 775 c 0,35,36 + 616 793 616 793 601 805 c 0,37,38 + 581 821 581 821 548 821 c 0,39,40 + 527 821 527 821 471 812 c 1,41,-1 + 464 849 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: divide +Encoding: 247 247 183 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lozenge +Encoding: 9674 9674 184 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ydieresis +Encoding: 255 255 185 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ydieresis +Encoding: 376 376 186 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: fraction +Encoding: 8260 8260 187 +AltUni2: 002215.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Euro +Encoding: 8364 8364 188 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: guilsinglleft +Encoding: 8249 8249 189 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: guilsinglright +Encoding: 8250 8250 190 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF001 +Encoding: 61441 61441 191 +AltUni2: 00fb01.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF002 +Encoding: 61442 61442 192 +AltUni2: 00fb02.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: daggerdbl +Encoding: 8225 8225 193 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: periodcentered +Encoding: 183 183 194 +AltUni2: 002219.ffffffff.0 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotesinglbase +Encoding: 8218 8218 195 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotedblbase +Encoding: 8222 8222 196 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: perthousand +Encoding: 8240 8240 197 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Acircumflex +Encoding: 194 194 198 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ecircumflex +Encoding: 202 202 199 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Aacute +Encoding: 193 193 200 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Edieresis +Encoding: 203 203 201 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Egrave +Encoding: 200 200 202 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iacute +Encoding: 205 205 203 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Icircumflex +Encoding: 206 206 204 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Idieresis +Encoding: 207 207 205 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Igrave +Encoding: 204 204 206 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Oacute +Encoding: 211 211 207 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ocircumflex +Encoding: 212 212 208 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ograve +Encoding: 210 210 209 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Uacute +Encoding: 218 218 210 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ucircumflex +Encoding: 219 219 211 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ugrave +Encoding: 217 217 212 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dotlessi +Encoding: 305 305 213 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: circumflex +Encoding: 710 710 214 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tilde +Encoding: 732 732 215 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni02C9 +Encoding: 713 713 216 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: breve +Encoding: 728 728 217 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dotaccent +Encoding: 729 729 218 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ring +Encoding: 730 730 219 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: cedilla +Encoding: 184 184 220 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: hungarumlaut +Encoding: 733 733 221 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ogonek +Encoding: 731 731 222 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: caron +Encoding: 711 711 223 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lslash +Encoding: 321 321 224 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lslash +Encoding: 322 322 225 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Scaron +Encoding: 352 352 226 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: scaron +Encoding: 353 353 227 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Zcaron +Encoding: 381 381 228 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zcaron +Encoding: 382 382 229 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: brokenbar +Encoding: 166 166 230 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eth +Encoding: 208 208 231 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eth +Encoding: 240 240 232 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Yacute +Encoding: 221 221 233 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: yacute +Encoding: 253 253 234 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Thorn +Encoding: 222 222 235 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: thorn +Encoding: 254 254 236 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: minus +Encoding: 8722 8722 237 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: multiply +Encoding: 215 215 238 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni00B9 +Encoding: 185 185 239 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni00B2 +Encoding: 178 178 240 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni00B3 +Encoding: 179 179 241 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: onehalf +Encoding: 189 189 242 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: onequarter +Encoding: 188 188 243 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: threequarters +Encoding: 190 190 244 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: franc +Encoding: 8355 8355 245 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gbreve +Encoding: 286 286 246 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gbreve +Encoding: 287 287 247 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Idotaccent +Encoding: 304 304 248 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Scedilla +Encoding: 350 350 249 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: scedilla +Encoding: 351 351 250 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Cacute +Encoding: 262 262 251 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: cacute +Encoding: 263 263 252 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ccaron +Encoding: 268 268 253 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ccaron +Encoding: 269 269 254 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dcroat +Encoding: 273 273 255 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: currency +Encoding: 164 164 256 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: macron +Encoding: 175 175 257 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Amacron +Encoding: 256 256 258 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: amacron +Encoding: 257 257 259 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Abreve +Encoding: 258 258 260 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: abreve +Encoding: 259 259 261 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Aogonek +Encoding: 260 260 262 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aogonek +Encoding: 261 261 263 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ccircumflex +Encoding: 264 264 264 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ccircumflex +Encoding: 265 265 265 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Cdotaccent +Encoding: 266 266 266 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: cdotaccent +Encoding: 267 267 267 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Dcaron +Encoding: 270 270 268 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dcaron +Encoding: 271 271 269 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Dcroat +Encoding: 272 272 270 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Emacron +Encoding: 274 274 271 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: emacron +Encoding: 275 275 272 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ebreve +Encoding: 276 276 273 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ebreve +Encoding: 277 277 274 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Edotaccent +Encoding: 278 278 275 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: edotaccent +Encoding: 279 279 276 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eogonek +Encoding: 280 280 277 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eogonek +Encoding: 281 281 278 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ecaron +Encoding: 282 282 279 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ecaron +Encoding: 283 283 280 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gcircumflex +Encoding: 284 284 281 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gcircumflex +Encoding: 285 285 282 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gdotaccent +Encoding: 288 288 283 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gdotaccent +Encoding: 289 289 284 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gcommaaccent +Encoding: 290 290 285 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gcommaaccent +Encoding: 291 291 286 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Hcircumflex +Encoding: 292 292 287 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: hcircumflex +Encoding: 293 293 288 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Hbar +Encoding: 294 294 289 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: hbar +Encoding: 295 295 290 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Itilde +Encoding: 296 296 291 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: itilde +Encoding: 297 297 292 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Imacron +Encoding: 298 298 293 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: imacron +Encoding: 299 299 294 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ibreve +Encoding: 300 300 295 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ibreve +Encoding: 301 301 296 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iogonek +Encoding: 302 302 297 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iogonek +Encoding: 303 303 298 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: IJ +Encoding: 306 306 299 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ij +Encoding: 307 307 300 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Jcircumflex +Encoding: 308 308 301 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: jcircumflex +Encoding: 309 309 302 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Kcommaaccent +Encoding: 310 310 303 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: kcommaaccent +Encoding: 311 311 304 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: kgreenlandic +Encoding: 312 312 305 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lacute +Encoding: 313 313 306 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lacute +Encoding: 314 314 307 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lcommaaccent +Encoding: 315 315 308 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lcommaaccent +Encoding: 316 316 309 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lcaron +Encoding: 317 317 310 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lcaron +Encoding: 318 318 311 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ldot +Encoding: 319 319 312 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ldot +Encoding: 320 320 313 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Nacute +Encoding: 323 323 314 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: nacute +Encoding: 324 324 315 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ncommaaccent +Encoding: 325 325 316 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ncommaaccent +Encoding: 326 326 317 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ncaron +Encoding: 327 327 318 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ncaron +Encoding: 328 328 319 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: napostrophe +Encoding: 329 329 320 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eng +Encoding: 330 330 321 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eng +Encoding: 331 331 322 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omacron +Encoding: 332 332 323 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omacron +Encoding: 333 333 324 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Obreve +Encoding: 334 334 325 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: obreve +Encoding: 335 335 326 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ohungarumlaut +Encoding: 336 336 327 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ohungarumlaut +Encoding: 337 337 328 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Racute +Encoding: 340 340 329 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: racute +Encoding: 341 341 330 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Rcommaaccent +Encoding: 342 342 331 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: rcommaaccent +Encoding: 343 343 332 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Rcaron +Encoding: 344 344 333 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: rcaron +Encoding: 345 345 334 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Sacute +Encoding: 346 346 335 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sacute +Encoding: 347 347 336 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Scircumflex +Encoding: 348 348 337 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: scircumflex +Encoding: 349 349 338 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Tcommaaccent +Encoding: 354 354 339 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tcommaaccent +Encoding: 355 355 340 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Tcaron +Encoding: 356 356 341 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tcaron +Encoding: 357 357 342 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Tbar +Encoding: 358 358 343 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tbar +Encoding: 359 359 344 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Utilde +Encoding: 360 360 345 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: utilde +Encoding: 361 361 346 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Umacron +Encoding: 362 362 347 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: umacron +Encoding: 363 363 348 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ubreve +Encoding: 364 364 349 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ubreve +Encoding: 365 365 350 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Uring +Encoding: 366 366 351 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uring +Encoding: 367 367 352 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Uhungarumlaut +Encoding: 368 368 353 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uhungarumlaut +Encoding: 369 369 354 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Uogonek +Encoding: 370 370 355 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uogonek +Encoding: 371 371 356 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Wcircumflex +Encoding: 372 372 357 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: wcircumflex +Encoding: 373 373 358 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ycircumflex +Encoding: 374 374 359 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ycircumflex +Encoding: 375 375 360 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Zacute +Encoding: 377 377 361 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zacute +Encoding: 378 378 362 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Zdotaccent +Encoding: 379 379 363 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zdotaccent +Encoding: 380 380 364 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: longs +Encoding: 383 383 365 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Aringacute +Encoding: 506 506 366 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aringacute +Encoding: 507 507 367 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: AEacute +Encoding: 508 508 368 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: aeacute +Encoding: 509 509 369 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Oslashacute +Encoding: 510 510 370 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oslashacute +Encoding: 511 511 371 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tonos +Encoding: 900 900 372 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dieresistonos +Encoding: 901 901 373 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Alphatonos +Encoding: 902 902 374 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: anoteleia +Encoding: 903 903 375 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Epsilontonos +Encoding: 904 904 376 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Etatonos +Encoding: 905 905 377 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iotatonos +Encoding: 906 906 378 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omicrontonos +Encoding: 908 908 379 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Upsilontonos +Encoding: 910 910 380 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omegatonos +Encoding: 911 911 381 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iotadieresistonos +Encoding: 912 912 382 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Alpha +Encoding: 913 913 383 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Beta +Encoding: 914 914 384 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Gamma +Encoding: 915 915 385 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni0394 +Encoding: 916 916 386 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Epsilon +Encoding: 917 917 387 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Zeta +Encoding: 918 918 388 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Eta +Encoding: 919 919 389 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Theta +Encoding: 920 920 390 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iota +Encoding: 921 921 391 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Kappa +Encoding: 922 922 392 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Lambda +Encoding: 923 923 393 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Mu +Encoding: 924 924 394 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Nu +Encoding: 925 925 395 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Xi +Encoding: 926 926 396 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Omicron +Encoding: 927 927 397 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Pi +Encoding: 928 928 398 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Rho +Encoding: 929 929 399 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Sigma +Encoding: 931 931 400 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Tau +Encoding: 932 932 401 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Upsilon +Encoding: 933 933 402 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Phi +Encoding: 934 934 403 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Chi +Encoding: 935 935 404 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Psi +Encoding: 936 936 405 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni03A9 +Encoding: 937 937 406 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Iotadieresis +Encoding: 938 938 407 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Upsilondieresis +Encoding: 939 939 408 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: alphatonos +Encoding: 940 940 409 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: epsilontonos +Encoding: 941 941 410 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: etatonos +Encoding: 942 942 411 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iotatonos +Encoding: 943 943 412 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upsilondieresistonos +Encoding: 944 944 413 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: alpha +Encoding: 945 945 414 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: beta +Encoding: 946 946 415 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: gamma +Encoding: 947 947 416 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: delta +Encoding: 948 948 417 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: epsilon +Encoding: 949 949 418 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: zeta +Encoding: 950 950 419 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: eta +Encoding: 951 951 420 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: theta +Encoding: 952 952 421 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iota +Encoding: 953 953 422 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: kappa +Encoding: 954 954 423 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lambda +Encoding: 955 955 424 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni03BC +Encoding: 956 956 425 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: nu +Encoding: 957 957 426 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: xi +Encoding: 958 958 427 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omicron +Encoding: 959 959 428 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: pi +Encoding: 960 960 429 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: rho +Encoding: 961 961 430 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sigma1 +Encoding: 962 962 431 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sigma +Encoding: 963 963 432 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: tau +Encoding: 964 964 433 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upsilon +Encoding: 965 965 434 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: phi +Encoding: 966 966 435 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: chi +Encoding: 967 967 436 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: psi +Encoding: 968 968 437 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omega +Encoding: 969 969 438 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: iotadieresis +Encoding: 970 970 439 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upsilondieresis +Encoding: 971 971 440 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omicrontonos +Encoding: 972 972 441 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upsilontonos +Encoding: 973 973 442 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: omegatonos +Encoding: 974 974 443 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10023 +Encoding: 1025 1025 444 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10051 +Encoding: 1026 1026 445 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10052 +Encoding: 1027 1027 446 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10053 +Encoding: 1028 1028 447 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10054 +Encoding: 1029 1029 448 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10055 +Encoding: 1030 1030 449 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10056 +Encoding: 1031 1031 450 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10057 +Encoding: 1032 1032 451 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10058 +Encoding: 1033 1033 452 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10059 +Encoding: 1034 1034 453 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10060 +Encoding: 1035 1035 454 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10061 +Encoding: 1036 1036 455 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10062 +Encoding: 1038 1038 456 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10145 +Encoding: 1039 1039 457 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10017 +Encoding: 1040 1040 458 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10018 +Encoding: 1041 1041 459 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10019 +Encoding: 1042 1042 460 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10020 +Encoding: 1043 1043 461 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10021 +Encoding: 1044 1044 462 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10022 +Encoding: 1045 1045 463 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10024 +Encoding: 1046 1046 464 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10025 +Encoding: 1047 1047 465 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10026 +Encoding: 1048 1048 466 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10027 +Encoding: 1049 1049 467 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10028 +Encoding: 1050 1050 468 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10029 +Encoding: 1051 1051 469 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10030 +Encoding: 1052 1052 470 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10031 +Encoding: 1053 1053 471 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10032 +Encoding: 1054 1054 472 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10033 +Encoding: 1055 1055 473 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10034 +Encoding: 1056 1056 474 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10035 +Encoding: 1057 1057 475 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10036 +Encoding: 1058 1058 476 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10037 +Encoding: 1059 1059 477 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10038 +Encoding: 1060 1060 478 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10039 +Encoding: 1061 1061 479 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10040 +Encoding: 1062 1062 480 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10041 +Encoding: 1063 1063 481 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10042 +Encoding: 1064 1064 482 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10043 +Encoding: 1065 1065 483 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10044 +Encoding: 1066 1066 484 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10045 +Encoding: 1067 1067 485 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10046 +Encoding: 1068 1068 486 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10047 +Encoding: 1069 1069 487 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10048 +Encoding: 1070 1070 488 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10049 +Encoding: 1071 1071 489 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10065 +Encoding: 1072 1072 490 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10066 +Encoding: 1073 1073 491 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10067 +Encoding: 1074 1074 492 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10068 +Encoding: 1075 1075 493 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10069 +Encoding: 1076 1076 494 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10070 +Encoding: 1077 1077 495 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10072 +Encoding: 1078 1078 496 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10073 +Encoding: 1079 1079 497 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10074 +Encoding: 1080 1080 498 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10075 +Encoding: 1081 1081 499 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10076 +Encoding: 1082 1082 500 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10077 +Encoding: 1083 1083 501 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10078 +Encoding: 1084 1084 502 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10079 +Encoding: 1085 1085 503 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10080 +Encoding: 1086 1086 504 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10081 +Encoding: 1087 1087 505 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10082 +Encoding: 1088 1088 506 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10083 +Encoding: 1089 1089 507 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10084 +Encoding: 1090 1090 508 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10085 +Encoding: 1091 1091 509 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10086 +Encoding: 1092 1092 510 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10087 +Encoding: 1093 1093 511 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10088 +Encoding: 1094 1094 512 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10089 +Encoding: 1095 1095 513 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10090 +Encoding: 1096 1096 514 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10091 +Encoding: 1097 1097 515 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10092 +Encoding: 1098 1098 516 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10093 +Encoding: 1099 1099 517 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10094 +Encoding: 1100 1100 518 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10095 +Encoding: 1101 1101 519 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10096 +Encoding: 1102 1102 520 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10097 +Encoding: 1103 1103 521 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10071 +Encoding: 1105 1105 522 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10099 +Encoding: 1106 1106 523 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10100 +Encoding: 1107 1107 524 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10101 +Encoding: 1108 1108 525 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10102 +Encoding: 1109 1109 526 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10103 +Encoding: 1110 1110 527 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10104 +Encoding: 1111 1111 528 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10105 +Encoding: 1112 1112 529 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10106 +Encoding: 1113 1113 530 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10107 +Encoding: 1114 1114 531 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10108 +Encoding: 1115 1115 532 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10109 +Encoding: 1116 1116 533 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10110 +Encoding: 1118 1118 534 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10193 +Encoding: 1119 1119 535 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10050 +Encoding: 1168 1168 536 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii10098 +Encoding: 1169 1169 537 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Wgrave +Encoding: 7808 7808 538 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: wgrave +Encoding: 7809 7809 539 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Wacute +Encoding: 7810 7810 540 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: wacute +Encoding: 7811 7811 541 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Wdieresis +Encoding: 7812 7812 542 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: wdieresis +Encoding: 7813 7813 543 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Ygrave +Encoding: 7922 7922 544 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ygrave +Encoding: 7923 7923 545 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii00208 +Encoding: 8213 8213 546 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: underscoredbl +Encoding: 8215 8215 547 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: quotereversed +Encoding: 8219 8219 548 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: minute +Encoding: 8242 8242 549 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: second +Encoding: 8243 8243 550 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: exclamdbl +Encoding: 8252 8252 551 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni203E +Encoding: 8254 8254 552 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uni207F +Encoding: 8319 8319 553 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lira +Encoding: 8356 8356 554 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: peseta +Encoding: 8359 8359 555 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii61248 +Encoding: 8453 8453 556 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii61289 +Encoding: 8467 8467 557 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: afii61352 +Encoding: 8470 8470 558 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: estimated +Encoding: 8494 8494 559 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: oneeighth +Encoding: 8539 8539 560 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: threeeighths +Encoding: 8540 8540 561 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: fiveeighths +Encoding: 8541 8541 562 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: seveneighths +Encoding: 8542 8542 563 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowleft +Encoding: 8592 8592 564 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowup +Encoding: 8593 8593 565 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowright +Encoding: 8594 8594 566 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowdown +Encoding: 8595 8595 567 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowboth +Encoding: 8596 8596 568 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowupdn +Encoding: 8597 8597 569 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: arrowupdnbse +Encoding: 8616 8616 570 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: orthogonal +Encoding: 8735 8735 571 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: intersection +Encoding: 8745 8745 572 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: equivalence +Encoding: 8801 8801 573 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: house +Encoding: 8962 8962 574 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: revlogicalnot +Encoding: 8976 8976 575 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: integraltp +Encoding: 8992 8992 576 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: integralbt +Encoding: 8993 8993 577 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF100000 +Encoding: 9472 9472 578 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF110000 +Encoding: 9474 9474 579 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF010000 +Encoding: 9484 9484 580 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF030000 +Encoding: 9488 9488 581 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF020000 +Encoding: 9492 9492 582 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF040000 +Encoding: 9496 9496 583 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF080000 +Encoding: 9500 9500 584 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF090000 +Encoding: 9508 9508 585 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF060000 +Encoding: 9516 9516 586 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF070000 +Encoding: 9524 9524 587 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF050000 +Encoding: 9532 9532 588 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF430000 +Encoding: 9552 9552 589 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF240000 +Encoding: 9553 9553 590 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF510000 +Encoding: 9554 9554 591 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF520000 +Encoding: 9555 9555 592 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF390000 +Encoding: 9556 9556 593 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF220000 +Encoding: 9557 9557 594 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF210000 +Encoding: 9558 9558 595 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF250000 +Encoding: 9559 9559 596 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF500000 +Encoding: 9560 9560 597 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF490000 +Encoding: 9561 9561 598 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF380000 +Encoding: 9562 9562 599 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF280000 +Encoding: 9563 9563 600 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF270000 +Encoding: 9564 9564 601 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF260000 +Encoding: 9565 9565 602 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF360000 +Encoding: 9566 9566 603 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF370000 +Encoding: 9567 9567 604 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF420000 +Encoding: 9568 9568 605 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF190000 +Encoding: 9569 9569 606 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF200000 +Encoding: 9570 9570 607 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF230000 +Encoding: 9571 9571 608 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF470000 +Encoding: 9572 9572 609 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF480000 +Encoding: 9573 9573 610 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF410000 +Encoding: 9574 9574 611 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF450000 +Encoding: 9575 9575 612 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF460000 +Encoding: 9576 9576 613 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF400000 +Encoding: 9577 9577 614 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF540000 +Encoding: 9578 9578 615 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF530000 +Encoding: 9579 9579 616 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: SF440000 +Encoding: 9580 9580 617 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: upblock +Encoding: 9600 9600 618 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dnblock +Encoding: 9604 9604 619 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: block +Encoding: 9608 9608 620 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lfblock +Encoding: 9612 9612 621 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: rtblock +Encoding: 9616 9616 622 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: ltshade +Encoding: 9617 9617 623 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: shade +Encoding: 9618 9618 624 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dkshade +Encoding: 9619 9619 625 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: filledbox +Encoding: 9632 9632 626 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: H22073 +Encoding: 9633 9633 627 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: H18543 +Encoding: 9642 9642 628 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: H18551 +Encoding: 9643 9643 629 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: filledrect +Encoding: 9644 9644 630 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: triagup +Encoding: 9650 9650 631 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: triagrt +Encoding: 9658 9658 632 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: triagdn +Encoding: 9660 9660 633 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: triaglf +Encoding: 9668 9668 634 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: circle +Encoding: 9675 9675 635 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: H18533 +Encoding: 9679 9679 636 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: invbullet +Encoding: 9688 9688 637 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: invcircle +Encoding: 9689 9689 638 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: openbullet +Encoding: 9702 9702 639 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: smileface +Encoding: 9786 9786 640 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: invsmileface +Encoding: 9787 9787 641 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: sun +Encoding: 9788 9788 642 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: female +Encoding: 9792 9792 643 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: male +Encoding: 9794 9794 644 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: spade +Encoding: 9824 9824 645 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: club +Encoding: 9827 9827 646 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: heart +Encoding: 9829 9829 647 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: diamond +Encoding: 9830 9830 648 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: musicalnote +Encoding: 9834 9834 649 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: musicalnotedbl +Encoding: 9835 9835 650 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF004 +Encoding: 61444 61444 651 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF005 +Encoding: 61445 61445 652 +Width: 1582 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar +EndChars +EndSplineFont From 7b5eca987514278d82888c472a23a816bf335414 Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Sat, 7 Sep 2024 16:49:53 -0400 Subject: [PATCH 09/14] Update Bangla glyphs from AkaashNormal Copy over all Bangla glyphs from AkaashNormal, scale up 400% from Glyph Origin to maintain vertical alignment, and adjust horizontal spacing to be even. --- bhatkhande/bangla/Bangla.sfd | 3652 ++++++++++++++++++---------------- 1 file changed, 1902 insertions(+), 1750 deletions(-) diff --git a/bhatkhande/bangla/Bangla.sfd b/bhatkhande/bangla/Bangla.sfd index 205d0aa..61cf014 100644 --- a/bhatkhande/bangla/Bangla.sfd +++ b/bhatkhande/bangla/Bangla.sfd @@ -1,10 +1,10 @@ -SplineFontDB: 3.2 -FontName: OmeBhatkhandeBase -FullName: Ome Bhatkhande Base -FamilyName: Ome Bhatkhande Base +SplineFontDB: 3.0 +FontName: OmeBhatkhandeBangla +FullName: Ome Bhatkhande Bangla +FamilyName: Ome Bhatkhande Bangla Weight: Regular -Copyright: Omenad 2006-2017 -Version: 1.01 Oct 5, 2022 +Copyright: Omenad 2006-2024 +Version: 3.00 Sep 7, 2024 ItalicAngle: 0 UnderlinePosition: -292 UnderlineWidth: 150 @@ -22,7 +22,7 @@ OS2Version: 1 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 0 CreationTime: 1192029071 -ModificationTime: 1725678452 +ModificationTime: 1725742148 PfmFamily: 17 TTFWeight: 400 TTFWidth: 5 @@ -344,66 +344,66 @@ SplineSet EndSplineSet Fore SplineSet -221.461914062 1448.62304688 m 5,0,-1 - 990.530273438 1448.62304688 l 5,1,-1 - 1203.90625 1448.62304688 l 5,2,-1 - 1288.3671875 1439.73242188 l 5,3,-1 - 1315.0390625 1404.16992188 l 5,4,-1 - 1350.60351562 1324.15429688 l 5,5,-1 - 1150.5625 1324.15429688 l 5,6,-1 - 1150.5625 -85.0185546875 l 5,7,-1 - 1132.78027344 -76.1279296875 l 6,8,9 - 1093.33886719 -56.171875 1093.33886719 -56.171875 1088.32714844 -36.119140625 c 6,10,-1 - 1083.8828125 -18.337890625 l 5,11,-1 - 1079.4375 -0.5576171875 l 5,12,-1 - 1074.99121094 17.224609375 l 5,13,-1 - 1048.3203125 106.131835938 l 6,14,15 - 1021 197 1021 197 919.404296875 301.725585938 c 4,16,17 - 768 457 768 457 554.885742188 559.555664062 c 5,18,-1 - 403.745117188 612.899414062 l 5,19,-1 - 372.627929688 621.790039062 l 5,20,-1 - 368.182617188 621.790039062 l 5,21,-1 - 363.737304688 621.790039062 l 5,22,-1 - 359.291992188 626.235351562 l 5,23,-1 - 314.837890625 639.572265625 l 5,24,-1 - 288.166015625 675.133789062 l 5,25,-1 - 270.385742188 697.361328125 l 5,26,-1 - 248.159179688 732.923828125 l 5,27,-1 - 203.705078125 808.494140625 l 5,28,29 - 559.40234375 1038.25976562 559.40234375 1038.25976562 683.801757812 1088.54980469 c 6,30,-1 - 892.733398438 1173.01269531 l 5,31,-1 - 928.295898438 1186.34960938 l 5,32,-1 - 946.076171875 1190.79394531 l 5,33,-1 - 999.419921875 1213.02050781 l 6,34,35 - 1017.20214844 1220.08007812 1017.20214844 1220.08007812 1017.20214844 1275.25488281 c 6,36,-1 - 1017.20214844 1279.70019531 l 5,37,-1 - 1017.20214844 1284.14550781 l 5,38,-1 - 1017.20214844 1288.58984375 l 5,39,-1 - 1012.75585938 1297.48242188 l 5,40,-1 - 1012.75585938 1324.15429688 l 5,41,-1 - 528.190429688 1324.15429688 l 5,42,-1 - 359.268554688 1324.15429688 l 5,43,-1 - 283.698242188 1328.59960938 l 5,44,-1 - 257.025390625 1368.60742188 l 5,45,-1 - 221.461914062 1448.62304688 l 5,0,-1 -448.19921875 759.595703125 m 5,46,47 - 519.32421875 746.259765625 519.32421875 746.259765625 621.56640625 675.133789062 c 4,48,49 - 719.364257812 617.344726562 719.364257812 617.344726562 817.161132812 523.9921875 c 260,50,51 - 914.959960938 430.640625 914.959960938 430.640625 1012.75585938 301.725585938 c 5,52,-1 - 1012.75585938 1039.65234375 l 5,53,54 - 794.935546875 964.08203125 794.935546875 964.08203125 608.232421875 857.393554688 c 6,55,-1 - 554.885742188 830.720703125 l 5,56,-1 - 492.65234375 795.159179688 l 5,57,-1 - 448.19921875 759.595703125 l 5,46,47 -577.088867188 346.178710938 m 6,58,-1 - 603.76171875 350.625 l 5,59,-1 - 634.87890625 346.178710938 l 6,60,61 - 728 333 728 333 732.67578125 221.709960938 c 4,62,63 - 737 115.002929688 737 115.002929688 630.432617188 97.2412109375 c 6,64,-1 - 603.76171875 92.7958984375 l 5,65,-1 - 572.645507812 97.2412109375 l 6,66,67 - 480 110 480 110 474.845703125 221.709960938 c 4,68,69 - 470 328 470 328 577.088867188 346.178710938 c 6,58,-1 +230 1384 m 1,0,-1 + 1030 1384 l 1,1,-1 + 1222 1384 l 1,2,-1 + 1298 1376 l 1,3,-1 + 1322 1344 l 1,4,-1 + 1354 1272 l 1,5,-1 + 1174 1272 l 1,6,-1 + 1174 4 l 1,7,-1 + 1158 12 l 2,8,9 + 1130 28 1130 28 1118 48 c 2,10,-1 + 1114 64 l 1,11,-1 + 1110 80 l 1,12,-1 + 1106 96 l 1,13,-1 + 1082 176 l 2,14,15 + 1054 260 1054 260 966 352 c 0,16,17 + 830 492 830 492 638 584 c 1,18,-1 + 502 632 l 1,19,-1 + 474 640 l 1,20,-1 + 470 640 l 1,21,-1 + 466 640 l 1,22,-1 + 462 644 l 1,23,-1 + 422 656 l 1,24,-1 + 398 688 l 1,25,-1 + 382 708 l 1,26,-1 + 362 740 l 1,27,-1 + 322 808 l 1,28,29 + 582 976 582 976 754 1060 c 2,30,-1 + 942 1136 l 1,31,-1 + 974 1148 l 1,32,-1 + 990 1152 l 1,33,-1 + 1038 1172 l 2,34,35 + 1054 1184 1054 1184 1054 1228 c 2,36,-1 + 1054 1232 l 1,37,-1 + 1054 1236 l 1,38,-1 + 1054 1240 l 1,39,-1 + 1050 1248 l 1,40,-1 + 1050 1272 l 1,41,-1 + 506 1272 l 1,42,-1 + 354 1272 l 1,43,-1 + 286 1276 l 1,44,-1 + 262 1312 l 1,45,-1 + 230 1384 l 1,0,-1 +542 764 m 1,46,47 + 606 752 606 752 698 688 c 0,48,49 + 786 636 786 636 874 552 c 256,50,51 + 962 468 962 468 1050 352 c 1,52,-1 + 1050 1016 l 1,53,54 + 854 948 854 948 686 852 c 2,55,-1 + 638 828 l 1,56,-1 + 582 796 l 1,57,-1 + 542 764 l 1,46,47 +550 392 m 2,58,-1 + 574 396 l 1,59,-1 + 602 392 l 2,60,61 + 682 376 682 376 690 280 c 0,62,63 + 690 188 690 188 598 168 c 2,64,-1 + 574 164 l 1,65,-1 + 546 168 l 2,66,67 + 466 184 466 184 458 280 c 0,68,69 + 458 372 458 372 550 392 c 2,58,-1 EndSplineSet EndChar @@ -593,6 +593,7 @@ EndChar StartChar: zero Encoding: 48 48 19 Width: 1582 +VWidth: 575 Flags: W LayerCount: 2 Back @@ -621,27 +622,31 @@ SplineSet EndSplineSet Fore SplineSet -1074 455 m 0,0,1 - 1014 387 1014 387 964 368 c 0,2,3 - 930 356 930 356 850 356 c 0,4,5 - 691 356 691 356 562 474 c 0,6,7 - 421 603 421 603 421 775 c 0,8,9 - 421 882 421 882 492 966 c 0,10,11 - 579 1068 579 1068 719 1068 c 0,12,13 - 878 1068 878 1068 1011 951 c 0,14,15 - 1117 858 1117 858 1151 739 c 0,16,17 - 1161 704 1161 704 1161 665 c 0,18,19 - 1161 554 1161 554 1074 455 c 0,0,1 -938 891 m 1,20,-1 - 889 918 l 2,21,22 - 864 928 864 928 841 928 c 0,23,24 - 795 928 795 928 716 879 c 0,25,26 - 599 807 599 807 599 649 c 0,27,28 - 599 557 599 557 663 510 c 0,29,30 - 690 490 690 490 727 490 c 0,31,32 - 868 490 868 490 959 662 c 0,33,34 - 993 727 993 727 993 784 c 0,35,36 - 993 854 993 854 938 891 c 1,20,-1 +748 1200 m 4,0,1 + 840 1204 840 1204 936 1180 c 4,2,3 + 1052 1144 1052 1144 1148 1056 c 4,4,5 + 1300 908 1300 908 1300 688 c 4,6,7 + 1300 520 1300 520 1196 388 c 4,8,9 + 1140 312 1140 312 1060 264 c 4,10,11 + 964 208 964 208 840 188 c 4,12,13 + 748 184 748 184 652 208 c 4,14,15 + 536 244 536 244 440 332 c 4,16,17 + 288 480 288 480 288 700 c 4,18,19 + 288 868 288 868 392 1000 c 4,20,21 + 448 1076 448 1076 528 1124 c 4,22,23 + 624 1180 624 1180 748 1200 c 4,0,1 +1100 760 m 4,24,25 + 1120 896 1120 896 1008 968 c 4,26,27 + 1004 972 1004 972 1004 972 c 5,28,-1 + 960 992 l 6,29,30 + 900 1016 900 1016 828 996 c 4,31,32 + 636 944 636 944 532 764 c 4,33,34 + 492 696 492 696 484 624 c 4,35,36 + 468 492 468 492 580 420 c 6,37,-1 + 628 396 l 6,38,39 + 688 372 688 372 760 392 c 4,40,41 + 948 444 948 444 1052 624 c 4,42,43 + 1092 692 1092 692 1100 760 c 4,24,25 EndSplineSet EndChar @@ -692,44 +697,44 @@ SplineSet EndSplineSet Fore SplineSet -1055.5 242.5 m 5,0,1 - 1095.5 330.5 1095.5 330.5 1099.5 378.5 c 4,2,3 - 1115.5 570.5 1115.5 570.5 839.5 738.5 c 5,4,-1 - 835.5 738.5 l 5,5,-1 - 719.5 806.5 l 5,6,-1 - 623.5 866.5 l 6,7,8 - 463.5 982.5 463.5 982.5 439.5 1110.5 c 4,9,10 - 427.5 1186.5 427.5 1186.5 455.5 1234.5 c 4,11,12 - 491.5 1298.5 491.5 1298.5 567.5 1298.5 c 4,13,14 - 627.5 1298.5 627.5 1298.5 663.5 1254.5 c 4,15,16 - 695.5 1218.5 695.5 1218.5 699.5 1166.5 c 6,17,-1 - 691.5 1122.5 l 5,18,-1 - 679.5 1094.5 l 5,19,-1 - 667.5 1062.5 l 5,20,-1 - 675.5 1042.5 l 5,21,-1 - 691.5 1010.5 l 5,22,-1 - 707.5 982.5 l 6,23,24 - 763.5 906.5 763.5 906.5 907.5 798.5 c 5,25,-1 - 915.5 794.5 l 5,26,-1 - 919.5 790.5 l 6,27,28 - 987.5 738.5 987.5 738.5 1023.5 706.5 c 4,29,30 - 1163.5 586.5 1163.5 586.5 1179.5 454.5 c 4,31,32 - 1183.5 394.5 1183.5 394.5 1171.5 326.5 c 4,33,34 - 1127.5 82.5 1127.5 82.5 919.5 -37.5 c 6,35,-1 - 847.5 -73.5 l 6,36,37 - 791.5 -93.5 791.5 -93.5 735.5 -97.5 c 4,38,39 - 619.5 -105.5 619.5 -105.5 575.5 -25.5 c 6,40,-1 - 567.5 -5.5 l 5,41,-1 - 563.5 14.5 l 5,42,-1 - 559.5 42.5 l 5,43,-1 - 563.5 70.5 l 6,44,45 - 587.5 222.5 587.5 222.5 759.5 298.5 c 4,46,47 - 787.5 310.5 787.5 310.5 815.5 318.5 c 4,48,49 - 827.5 318.5 827.5 318.5 839.5 322.5 c 6,50,-1 - 907.5 326.5 l 5,51,-1 - 911.5 326.5 l 6,52,53 - 975.5 322.5 975.5 322.5 1015.5 290.5 c 4,54,55 - 1035.5 274.5 1035.5 274.5 1055.5 242.5 c 5,0,1 +1034 324 m 5,0,1 + 1074 412 1074 412 1078 460 c 4,2,3 + 1094 652 1094 652 818 820 c 5,4,-1 + 814 820 l 5,5,-1 + 698 888 l 5,6,-1 + 602 948 l 6,7,8 + 442 1064 442 1064 418 1192 c 4,9,10 + 406 1268 406 1268 434 1316 c 4,11,12 + 470 1380 470 1380 546 1380 c 4,13,14 + 606 1380 606 1380 642 1336 c 4,15,16 + 674 1300 674 1300 678 1248 c 6,17,-1 + 670 1204 l 5,18,-1 + 658 1176 l 5,19,-1 + 646 1144 l 5,20,-1 + 654 1124 l 5,21,-1 + 670 1092 l 5,22,-1 + 686 1064 l 6,23,24 + 742 988 742 988 886 880 c 5,25,-1 + 894 876 l 5,26,-1 + 898 872 l 6,27,28 + 966 820 966 820 1002 788 c 4,29,30 + 1142 668 1142 668 1158 536 c 4,31,32 + 1162 476 1162 476 1150 408 c 4,33,34 + 1106 164 1106 164 898 44 c 6,35,-1 + 826 8 l 6,36,37 + 770 -12 770 -12 714 -16 c 4,38,39 + 598 -24 598 -24 554 56 c 6,40,-1 + 546 76 l 5,41,-1 + 542 96 l 5,42,-1 + 538 124 l 5,43,-1 + 542 152 l 6,44,45 + 566 304 566 304 738 380 c 4,46,47 + 766 392 766 392 794 400 c 4,48,49 + 806 400 806 400 818 404 c 6,50,-1 + 886 408 l 5,51,-1 + 890 408 l 6,52,53 + 954 404 954 404 994 372 c 4,54,55 + 1014 356 1014 356 1034 324 c 5,0,1 EndSplineSet EndChar @@ -780,59 +785,59 @@ SplineSet EndSplineSet Fore SplineSet -297 864.5 m 5,0,-1 - 409 800.5 l 5,1,-1 - 417 792.5 l 5,2,-1 - 497 744.5 l 6,3,4 - 581 704.5 581 704.5 689 700.5 c 6,5,-1 - 701 700.5 l 5,6,-1 - 841 708.5 l 5,7,-1 - 873 716.5 l 6,8,9 - 1013 752.5 1013 752.5 1021 856.5 c 6,10,-1 - 1021 884.5 l 5,11,-1 - 1017 912.5 l 5,12,-1 - 1009 932.5 l 6,13,14 - 1001 952.5 1001 952.5 993 964.5 c 4,15,16 - 941 1052.5 941 1052.5 761 1120.5 c 5,17,-1 - 757 1124.5 l 6,18,19 - 761 1124.5 761 1124.5 717 1140.5 c 6,20,-1 - 637 1172.5 l 6,21,22 - 549 1216.5 549 1216.5 509 1264.5 c 4,23,24 - 473 1308.5 473 1308.5 469 1368.5 c 4,25,26 - 457 1472.5 457 1472.5 545 1512.5 c 6,27,-1 - 565 1520.5 l 5,28,-1 - 589 1524.5 l 5,29,-1 - 645 1516.5 l 5,30,31 - 733 1476.5 733 1476.5 729 1380.5 c 5,32,-1 - 717 1332.5 l 5,33,-1 - 709 1316.5 l 5,34,-1 - 705 1300.5 l 5,35,-1 - 729 1260.5 l 5,36,-1 - 737 1248.5 l 6,37,38 - 781 1204.5 781 1204.5 885 1136.5 c 5,39,-1 - 885 1136.5 l 5,40,41 - 1021 1052.5 1021 1052.5 1065 984.5 c 4,42,43 - 1105 928.5 1105 928.5 1101 856.5 c 4,44,45 - 1097 768.5 1097 768.5 1041 696.5 c 4,46,47 - 969 600.5 969 600.5 833 560.5 c 4,48,49 - 797 552.5 797 552.5 765 548.5 c 5,50,-1 - 937 400.5 l 5,51,-1 - 1145 192.5 l 5,52,-1 - 1289 28.5 l 5,53,-1 - 1321 -47.5 l 5,54,-1 - 1193 56.5 l 5,55,-1 - 1185 60.5 l 5,56,-1 - 1129 108.5 l 6,57,58 - 937 260.5 937 260.5 761 376.5 c 6,59,-1 - 521 524.5 l 5,60,-1 - 485 544.5 l 5,61,-1 - 449 564.5 l 6,62,63 - 417 580.5 417 580.5 405 596.5 c 6,64,-1 - 377 660.5 l 5,65,-1 - 373 664.5 l 5,66,-1 - 373 668.5 l 5,67,-1 - 365 692.5 l 5,68,-1 - 297 864.5 l 5,0,-1 +324 720 m 5,0,-1 + 436 656 l 5,1,-1 + 444 648 l 5,2,-1 + 524 600 l 6,3,4 + 608 560 608 560 716 556 c 6,5,-1 + 728 556 l 5,6,-1 + 868 564 l 5,7,-1 + 900 572 l 6,8,9 + 1040 608 1040 608 1048 712 c 6,10,-1 + 1048 740 l 5,11,-1 + 1044 768 l 5,12,-1 + 1036 788 l 6,13,14 + 1028 808 1028 808 1020 820 c 4,15,16 + 968 908 968 908 788 976 c 5,17,-1 + 784 980 l 6,18,19 + 788 980 788 980 744 996 c 6,20,-1 + 664 1028 l 6,21,22 + 576 1072 576 1072 536 1120 c 4,23,24 + 500 1164 500 1164 496 1224 c 4,25,26 + 484 1328 484 1328 572 1368 c 6,27,-1 + 592 1376 l 5,28,-1 + 616 1380 l 5,29,-1 + 672 1372 l 5,30,31 + 760 1332 760 1332 756 1236 c 5,32,-1 + 744 1188 l 5,33,-1 + 736 1172 l 5,34,-1 + 732 1156 l 5,35,-1 + 756 1116 l 5,36,-1 + 764 1104 l 6,37,38 + 808 1060 808 1060 912 992 c 5,39,-1 + 912 992 l 5,40,41 + 1048 908 1048 908 1092 840 c 4,42,43 + 1132 784 1132 784 1128 712 c 4,44,45 + 1124 624 1124 624 1068 552 c 4,46,47 + 996 456 996 456 860 416 c 4,48,49 + 824 408 824 408 792 404 c 5,50,-1 + 964 256 l 5,51,-1 + 1172 48 l 5,52,-1 + 1316 -116 l 5,53,-1 + 1348 -192 l 5,54,-1 + 1220 -88 l 5,55,-1 + 1212 -84 l 5,56,-1 + 1156 -36 l 6,57,58 + 964 116 964 116 788 232 c 6,59,-1 + 548 380 l 5,60,-1 + 512 400 l 5,61,-1 + 476 420 l 6,62,63 + 444 436 444 436 432 452 c 6,64,-1 + 404 516 l 5,65,-1 + 400 520 l 5,66,-1 + 400 524 l 5,67,-1 + 392 548 l 5,68,-1 + 324 720 l 5,0,-1 EndSplineSet EndChar @@ -901,50 +906,50 @@ SplineSet EndSplineSet Fore SplineSet -853.5 923 m 5,0,-1 - 897.5 859 l 6,1,2 - 921.5 815 921.5 815 921.5 763 c 4,3,4 - 921.5 707 921.5 707 893.5 663 c 4,5,6 - 841.5 567 841.5 567 725.5 567 c 4,7,8 - 585.5 567 585.5 567 541.5 687 c 4,9,10 - 521.5 731 521.5 731 525.5 783 c 4,11,12 - 529.5 939 529.5 939 661.5 1023 c 4,13,14 - 717.5 1059 717.5 1059 797.5 1071 c 4,15,16 - 829.5 1075 829.5 1075 865.5 1071 c 4,17,18 - 1089.5 1047 1089.5 1047 1205.5 807 c 5,19,-1 - 1237.5 719 l 6,20,21 - 1269.5 611 1269.5 611 1229.5 279 c 5,22,-1 - 1269.5 495 l 5,23,24 - 1269.5 379 1269.5 379 1229.5 279 c 4,25,26 - 1149.5 79 1149.5 79 961.5 23 c 4,27,28 - 873.5 -5 873.5 -5 785.5 15 c 4,29,30 - 741.5 27 741.5 27 685.5 59 c 4,31,32 - 569.5 123 569.5 123 473.5 295 c 4,33,34 - 461.5 315 461.5 315 449.5 335 c 4,35,36 - 381.5 451 381.5 451 305.5 647 c 6,37,-1 - 261.5 751 l 6,38,39 - 253.5 771 253.5 771 177.5 959 c 6,40,-1 - 229.5 823 l 5,41,-1 - 177.5 959 l 5,42,-1 - 205.5 947 l 6,43,44 - 229.5 939 229.5 939 241.5 927 c 4,45,46 - 261.5 915 261.5 915 277.5 879 c 6,47,-1 - 289.5 855 l 5,48,-1 - 325.5 779 l 5,49,-1 - 357.5 707 l 5,50,-1 - 425.5 555 l 6,51,52 - 577.5 247 577.5 247 773.5 195 c 5,53,-1 - 825.5 187 l 6,54,55 - 877.5 179 877.5 179 933.5 199 c 6,56,-1 - 1021.5 235 l 5,57,58 - 1209.5 355 1209.5 355 1185.5 603 c 4,59,60 - 1181.5 643 1181.5 643 1169.5 683 c 6,61,-1 - 1165.5 699 l 6,62,63 - 1121.5 859 1121.5 859 997.5 911 c 6,64,-1 - 965.5 923 l 5,65,-1 - 909.5 931 l 5,66,-1 - 873.5 927 l 5,67,-1 - 853.5 923 l 5,0,-1 +864 1072 m 5,0,-1 + 908 1008 l 6,1,2 + 932 964 932 964 932 912 c 4,3,4 + 932 856 932 856 904 812 c 4,5,6 + 852 716 852 716 736 716 c 4,7,8 + 596 716 596 716 552 836 c 4,9,10 + 532 880 532 880 536 932 c 4,11,12 + 540 1088 540 1088 672 1172 c 4,13,14 + 728 1208 728 1208 808 1220 c 4,15,16 + 840 1224 840 1224 876 1220 c 4,17,18 + 1100 1196 1100 1196 1216 956 c 5,19,-1 + 1248 868 l 6,20,21 + 1280 760 1280 760 1240 428 c 5,22,-1 + 1280 644 l 5,23,24 + 1280 528 1280 528 1240 428 c 4,25,26 + 1160 228 1160 228 972 172 c 4,27,28 + 884 144 884 144 796 164 c 4,29,30 + 752 176 752 176 696 208 c 4,31,32 + 580 272 580 272 484 444 c 4,33,34 + 472 464 472 464 460 484 c 4,35,36 + 392 600 392 600 316 796 c 6,37,-1 + 272 900 l 6,38,39 + 264 920 264 920 188 1108 c 6,40,-1 + 240 972 l 5,41,-1 + 188 1108 l 5,42,-1 + 216 1096 l 6,43,44 + 240 1088 240 1088 252 1076 c 4,45,46 + 272 1064 272 1064 288 1028 c 6,47,-1 + 300 1004 l 5,48,-1 + 336 928 l 5,49,-1 + 368 856 l 5,50,-1 + 436 704 l 6,51,52 + 588 396 588 396 784 344 c 5,53,-1 + 836 336 l 6,54,55 + 888 328 888 328 944 348 c 6,56,-1 + 1032 384 l 5,57,58 + 1220 504 1220 504 1196 752 c 4,59,60 + 1192 792 1192 792 1180 832 c 6,61,-1 + 1176 848 l 6,62,63 + 1132 1008 1132 1008 1008 1060 c 6,64,-1 + 976 1072 l 5,65,-1 + 920 1080 l 5,66,-1 + 884 1076 l 5,67,-1 + 864 1072 l 5,0,-1 EndSplineSet EndChar @@ -1005,67 +1010,67 @@ SplineSet EndSplineSet Fore SplineSet -679 583.5 m 1,0,1 - 483 655.5 483 655.5 427 823.5 c 0,2,3 - 407 879.5 407 879.5 411 943.5 c 2,4,-1 - 431 1023.5 l 2,5,6 - 451 1075.5 451 1075.5 483 1107.5 c 0,7,8 - 527 1159.5 527 1159.5 579 1187.5 c 0,9,10 - 655 1231.5 655 1231.5 731 1243.5 c 2,11,-1 - 835 1247.5 l 1,12,13 - 1059 1227.5 1059 1227.5 1143 1067.5 c 0,14,15 - 1159 1035.5 1159 1035.5 1167 999.5 c 2,16,-1 - 1175 959.5 l 1,17,-1 - 1175 919.5 l 2,18,19 - 1171 871.5 1171 871.5 1151 823.5 c 0,20,21 - 1115 739.5 1115 739.5 987 655.5 c 1,22,-1 - 987 655.5 l 1,23,-1 - 955 635.5 l 1,24,25 - 1067 587.5 1067 587.5 1135 495.5 c 0,26,27 - 1203 407.5 1203 407.5 1203 319.5 c 2,28,-1 - 1191 227.5 l 1,29,30 - 1131 35.5 1131 35.5 895 -12.5 c 0,31,32 - 851 -20.5 851 -20.5 807 -20.5 c 0,33,34 - 663 -20.5 663 -20.5 555 43.5 c 0,35,36 - 403 139.5 403 139.5 411 295.5 c 0,37,38 - 415 315.5 415 315.5 419 335.5 c 2,39,-1 - 435 379.5 l 2,40,41 - 451 423.5 451 423.5 483 451.5 c 0,42,43 - 527 499.5 527 499.5 635 559.5 c 1,44,-1 - 639 559.5 l 1,45,46 - 663 575.5 663 575.5 679 583.5 c 1,0,1 -547 931.5 m 0,47,48 - 567 799.5 567 799.5 747 719.5 c 1,49,-1 - 751 719.5 l 1,50,-1 - 759 715.5 l 1,51,-1 - 787 699.5 l 1,52,-1 - 819 687.5 l 1,53,-1 - 859 683.5 l 2,54,55 - 879 687.5 879 687.5 911 711.5 c 1,56,57 - 887 691.5 887 691.5 935 731.5 c 0,58,59 - 1055 843.5 1055 843.5 1035 963.5 c 0,60,61 - 1015 1107.5 1015 1107.5 879 1163.5 c 0,62,63 - 835 1179.5 835 1179.5 787 1179.5 c 2,64,-1 - 779 1179.5 l 2,65,66 - 639 1171.5 639 1171.5 571 1055.5 c 0,67,68 - 539 995.5 539 995.5 547 931.5 c 0,47,48 -551 251.5 m 0,69,70 - 571 115.5 571 115.5 715 63.5 c 0,71,72 - 759 47.5 759 47.5 807 47.5 c 2,73,-1 - 867 55.5 l 2,74,75 - 1007 79.5 1007 79.5 1055 203.5 c 0,76,77 - 1067 243.5 1067 243.5 1063 287.5 c 2,78,-1 - 1063 295.5 l 2,79,80 - 1051 419.5 1051 419.5 867 507.5 c 0,81,82 - 855 511.5 855 511.5 831 523.5 c 2,83,-1 - 827 523.5 l 1,84,-1 - 819 527.5 l 1,85,-1 - 775 539.5 l 1,86,-1 - 747 531.5 l 1,87,-1 - 743 527.5 l 1,88,-1 - 715 511.5 l 1,89,-1 - 691 495.5 l 2,90,91 - 535 387.5 535 387.5 551 251.5 c 0,69,70 +690 664 m 5,0,1 + 494 736 494 736 438 904 c 4,2,3 + 418 960 418 960 422 1024 c 6,4,-1 + 442 1104 l 6,5,6 + 462 1156 462 1156 494 1188 c 4,7,8 + 538 1240 538 1240 590 1268 c 4,9,10 + 666 1312 666 1312 742 1324 c 6,11,-1 + 846 1328 l 5,12,13 + 1070 1308 1070 1308 1154 1148 c 4,14,15 + 1170 1116 1170 1116 1178 1080 c 6,16,-1 + 1186 1040 l 5,17,-1 + 1186 1000 l 6,18,19 + 1182 952 1182 952 1162 904 c 4,20,21 + 1126 820 1126 820 998 736 c 5,22,-1 + 998 736 l 5,23,-1 + 966 716 l 5,24,25 + 1078 668 1078 668 1146 576 c 4,26,27 + 1214 488 1214 488 1214 400 c 6,28,-1 + 1202 308 l 5,29,30 + 1142 116 1142 116 906 68 c 4,31,32 + 862 60 862 60 818 60 c 4,33,34 + 674 60 674 60 566 124 c 4,35,36 + 414 220 414 220 422 376 c 4,37,38 + 426 396 426 396 430 416 c 6,39,-1 + 446 460 l 6,40,41 + 462 504 462 504 494 532 c 4,42,43 + 538 580 538 580 646 640 c 5,44,-1 + 650 640 l 5,45,46 + 674 656 674 656 690 664 c 5,0,1 +558 1012 m 4,47,48 + 578 880 578 880 758 800 c 5,49,-1 + 762 800 l 5,50,-1 + 770 796 l 5,51,-1 + 798 780 l 5,52,-1 + 830 768 l 5,53,-1 + 870 764 l 6,54,55 + 890 768 890 768 922 792 c 5,56,57 + 898 772 898 772 946 812 c 4,58,59 + 1066 924 1066 924 1046 1044 c 4,60,61 + 1026 1188 1026 1188 890 1244 c 4,62,63 + 846 1260 846 1260 798 1260 c 6,64,-1 + 790 1260 l 6,65,66 + 650 1252 650 1252 582 1136 c 4,67,68 + 550 1076 550 1076 558 1012 c 4,47,48 +562 332 m 4,69,70 + 582 196 582 196 726 144 c 4,71,72 + 770 128 770 128 818 128 c 6,73,-1 + 878 136 l 6,74,75 + 1018 160 1018 160 1066 284 c 4,76,77 + 1078 324 1078 324 1074 368 c 6,78,-1 + 1074 376 l 6,79,80 + 1062 500 1062 500 878 588 c 4,81,82 + 866 592 866 592 842 604 c 6,83,-1 + 838 604 l 5,84,-1 + 830 608 l 5,85,-1 + 786 620 l 5,86,-1 + 758 612 l 5,87,-1 + 754 608 l 5,88,-1 + 726 592 l 5,89,-1 + 702 576 l 6,90,91 + 546 468 546 468 562 332 c 4,69,70 EndSplineSet EndChar @@ -1120,45 +1125,45 @@ SplineSet EndSplineSet Fore SplineSet -1190.5 34.5 m 5,0,1 - 1062.5 -33.5 1062.5 -33.5 902.5 -25.5 c 4,2,3 - 618.5 -13.5 618.5 -13.5 462.5 186.5 c 4,4,5 - 398.5 266.5 398.5 266.5 374.5 366.5 c 6,6,-1 - 362.5 478.5 l 6,7,8 - 362.5 558.5 362.5 558.5 382.5 646.5 c 4,9,10 - 458.5 950.5 458.5 950.5 722.5 1122.5 c 4,11,12 - 882.5 1226.5 882.5 1226.5 1058.5 1234.5 c 5,13,-1 - 1058.5 1202.5 l 6,14,15 - 1062.5 990.5 1062.5 990.5 1170.5 894.5 c 5,16,-1 - 1234.5 854.5 l 6,17,18 - 1270.5 834.5 1270.5 834.5 1318.5 826.5 c 5,19,-1 - 1318.5 818.5 l 5,20,21 - 1090.5 782.5 1090.5 782.5 966.5 562.5 c 4,22,23 - 926.5 498.5 926.5 498.5 910.5 426.5 c 6,24,-1 - 894.5 330.5 l 6,25,26 - 890.5 258.5 890.5 258.5 914.5 210.5 c 4,27,28 - 954.5 142.5 954.5 142.5 1018.5 118.5 c 6,29,-1 - 1054.5 106.5 l 5,30,-1 - 1094.5 94.5 l 5,31,-1 - 1166.5 54.5 l 5,32,-1 - 1190.5 38.5 l 5,33,-1 - 1190.5 34.5 l 5,0,1 -946.5 46.5 m 5,34,35 - 822.5 150.5 822.5 150.5 786.5 258.5 c 4,36,37 - 754.5 342.5 754.5 342.5 758.5 438.5 c 4,38,39 - 774.5 674.5 774.5 674.5 942.5 782.5 c 5,40,-1 - 1022.5 818.5 l 5,41,-1 - 1022.5 826.5 l 5,42,43 - 902.5 862.5 902.5 862.5 882.5 1006.5 c 4,44,45 - 878.5 1018.5 878.5 1018.5 878.5 1026.5 c 6,46,-1 - 878.5 1042.5 l 5,47,-1 - 750.5 974.5 l 5,48,49 - 586.5 866.5 586.5 866.5 514.5 686.5 c 4,50,51 - 482.5 602.5 482.5 602.5 474.5 518.5 c 4,52,53 - 458.5 326.5 458.5 326.5 566.5 194.5 c 4,54,55 - 590.5 162.5 590.5 162.5 638.5 126.5 c 4,56,57 - 682.5 86.5 682.5 86.5 750.5 66.5 c 4,58,59 - 822.5 38.5 822.5 38.5 946.5 46.5 c 5,34,35 +1182 128 m 5,0,1 + 1054 60 1054 60 894 68 c 4,2,3 + 610 80 610 80 454 280 c 4,4,5 + 390 360 390 360 366 460 c 6,6,-1 + 354 572 l 6,7,8 + 354 652 354 652 374 740 c 4,9,10 + 450 1044 450 1044 714 1216 c 4,11,12 + 874 1320 874 1320 1050 1328 c 5,13,-1 + 1050 1296 l 6,14,15 + 1054 1084 1054 1084 1162 988 c 5,16,-1 + 1226 948 l 6,17,18 + 1262 928 1262 928 1310 920 c 5,19,-1 + 1310 912 l 5,20,21 + 1082 876 1082 876 958 656 c 4,22,23 + 918 592 918 592 902 520 c 6,24,-1 + 886 424 l 6,25,26 + 882 352 882 352 906 304 c 4,27,28 + 946 236 946 236 1010 212 c 6,29,-1 + 1046 200 l 5,30,-1 + 1086 188 l 5,31,-1 + 1158 148 l 5,32,-1 + 1182 132 l 5,33,-1 + 1182 128 l 5,0,1 +938 140 m 5,34,35 + 814 244 814 244 778 352 c 4,36,37 + 746 436 746 436 750 532 c 4,38,39 + 766 768 766 768 934 876 c 5,40,-1 + 1014 912 l 5,41,-1 + 1014 920 l 5,42,43 + 894 956 894 956 874 1100 c 4,44,45 + 870 1112 870 1112 870 1120 c 6,46,-1 + 870 1136 l 5,47,-1 + 742 1068 l 5,48,49 + 578 960 578 960 506 780 c 4,50,51 + 474 696 474 696 466 612 c 4,52,53 + 450 420 450 420 558 288 c 4,54,55 + 582 256 582 256 630 220 c 4,56,57 + 674 180 674 180 742 160 c 4,58,59 + 814 132 814 132 938 140 c 5,34,35 EndSplineSet EndChar @@ -1222,64 +1227,64 @@ SplineSet EndSplineSet Fore SplineSet -539 928.5 m 5,0,1 - 479 928.5 479 928.5 439 952.5 c 4,2,3 - 415 972.5 415 972.5 403 992.5 c 6,4,-1 - 387 1032.5 l 6,5,6 - 367 1124.5 367 1124.5 451 1172.5 c 4,7,8 - 499 1204.5 499 1204.5 559 1184.5 c 4,9,10 - 627 1160.5 627 1160.5 647 1088.5 c 6,11,-1 - 651 1056.5 l 5,12,-1 - 655 1024.5 l 5,13,-1 - 679 740.5 l 5,14,-1 - 679 724.5 l 5,15,-1 - 679 720.5 l 5,16,-1 - 683 676.5 l 5,17,-1 - 683 672.5 l 5,18,-1 - 687 668.5 l 5,19,20 - 695 604.5 695 604.5 735 592.5 c 5,21,-1 - 771 596.5 l 5,22,-1 - 783 600.5 l 5,23,-1 - 863 656.5 l 5,24,-1 - 947 736.5 l 5,25,-1 - 971 760.5 l 6,26,27 - 1035 836.5 1035 836.5 1047 892.5 c 5,28,29 - 1127 852.5 1127 852.5 1191 748.5 c 4,30,31 - 1267 628.5 1267 628.5 1267 476.5 c 4,32,33 - 1267 212.5 1267 212.5 1075 72.5 c 4,34,35 - 1039 44.5 1039 44.5 999 28.5 c 6,36,-1 - 919 4.5 l 5,37,-1 - 879 -3.5 l 5,38,-1 - 771 0.5 l 5,39,40 - 595 28.5 595 28.5 467 216.5 c 4,41,42 - 387 336.5 387 336.5 303 592.5 c 5,43,-1 - 299 596.5 l 5,44,-1 - 291 616.5 l 6,45,46 - 267 692.5 267 692.5 251 736.5 c 6,47,-1 - 163 976.5 l 5,48,-1 - 191 964.5 l 6,49,50 - 215 956.5 215 956.5 227 944.5 c 6,51,-1 - 251 900.5 l 6,52,53 - 251 904.5 251 904.5 259 884.5 c 6,54,-1 - 267 864.5 l 5,55,-1 - 331 692.5 l 5,56,-1 - 383 568.5 l 6,57,58 - 507 280.5 507 280.5 683 196.5 c 4,59,60 - 755 160.5 755 160.5 843 160.5 c 4,61,62 - 1043 160.5 1043 160.5 1147 316.5 c 4,63,64 - 1175 356.5 1175 356.5 1187 408.5 c 4,65,66 - 1199 452.5 1199 452.5 1199 492.5 c 4,67,68 - 1195 560.5 1195 560.5 1139 644.5 c 5,69,-1 - 1135 648.5 l 5,70,-1 - 1119 672.5 l 5,71,-1 - 1115 672.5 l 5,72,73 - 1079 628.5 1079 628.5 983 556.5 c 6,74,-1 - 867 476.5 l 6,75,76 - 819 444.5 819 444.5 783 440.5 c 4,77,78 - 699 432.5 699 432.5 631 544.5 c 4,79,80 - 583 632.5 583 632.5 559 796.5 c 6,81,-1 - 547 860.5 l 5,82,-1 - 539 928.5 l 5,0,1 +584 1060 m 5,0,1 + 524 1060 524 1060 484 1084 c 4,2,3 + 460 1104 460 1104 448 1124 c 6,4,-1 + 432 1164 l 6,5,6 + 412 1256 412 1256 496 1304 c 4,7,8 + 544 1336 544 1336 604 1316 c 4,9,10 + 672 1292 672 1292 692 1220 c 6,11,-1 + 696 1188 l 5,12,-1 + 700 1156 l 5,13,-1 + 724 872 l 5,14,-1 + 724 856 l 5,15,-1 + 724 852 l 5,16,-1 + 728 808 l 5,17,-1 + 728 804 l 5,18,-1 + 732 800 l 5,19,20 + 740 736 740 736 780 724 c 5,21,-1 + 816 728 l 5,22,-1 + 828 732 l 5,23,-1 + 908 788 l 5,24,-1 + 992 868 l 5,25,-1 + 1016 892 l 6,26,27 + 1080 968 1080 968 1092 1024 c 5,28,29 + 1172 984 1172 984 1236 880 c 4,30,31 + 1312 760 1312 760 1312 608 c 4,32,33 + 1312 344 1312 344 1120 204 c 4,34,35 + 1084 176 1084 176 1044 160 c 6,36,-1 + 964 136 l 5,37,-1 + 924 128 l 5,38,-1 + 816 132 l 5,39,40 + 640 160 640 160 512 348 c 4,41,42 + 432 468 432 468 348 724 c 5,43,-1 + 344 728 l 5,44,-1 + 336 748 l 6,45,46 + 312 824 312 824 296 868 c 6,47,-1 + 208 1108 l 5,48,-1 + 236 1096 l 6,49,50 + 260 1088 260 1088 272 1076 c 6,51,-1 + 296 1032 l 6,52,53 + 296 1036 296 1036 304 1016 c 6,54,-1 + 312 996 l 5,55,-1 + 376 824 l 5,56,-1 + 428 700 l 6,57,58 + 552 412 552 412 728 328 c 4,59,60 + 800 292 800 292 888 292 c 4,61,62 + 1088 292 1088 292 1192 448 c 4,63,64 + 1220 488 1220 488 1232 540 c 4,65,66 + 1244 584 1244 584 1244 624 c 4,67,68 + 1240 692 1240 692 1184 776 c 5,69,-1 + 1180 780 l 5,70,-1 + 1164 804 l 5,71,-1 + 1160 804 l 5,72,73 + 1124 760 1124 760 1028 688 c 6,74,-1 + 912 608 l 6,75,76 + 864 576 864 576 828 572 c 4,77,78 + 744 564 744 564 676 676 c 4,79,80 + 628 764 628 764 604 928 c 6,81,-1 + 592 992 l 5,82,-1 + 584 1060 l 5,0,1 EndSplineSet EndChar @@ -1324,59 +1329,59 @@ SplineSet EndSplineSet Fore SplineSet -949.5 638.5 m 5,0,-1 - 849.5 634.5 l 5,1,-1 - 837.5 634.5 l 5,2,-1 - 829.5 634.5 l 6,3,4 - 805.5 634.5 805.5 634.5 785.5 634.5 c 6,5,-1 - 621.5 642.5 l 6,6,7 - 549.5 650.5 549.5 650.5 485.5 682.5 c 4,8,9 - 433.5 710.5 433.5 710.5 405.5 746.5 c 4,10,11 - 349.5 810.5 349.5 810.5 365.5 910.5 c 4,12,13 - 377.5 1010.5 377.5 1010.5 445.5 1094.5 c 4,14,15 - 541.5 1218.5 541.5 1218.5 701.5 1218.5 c 4,16,17 - 809.5 1218.5 809.5 1218.5 897.5 1146.5 c 4,18,19 - 961.5 1098.5 961.5 1098.5 1005.5 998.5 c 4,20,21 - 1053.5 886.5 1053.5 886.5 1073.5 738.5 c 6,22,-1 - 1077.5 602.5 l 5,23,-1 - 1077.5 534.5 l 5,24,-1 - 1077.5 466.5 l 5,25,-1 - 1081.5 358.5 l 5,26,-1 - 1081.5 246.5 l 5,27,28 - 1137.5 246.5 1137.5 246.5 1177.5 210.5 c 4,29,30 - 1213.5 174.5 1213.5 174.5 1177.5 18.5 c 5,31,-1 - 1217.5 110.5 l 5,32,33 - 1213.5 54.5 1213.5 54.5 1177.5 18.5 c 6,34,-1 - 1129.5 -9.5 l 5,35,-1 - 1105.5 -17.5 l 6,36,37 - 1033.5 -29.5 1033.5 -29.5 985.5 30.5 c 4,38,39 - 961.5 58.5 961.5 58.5 957.5 90.5 c 6,40,-1 - 953.5 126.5 l 5,41,-1 - 953.5 146.5 l 5,42,-1 - 953.5 166.5 l 5,43,-1 - 953.5 290.5 l 5,44,-1 - 953.5 334.5 l 5,45,-1 - 949.5 378.5 l 5,46,-1 - 949.5 638.5 l 5,0,-1 -477.5 814.5 m 6,47,48 - 485.5 762.5 485.5 762.5 537.5 750.5 c 6,49,-1 - 585.5 746.5 l 5,50,-1 - 597.5 750.5 l 5,51,-1 - 601.5 750.5 l 5,52,-1 - 629.5 750.5 l 5,53,-1 - 821.5 750.5 l 5,54,-1 - 901.5 750.5 l 5,55,-1 - 913.5 750.5 l 5,56,-1 - 949.5 754.5 l 6,57,58 - 973.5 762.5 973.5 762.5 973.5 798.5 c 6,59,-1 - 969.5 818.5 l 5,60,-1 - 957.5 874.5 l 6,61,62 - 929.5 974.5 929.5 974.5 865.5 1046.5 c 4,63,64 - 809.5 1102.5 809.5 1102.5 765.5 1110.5 c 260,65,66 - 721.5 1118.5 721.5 1118.5 661.5 1090.5 c 4,67,68 - 553.5 1038.5 553.5 1038.5 501.5 926.5 c 6,69,-1 - 477.5 858.5 l 5,70,-1 - 477.5 814.5 l 6,47,48 +1014 720 m 5,0,-1 + 914 716 l 5,1,-1 + 902 716 l 5,2,-1 + 894 716 l 6,3,4 + 870 716 870 716 850 716 c 6,5,-1 + 686 724 l 6,6,7 + 614 732 614 732 550 764 c 4,8,9 + 498 792 498 792 470 828 c 4,10,11 + 414 892 414 892 430 992 c 4,12,13 + 442 1092 442 1092 510 1176 c 4,14,15 + 606 1300 606 1300 766 1300 c 4,16,17 + 874 1300 874 1300 962 1228 c 4,18,19 + 1026 1180 1026 1180 1070 1080 c 4,20,21 + 1118 968 1118 968 1138 820 c 6,22,-1 + 1142 684 l 5,23,-1 + 1142 616 l 5,24,-1 + 1142 548 l 5,25,-1 + 1146 440 l 5,26,-1 + 1146 328 l 5,27,28 + 1202 328 1202 328 1242 292 c 4,29,30 + 1278 256 1278 256 1242 100 c 5,31,-1 + 1282 192 l 5,32,33 + 1278 136 1278 136 1242 100 c 6,34,-1 + 1194 72 l 5,35,-1 + 1170 64 l 6,36,37 + 1098 52 1098 52 1050 112 c 4,38,39 + 1026 140 1026 140 1022 172 c 6,40,-1 + 1018 208 l 5,41,-1 + 1018 228 l 5,42,-1 + 1018 248 l 5,43,-1 + 1018 372 l 5,44,-1 + 1018 416 l 5,45,-1 + 1014 460 l 5,46,-1 + 1014 720 l 5,0,-1 +542 896 m 6,47,48 + 550 844 550 844 602 832 c 6,49,-1 + 650 828 l 5,50,-1 + 662 832 l 5,51,-1 + 666 832 l 5,52,-1 + 694 832 l 5,53,-1 + 886 832 l 5,54,-1 + 966 832 l 5,55,-1 + 978 832 l 5,56,-1 + 1014 836 l 6,57,58 + 1038 844 1038 844 1038 880 c 6,59,-1 + 1034 900 l 5,60,-1 + 1022 956 l 6,61,62 + 994 1056 994 1056 930 1128 c 4,63,64 + 874 1184 874 1184 830 1192 c 260,65,66 + 786 1200 786 1200 726 1172 c 4,67,68 + 618 1120 618 1120 566 1008 c 6,69,-1 + 542 940 l 5,70,-1 + 542 896 l 6,47,48 EndSplineSet EndChar @@ -1417,82 +1422,82 @@ SplineSet EndSplineSet Fore SplineSet -949 635 m 5,0,-1 - 985 691 l 5,1,2 - 1045 751 1045 751 1129 751 c 6,3,-1 - 1169 751 l 5,4,-1 - 1181 747 l 5,5,-1 - 1185 747 l 6,6,7 - 1249 747 1249 747 1285 763 c 4,8,9 - 1325 775 1325 775 1341 811 c 6,10,-1 - 1349 831 l 5,11,-1 - 1349 835 l 5,12,-1 - 1365 871 l 6,13,14 - 1385 891 1385 891 1401 855 c 6,15,-1 - 1405 851 l 5,16,-1 - 1413 807 l 5,17,-1 - 1409 759 l 5,18,-1 - 1385 679 l 5,19,20 - 1333 587 1333 587 1209 587 c 6,21,-1 - 1189 587 l 6,22,23 - 1157 591 1157 591 1141 591 c 4,24,25 - 1061 591 1061 591 1025 547 c 4,26,27 - 1009 531 1009 531 1017 491 c 6,28,-1 - 1021 483 l 5,29,-1 - 1025 463 l 6,30,31 - 1029 387 1029 387 1005 311 c 4,32,33 - 941 103 941 103 737 31 c 6,34,-1 - 665 11 l 6,35,36 - 525 -17 525 -17 445 59 c 4,37,38 - 373 131 373 131 373 347 c 6,39,-1 - 373 327 l 5,40,-1 - 373 347 l 5,41,-1 - 373 727 l 6,42,43 - 373 747 373 747 373 791 c 6,44,-1 - 373 919 l 6,45,46 - 369 943 369 943 329 959 c 5,47,-1 - 325 959 l 5,48,-1 - 297 971 l 6,49,50 - 233 1011 233 1011 237 1087 c 6,51,-1 - 241 1107 l 6,52,53 - 261 1199 261 1199 357 1211 c 4,54,55 - 365 1211 365 1211 373 1211 c 4,56,57 - 429 1211 429 1211 465 1167 c 4,58,59 - 501 1127 501 1127 501 1043 c 6,60,-1 - 501 1039 l 5,61,-1 - 501 1035 l 6,62,63 - 501 1031 501 1031 501 1023 c 6,64,-1 - 501 1019 l 5,65,-1 - 501 1015 l 5,66,-1 - 501 1007 l 5,67,-1 - 501 975 l 5,68,-1 - 501 763 l 5,69,-1 - 501 735 l 5,70,-1 - 505 643 l 5,71,-1 - 525 683 l 5,72,-1 - 529 687 l 5,73,-1 - 541 703 l 6,74,75 - 609 787 609 787 725 771 c 4,76,77 - 873 755 873 755 945 635 c 5,78,-1 - 949 635 l 5,0,-1 -921 479 m 4,79,80 - 933 547 933 547 853 575 c 4,81,82 - 777 603 777 603 693 611 c 6,83,-1 - 613 611 l 5,84,-1 - 605 611 l 6,85,86 - 609 611 609 611 593 611 c 6,87,-1 - 565 607 l 6,88,89 - 509 595 509 595 501 567 c 6,90,-1 - 501 519 l 5,91,-1 - 501 499 l 5,92,-1 - 501 467 l 5,93,-1 - 501 275 l 6,94,95 - 501 183 501 183 549 151 c 4,96,97 - 573 135 573 135 605 143 c 4,98,99 - 645 147 645 147 689 179 c 6,100,-1 - 697 183 l 6,101,102 - 793 247 793 247 865 355 c 4,103,104 - 909 423 909 423 921 479 c 4,79,80 +944 748 m 5,0,-1 + 980 804 l 5,1,2 + 1040 864 1040 864 1124 864 c 6,3,-1 + 1164 864 l 5,4,-1 + 1176 860 l 5,5,-1 + 1180 860 l 6,6,7 + 1244 860 1244 860 1280 876 c 4,8,9 + 1320 888 1320 888 1336 924 c 6,10,-1 + 1344 944 l 5,11,-1 + 1344 948 l 5,12,-1 + 1360 984 l 6,13,14 + 1380 1004 1380 1004 1396 968 c 6,15,-1 + 1400 964 l 5,16,-1 + 1408 920 l 5,17,-1 + 1404 872 l 5,18,-1 + 1380 792 l 5,19,20 + 1328 700 1328 700 1204 700 c 6,21,-1 + 1184 700 l 6,22,23 + 1152 704 1152 704 1136 704 c 4,24,25 + 1056 704 1056 704 1020 660 c 4,26,27 + 1004 644 1004 644 1012 604 c 6,28,-1 + 1016 596 l 5,29,-1 + 1020 576 l 6,30,31 + 1024 500 1024 500 1000 424 c 4,32,33 + 936 216 936 216 732 144 c 6,34,-1 + 660 124 l 6,35,36 + 520 96 520 96 440 172 c 4,37,38 + 368 244 368 244 368 460 c 6,39,-1 + 368 440 l 5,40,-1 + 368 460 l 5,41,-1 + 368 840 l 6,42,43 + 368 860 368 860 368 904 c 6,44,-1 + 368 1032 l 6,45,46 + 364 1056 364 1056 324 1072 c 5,47,-1 + 320 1072 l 5,48,-1 + 292 1084 l 6,49,50 + 228 1124 228 1124 232 1200 c 6,51,-1 + 236 1220 l 6,52,53 + 256 1312 256 1312 352 1324 c 4,54,55 + 360 1324 360 1324 368 1324 c 4,56,57 + 424 1324 424 1324 460 1280 c 4,58,59 + 496 1240 496 1240 496 1156 c 6,60,-1 + 496 1152 l 5,61,-1 + 496 1148 l 6,62,63 + 496 1144 496 1144 496 1136 c 6,64,-1 + 496 1132 l 5,65,-1 + 496 1128 l 5,66,-1 + 496 1120 l 5,67,-1 + 496 1088 l 5,68,-1 + 496 876 l 5,69,-1 + 496 848 l 5,70,-1 + 500 756 l 5,71,-1 + 520 796 l 5,72,-1 + 524 800 l 5,73,-1 + 536 816 l 6,74,75 + 604 900 604 900 720 884 c 4,76,77 + 868 868 868 868 940 748 c 5,78,-1 + 944 748 l 5,0,-1 +916 592 m 4,79,80 + 928 660 928 660 848 688 c 4,81,82 + 772 716 772 716 688 724 c 6,83,-1 + 608 724 l 5,84,-1 + 600 724 l 6,85,86 + 604 724 604 724 588 724 c 6,87,-1 + 560 720 l 6,88,89 + 504 708 504 708 496 680 c 6,90,-1 + 496 632 l 5,91,-1 + 496 612 l 5,92,-1 + 496 580 l 5,93,-1 + 496 388 l 6,94,95 + 496 296 496 296 544 264 c 4,96,97 + 568 248 568 248 600 256 c 4,98,99 + 640 260 640 260 684 292 c 6,100,-1 + 692 296 l 6,101,102 + 788 360 788 360 860 468 c 4,103,104 + 904 536 904 536 916 592 c 4,79,80 EndSplineSet EndChar @@ -1500,7 +1505,7 @@ StartChar: nine Encoding: 57 57 28 Width: 1582 VWidth: 575 -Flags: W +Flags: WO LayerCount: 2 Back SplineSet @@ -1538,55 +1543,55 @@ SplineSet EndSplineSet Fore SplineSet -1033.5 181.5 m 5,0,1 - 1097.5 209.5 1097.5 209.5 1129.5 241.5 c 6,2,-1 - 1169.5 297.5 l 6,3,4 - 1197.5 349.5 1197.5 349.5 1197.5 409.5 c 4,5,6 - 1197.5 569.5 1197.5 569.5 1053.5 685.5 c 4,7,8 - 957.5 765.5 957.5 765.5 721.5 821.5 c 5,9,-1 - 717.5 825.5 l 5,10,11 - 597.5 853.5 597.5 853.5 537.5 873.5 c 4,12,13 - 393.5 925.5 393.5 925.5 361.5 1025.5 c 5,14,-1 - 349.5 1105.5 l 5,15,-1 - 365.5 1153.5 l 6,16,17 - 401.5 1225.5 401.5 1225.5 481.5 1225.5 c 4,18,19 - 581.5 1225.5 581.5 1225.5 609.5 1121.5 c 4,20,21 - 621.5 1073.5 621.5 1073.5 593.5 1021.5 c 5,22,-1 - 657.5 997.5 l 5,23,-1 - 721.5 977.5 l 5,24,-1 - 929.5 897.5 l 5,25,26 - 1109.5 809.5 1109.5 809.5 1201.5 661.5 c 4,27,28 - 1269.5 553.5 1269.5 553.5 1273.5 425.5 c 4,29,30 - 1281.5 229.5 1281.5 229.5 1149.5 105.5 c 4,31,32 - 1101.5 65.5 1101.5 65.5 1049.5 41.5 c 4,33,34 - 981.5 9.5 981.5 9.5 897.5 1.5 c 5,35,-1 - 897.5 85.5 l 6,36,37 - 889.5 229.5 889.5 229.5 857.5 333.5 c 4,38,39 - 821.5 429.5 821.5 429.5 757.5 481.5 c 4,40,41 - 713.5 509.5 713.5 509.5 665.5 513.5 c 4,42,43 - 537.5 521.5 537.5 521.5 469.5 409.5 c 5,44,-1 - 453.5 369.5 l 6,45,46 - 433.5 317.5 433.5 317.5 449.5 257.5 c 4,47,48 - 457.5 233.5 457.5 233.5 469.5 201.5 c 6,49,-1 - 477.5 181.5 l 5,50,51 - 517.5 233.5 517.5 233.5 561.5 253.5 c 6,52,-1 - 597.5 261.5 l 6,53,54 - 713.5 281.5 713.5 281.5 769.5 177.5 c 4,55,56 - 777.5 157.5 777.5 157.5 785.5 137.5 c 4,57,58 - 785.5 133.5 785.5 133.5 785.5 129.5 c 4,59,60 - 809.5 13.5 809.5 13.5 701.5 -46.5 c 4,61,62 - 681.5 -58.5 681.5 -58.5 661.5 -62.5 c 6,63,-1 - 593.5 -66.5 l 5,64,-1 - 525.5 -50.5 l 6,65,66 - 369.5 -2.5 369.5 -2.5 325.5 173.5 c 5,67,-1 - 317.5 249.5 l 6,68,69 - 313.5 273.5 313.5 273.5 317.5 293.5 c 4,70,71 - 337.5 417.5 337.5 417.5 409.5 497.5 c 4,72,73 - 505.5 597.5 505.5 597.5 657.5 597.5 c 4,74,75 - 753.5 601.5 753.5 601.5 833.5 557.5 c 4,76,77 - 1009.5 461.5 1009.5 461.5 1029.5 229.5 c 4,78,79 - 1033.5 225.5 1033.5 225.5 1033.5 221.5 c 6,80,-1 - 1033.5 181.5 l 5,0,1 +1060 280 m 1,0,1 + 1124 308 1124 308 1156 340 c 2,2,-1 + 1196 396 l 2,3,4 + 1224 448 1224 448 1224 508 c 0,5,6 + 1224 668 1224 668 1080 784 c 0,7,8 + 984 864 984 864 748 920 c 1,9,-1 + 744 924 l 1,10,11 + 624 952 624 952 564 972 c 0,12,13 + 420 1024 420 1024 388 1124 c 1,14,-1 + 376 1204 l 1,15,-1 + 392 1252 l 2,16,17 + 428 1324 428 1324 508 1324 c 0,18,19 + 608 1324 608 1324 636 1220 c 0,20,21 + 648 1172 648 1172 620 1120 c 1,22,-1 + 684 1096 l 1,23,-1 + 748 1076 l 1,24,-1 + 956 996 l 1,25,26 + 1136 908 1136 908 1228 760 c 0,27,28 + 1296 652 1296 652 1300 524 c 0,29,30 + 1308 328 1308 328 1176 204 c 0,31,32 + 1128 164 1128 164 1076 140 c 0,33,34 + 1008 108 1008 108 924 100 c 1,35,-1 + 924 184 l 2,36,37 + 916 328 916 328 884 432 c 0,38,39 + 848 528 848 528 784 580 c 0,40,41 + 740 608 740 608 692 612 c 0,42,43 + 564 620 564 620 496 508 c 1,44,-1 + 480 468 l 2,45,46 + 460 416 460 416 476 356 c 0,47,48 + 484 332 484 332 496 300 c 2,49,-1 + 504 280 l 1,50,51 + 544 332 544 332 588 352 c 2,52,-1 + 624 360 l 2,53,54 + 740 380 740 380 796 276 c 0,55,56 + 804 256 804 256 812 236 c 0,57,58 + 812 232 812 232 812 228 c 0,59,60 + 836 112 836 112 728 52 c 0,61,62 + 708 40 708 40 688 36 c 2,63,-1 + 620 32 l 1,64,-1 + 552 48 l 2,65,66 + 396 96 396 96 352 272 c 1,67,-1 + 344 348 l 2,68,69 + 340 372 340 372 344 392 c 0,70,71 + 364 516 364 516 436 596 c 0,72,73 + 532 696 532 696 684 696 c 0,74,75 + 780 700 780 700 860 656 c 0,76,77 + 1036 560 1036 560 1056 328 c 0,78,79 + 1060 324 1060 324 1060 320 c 2,80,-1 + 1060 280 l 1,0,1 EndSplineSet EndChar @@ -1661,51 +1666,51 @@ SplineSet EndSplineSet Fore SplineSet -238.5 1436.5 m 5,0,-1 - 1038.5 1436.5 l 5,1,-1 - 1230.5 1436.5 l 5,2,-1 - 1306.5 1428.5 l 5,3,-1 - 1330.5 1396.5 l 5,4,-1 - 1362.5 1324.5 l 5,5,-1 - 490.5 1324.5 l 5,6,-1 - 490.5 748.5 l 5,7,8 - 666.5 924.5 666.5 924.5 890.5 1060.5 c 6,9,-1 - 994.5 1120.5 l 5,10,-1 - 1010.5 1128.5 l 5,11,-1 - 1046.5 1144.5 l 6,12,13 - 1058.5 1148.5 1058.5 1148.5 1078.5 1128.5 c 6,14,-1 - 1086.5 1120.5 l 5,15,-1 - 1118.5 1088.5 l 5,16,-1 - 1146.5 1056.5 l 5,17,-1 - 1174.5 1016.5 l 6,18,19 - 1182.5 996.5 1182.5 996.5 1162.5 972.5 c 6,20,-1 - 1146.5 940.5 l 5,21,-1 - 1130.5 908.5 l 6,22,23 - 1082.5 800.5 1082.5 800.5 1062.5 668.5 c 4,24,25 - 1030.5 424.5 1030.5 424.5 1114.5 208.5 c 6,26,-1 - 1146.5 132.5 l 5,27,-1 - 1150.5 120.5 l 5,28,-1 - 1182.5 56.5 l 5,29,-1 - 1114.5 92.5 l 5,30,-1 - 1074.5 144.5 l 5,31,-1 - 1018.5 252.5 l 6,32,33 - 922.5 452.5 922.5 452.5 950.5 880.5 c 5,34,-1 - 930.5 724.5 l 5,35,-1 - 950.5 880.5 l 5,36,37 - 726.5 716.5 726.5 716.5 606.5 596.5 c 6,38,-1 - 566.5 552.5 l 5,39,-1 - 526.5 508.5 l 5,40,-1 - 514.5 496.5 l 5,41,-1 - 490.5 480.5 l 5,42,-1 - 458.5 500.5 l 5,43,-1 - 446.5 516.5 l 5,44,-1 - 422.5 544.5 l 6,45,46 - 374.5 592.5 374.5 592.5 366.5 640.5 c 4,47,48 - 358.5 788.5 358.5 788.5 366.5 1096.5 c 6,49,-1 - 366.5 1324.5 l 5,50,-1 - 294.5 1328.5 l 5,51,-1 - 270.5 1364.5 l 5,52,-1 - 238.5 1436.5 l 5,0,-1 +220 1384 m 1,0,-1 + 1020 1384 l 1,1,-1 + 1212 1384 l 1,2,-1 + 1288 1376 l 1,3,-1 + 1312 1344 l 1,4,-1 + 1344 1272 l 1,5,-1 + 472 1272 l 1,6,-1 + 472 696 l 1,7,8 + 648 872 648 872 872 1008 c 2,9,-1 + 976 1068 l 1,10,-1 + 992 1076 l 1,11,-1 + 1028 1092 l 2,12,13 + 1040 1096 1040 1096 1060 1076 c 2,14,-1 + 1068 1068 l 1,15,-1 + 1100 1036 l 1,16,-1 + 1128 1004 l 1,17,-1 + 1156 964 l 2,18,19 + 1164 944 1164 944 1144 920 c 2,20,-1 + 1128 888 l 1,21,-1 + 1112 856 l 2,22,23 + 1064 748 1064 748 1044 616 c 0,24,25 + 1012 372 1012 372 1096 156 c 2,26,-1 + 1128 80 l 1,27,-1 + 1132 68 l 1,28,-1 + 1164 4 l 1,29,-1 + 1096 40 l 1,30,-1 + 1056 92 l 1,31,-1 + 1000 200 l 2,32,33 + 904 400 904 400 932 828 c 1,34,-1 + 912 672 l 1,35,-1 + 932 828 l 1,36,37 + 708 664 708 664 588 544 c 2,38,-1 + 548 500 l 1,39,-1 + 508 456 l 1,40,-1 + 496 444 l 1,41,-1 + 472 428 l 1,42,-1 + 440 448 l 1,43,-1 + 428 464 l 1,44,-1 + 404 492 l 2,45,46 + 356 540 356 540 348 588 c 0,47,48 + 340 736 340 736 348 1044 c 2,49,-1 + 348 1272 l 1,50,-1 + 276 1276 l 1,51,-1 + 252 1312 l 1,52,-1 + 220 1384 l 1,0,-1 EndSplineSet EndChar @@ -1857,72 +1862,72 @@ SplineSet EndSplineSet Fore SplineSet -1091.34960938 1616.59960938 m 5,0,-1 - 1244.79980469 1473.04980469 l 5,1,-1 - 1398.25 1458.20019531 l 5,2,-1 - 1423 1418.59960938 l 5,3,-1 - 1467.54980469 1324.54980469 l 5,4,-1 - 1244.79980469 1324.54980469 l 5,5,-1 - 1244.79980469 -244.599609375 l 5,6,-1 - 1225 -234.700195312 l 6,7,8 - 1190.34960938 -214.900390625 1190.34960938 -214.900390625 1175.5 -190.150390625 c 6,9,-1 - 1170.54980469 -170.349609375 l 5,10,-1 - 1165.59960938 -150.549804688 l 5,11,-1 - 1160.65039062 -130.75 l 5,12,-1 - 1130.95019531 -31.75 l 6,13,14 - 1096.29980469 72.2001953125 1096.29980469 72.2001953125 987.400390625 186.049804688 c 4,15,16 - 819.099609375 359.299804688 819.099609375 359.299804688 581.5 473.150390625 c 5,17,-1 - 413.200195312 532.549804688 l 5,18,-1 - 378.549804688 542.450195312 l 5,19,-1 - 373.599609375 542.450195312 l 5,20,-1 - 368.650390625 542.450195312 l 5,21,-1 - 363.700195312 547.400390625 l 5,22,-1 - 314.200195312 562.25 l 5,23,-1 - 284.5 601.849609375 l 5,24,-1 - 264.700195312 626.599609375 l 5,25,-1 - 239.950195312 666.200195312 l 5,26,-1 - 190.450195312 750.349609375 l 5,27,-1 - 393.400390625 884 l 5,28,-1 - 512.200195312 948.349609375 l 5,29,-1 - 512.200195312 953.299804688 l 5,30,31 - 353.799804688 958.25 353.799804688 958.25 319.150390625 1131.5 c 5,32,-1 - 319.150390625 1136.45019531 l 5,33,-1 - 314.200195312 1200.79980469 l 5,34,-1 - 314.200195312 1210.70019531 l 5,35,-1 - 314.200195312 1225.54980469 l 5,36,37 - 338.950195312 1418.59960938 338.950195312 1418.59960938 502.299804688 1487.90039062 c 5,38,-1 - 566.650390625 1502.75 l 5,39,-1 - 606.25 1502.75 l 6,40,41 - 685.450195312 1492.84960938 685.450195312 1492.84960938 725.049804688 1463.15039062 c 4,42,43 - 804.25 1408.70019531 804.25 1408.70019531 794.349609375 1319.59960938 c 4,44,45 - 794.349609375 1275.04980469 794.349609375 1275.04980469 764.650390625 1235.45019531 c 4,46,47 - 725.049804688 1185.95019531 725.049804688 1185.95019531 650.799804688 1185.95019531 c 4,48,49 - 591.400390625 1185.95019531 591.400390625 1185.95019531 546.849609375 1230.5 c 4,50,51 - 512.200195312 1265.15039062 512.200195312 1265.15039062 512.200195312 1339.40039062 c 5,52,-1 - 457.75 1289.90039062 l 5,53,54 - 383.5 1181 383.5 1181 512.200195312 1096.84960938 c 6,55,-1 - 561.700195312 1067.15039062 l 6,56,57 - 631 1037.45019531 631 1037.45019531 675.549804688 1042.40039062 c 6,58,-1 - 734.950195312 1062.20019531 l 5,59,-1 - 779.5 1082 l 5,60,-1 - 868.599609375 1116.65039062 l 5,61,-1 - 952.75 1151.29980469 l 5,62,-1 - 997.299804688 1171.09960938 l 5,63,-1 - 1046.79980469 1185.95019531 l 5,64,-1 - 1086.40039062 1210.70019531 l 5,65,-1 - 1096.29980469 1275.04980469 l 5,66,-1 - 1091.34960938 1299.79980469 l 5,67,-1 - 1091.34960938 1334.45019531 l 5,68,-1 - 1091.34960938 1616.59960938 l 5,0,-1 -462.700195312 695.900390625 m 5,69,70 - 541.900390625 681.049804688 541.900390625 681.049804688 655.75 601.849609375 c 4,71,72 - 764.650390625 537.5 764.650390625 537.5 873.549804688 433.549804688 c 260,73,74 - 982.450195312 329.599609375 982.450195312 329.599609375 1091.34960938 186.049804688 c 5,75,-1 - 1091.34960938 1007.75 l 5,76,77 - 848.799804688 923.599609375 848.799804688 923.599609375 640.900390625 804.799804688 c 6,78,-1 - 581.5 775.099609375 l 5,79,-1 - 512.200195312 735.5 l 5,80,-1 - 462.700195312 695.900390625 l 5,69,70 +1030 1508 m 1,0,-1 + 1154 1392 l 1,1,-1 + 1278 1380 l 1,2,-1 + 1298 1348 l 1,3,-1 + 1334 1272 l 1,4,-1 + 1154 1272 l 1,5,-1 + 1154 4 l 1,6,-1 + 1138 12 l 2,7,8 + 1110 28 1110 28 1098 48 c 2,9,-1 + 1094 64 l 1,10,-1 + 1090 80 l 1,11,-1 + 1086 96 l 1,12,-1 + 1062 176 l 2,13,14 + 1034 260 1034 260 946 352 c 0,15,16 + 810 492 810 492 618 584 c 1,17,-1 + 482 632 l 1,18,-1 + 454 640 l 1,19,-1 + 450 640 l 1,20,-1 + 446 640 l 1,21,-1 + 442 644 l 1,22,-1 + 402 656 l 1,23,-1 + 378 688 l 1,24,-1 + 362 708 l 1,25,-1 + 342 740 l 1,26,-1 + 302 808 l 1,27,-1 + 466 916 l 1,28,-1 + 562 968 l 1,29,-1 + 562 972 l 1,30,31 + 434 976 434 976 406 1116 c 1,32,-1 + 406 1120 l 1,33,-1 + 402 1172 l 1,34,-1 + 402 1180 l 1,35,-1 + 402 1192 l 1,36,37 + 422 1348 422 1348 554 1404 c 1,38,-1 + 606 1416 l 1,39,-1 + 638 1416 l 2,40,41 + 702 1408 702 1408 734 1384 c 0,42,43 + 798 1340 798 1340 790 1268 c 0,44,45 + 790 1232 790 1232 766 1200 c 0,46,47 + 734 1160 734 1160 674 1160 c 0,48,49 + 626 1160 626 1160 590 1196 c 0,50,51 + 562 1224 562 1224 562 1284 c 1,52,-1 + 518 1244 l 1,53,54 + 458 1156 458 1156 562 1088 c 2,55,-1 + 602 1064 l 2,56,57 + 658 1040 658 1040 694 1044 c 2,58,-1 + 742 1060 l 1,59,-1 + 778 1076 l 1,60,-1 + 850 1104 l 1,61,-1 + 918 1132 l 1,62,-1 + 954 1148 l 1,63,-1 + 994 1160 l 1,64,-1 + 1026 1180 l 1,65,-1 + 1034 1232 l 1,66,-1 + 1030 1252 l 1,67,-1 + 1030 1280 l 1,68,-1 + 1030 1508 l 1,0,-1 +522 764 m 1,69,70 + 586 752 586 752 678 688 c 0,71,72 + 766 636 766 636 854 552 c 256,73,74 + 942 468 942 468 1030 352 c 1,75,-1 + 1030 1016 l 1,76,77 + 834 948 834 948 666 852 c 2,78,-1 + 618 828 l 1,79,-1 + 562 796 l 1,80,-1 + 522 764 l 1,69,70 1271 -400 m 1,81,-1 311 -400 l 1,82,-1 311 -300 l 1,83,-1 @@ -1999,81 +2004,81 @@ SplineSet EndSplineSet Fore SplineSet -1097.5703125 1616.25585938 m 1,0,-1 - 1250.79882812 1472.91308594 l 1,1,-1 - 1404.02734375 1458.08496094 l 1,2,-1 - 1428.7421875 1418.54199219 l 1,3,-1 - 1473.2265625 1324.62695312 l 1,4,-1 - 1250.79882812 1324.62695312 l 1,5,-1 - 1250.79882812 -242.255859375 l 1,6,-1 - 1201.37109375 -207.65625 l 1,7,-1 - 1151.94238281 -173.055664062 l 1,8,-1 - 1137.11425781 -158.227539062 l 1,9,-1 - 1132.17089844 -158.227539062 l 1,10,-1 - 1127.22753906 -153.284179688 l 1,11,-1 - 1102.51269531 -128.5703125 l 1,12,-1 - 1097.5703125 -89.0263671875 l 1,13,-1 - 1097.5703125 -64.3134765625 l 1,14,-1 - 1097.5703125 -44.5419921875 l 1,15,-1 - 1097.5703125 123.515625 l 1,16,-1 - 1097.5703125 731.485351562 l 1,17,-1 - 1097.5703125 899.54296875 l 1,18,-1 - 1097.5703125 924.256835938 l 1,19,-1 - 1097.5703125 929.200195312 l 1,20,-1 - 1097.5703125 934.142578125 l 1,21,-1 - 1092.62890625 988.514648438 l 2,22,23 - 1087.68652344 1023.11425781 1087.68652344 1023.11425781 1033.31347656 1067.59960938 c 2,24,-1 - 1008.59863281 1092.31347656 l 1,25,-1 - 934.45703125 1161.51367188 l 1,26,-1 - 885.02734375 1206 l 1,27,28 - 667.543945312 1374.05664062 667.543945312 1374.05664062 529.143554688 1339.45507812 c 2,29,-1 - 484.65625 1324.62695312 l 1,30,-1 - 425.34375 1290.02734375 l 1,31,-1 - 400.629882812 1265.3125 l 1,32,-1 - 366.029296875 1215.88476562 l 1,33,-1 - 336.372070312 1136.79882812 l 1,34,-1 - 331.4296875 1097.25683594 l 1,35,36 - 435.228515625 1126.9140625 435.228515625 1126.9140625 543.971679688 1126.9140625 c 2,37,-1 - 662.599609375 1107.14257812 l 1,38,-1 - 741.686523438 1062.65625 l 1,39,-1 - 791.114257812 1008.28515625 l 2,40,41 - 845.485351562 924.256835938 845.485351562 924.256835938 830.657226562 825.400390625 c 0,42,43 - 815.829101562 716.657226562 815.829101562 716.657226562 736.7421875 588.143554688 c 0,44,45 - 697.200195312 514.000976562 697.200195312 514.000976562 628.000976562 439.857421875 c 2,46,-1 - 613.171875 425.028320312 l 1,47,-1 - 608.227539062 420.0859375 l 1,48,-1 - 588.45703125 405.2578125 l 1,49,-1 - 568.686523438 400.314453125 l 2,50,51 - 553.857421875 390.4296875 553.857421875 390.4296875 529.143554688 415.143554688 c 2,52,-1 - 519.2578125 420.0859375 l 1,53,-1 - 430.286132812 479.401367188 l 1,54,-1 - 430.286132812 484.34375 l 1,55,56 - 593.400390625 647.456054688 593.400390625 647.456054688 657.657226562 805.629882812 c 2,57,-1 - 667.543945312 830.342773438 l 1,58,-1 - 682.37109375 879.772460938 l 2,59,60 - 692.2578125 929.200195312 692.2578125 929.200195312 677.428710938 953.9140625 c 0,61,62 - 642.830078125 1028.05664062 642.830078125 1028.05664062 534.0859375 1008.28515625 c 2,63,-1 - 455.000976562 978.62890625 l 1,64,-1 - 450.057617188 978.62890625 l 1,65,-1 - 445.115234375 973.686523438 l 1,66,-1 - 420.400390625 963.799804688 l 1,67,-1 - 370.971679688 934.142578125 l 1,68,-1 - 341.314453125 919.314453125 l 1,69,-1 - 306.71484375 904.486328125 l 1,70,-1 - 282 894.599609375 l 1,71,-1 - 242.45703125 884.713867188 l 1,72,-1 - 193.029296875 889.65625 l 1,73,-1 - 173.2578125 919.314453125 l 1,74,-1 - 163.373046875 934.142578125 l 1,75,-1 - 133.715820312 1042.88476562 l 1,76,-1 - 128.772460938 1117.02832031 l 1,77,78 - 148.544921875 1324.62695312 148.544921875 1324.62695312 390.743164062 1423.48535156 c 0,79,80 - 450.057617188 1448.19824219 450.057617188 1448.19824219 632.942382812 1463.02636719 c 2,81,-1 - 514.314453125 1458.08496094 l 1,82,-1 - 632.942382812 1463.02636719 l 2,83,84 - 702.143554688 1453.14257812 702.143554688 1453.14257812 786.170898438 1408.65625 c 0,85,86 - 919.62890625 1344.40039062 919.62890625 1344.40039062 1097.5703125 1156.5703125 c 1,87,-1 - 1097.5703125 1616.25585938 l 1,0,-1 +1097 1508 m 1,0,-1 + 1221 1392 l 1,1,-1 + 1345 1380 l 1,2,-1 + 1365 1348 l 1,3,-1 + 1401 1272 l 1,4,-1 + 1221 1272 l 1,5,-1 + 1221 4 l 1,6,-1 + 1181 32 l 1,7,-1 + 1141 60 l 1,8,-1 + 1129 72 l 1,9,-1 + 1125 72 l 1,10,-1 + 1121 76 l 1,11,-1 + 1101 96 l 1,12,-1 + 1097 128 l 1,13,-1 + 1097 148 l 1,14,-1 + 1097 164 l 1,15,-1 + 1097 300 l 1,16,-1 + 1097 792 l 1,17,-1 + 1097 928 l 1,18,-1 + 1097 948 l 1,19,-1 + 1097 952 l 1,20,-1 + 1097 956 l 1,21,-1 + 1093 1000 l 2,22,23 + 1089 1028 1089 1028 1045 1064 c 2,24,-1 + 1025 1084 l 1,25,-1 + 965 1140 l 1,26,-1 + 925 1176 l 1,27,28 + 749 1312 749 1312 637 1284 c 2,29,-1 + 601 1272 l 1,30,-1 + 553 1244 l 1,31,-1 + 533 1224 l 1,32,-1 + 505 1184 l 1,33,-1 + 481 1120 l 1,34,-1 + 477 1088 l 1,35,36 + 561 1112 561 1112 649 1112 c 2,37,-1 + 745 1096 l 1,38,-1 + 809 1060 l 1,39,-1 + 849 1016 l 2,40,41 + 893 948 893 948 881 868 c 0,42,43 + 869 780 869 780 805 676 c 0,44,45 + 773 616 773 616 717 556 c 2,46,-1 + 705 544 l 1,47,-1 + 701 540 l 1,48,-1 + 685 528 l 1,49,-1 + 669 524 l 2,50,51 + 657 516 657 516 637 536 c 2,52,-1 + 629 540 l 1,53,-1 + 557 588 l 1,54,-1 + 557 592 l 1,55,56 + 689 724 689 724 741 852 c 2,57,-1 + 749 872 l 1,58,-1 + 761 912 l 2,59,60 + 769 952 769 952 757 972 c 0,61,62 + 729 1032 729 1032 641 1016 c 2,63,-1 + 577 992 l 1,64,-1 + 573 992 l 1,65,-1 + 569 988 l 1,66,-1 + 549 980 l 1,67,-1 + 509 956 l 1,68,-1 + 485 944 l 1,69,-1 + 457 932 l 1,70,-1 + 437 924 l 1,71,-1 + 405 916 l 1,72,-1 + 365 920 l 1,73,-1 + 349 944 l 1,74,-1 + 341 956 l 1,75,-1 + 317 1044 l 1,76,-1 + 313 1104 l 1,77,78 + 329 1272 329 1272 525 1352 c 0,79,80 + 573 1372 573 1372 721 1384 c 2,81,-1 + 625 1380 l 1,82,-1 + 721 1384 l 2,83,84 + 777 1376 777 1376 845 1340 c 0,85,86 + 953 1288 953 1288 1097 1136 c 1,87,-1 + 1097 1508 l 1,0,-1 1272 -400 m 1,88,-1 312 -400 l 1,89,-1 312 -300 l 1,90,-1 @@ -2199,69 +2204,69 @@ SplineSet EndSplineSet Fore SplineSet -134 1436.5 m 1,0,-1 - 1030 1436.5 l 1,1,-1 - 1234 1436.5 l 1,2,-1 - 1318 1428.5 l 1,3,-1 - 1342 1396.5 l 1,4,-1 - 1374 1324.5 l 1,5,-1 - 1194 1324.5 l 1,6,-1 - 1194 56.5 l 1,7,-1 - 1178 64.5 l 2,8,9 - 1150 80.5 1150 80.5 1138 100.5 c 2,10,-1 - 1126 136.5 l 1,11,-1 - 1126 156.5 l 1,12,-1 - 1122 172.5 l 1,13,-1 - 1110 212.5 l 1,14,-1 - 1078 292.5 l 1,15,16 - 990 452.5 990 452.5 802 568.5 c 1,17,18 - 770 496.5 770 496.5 722 456.5 c 0,19,20 - 682 424.5 682 424.5 634 412.5 c 2,21,-1 - 550 404.5 l 1,22,23 - 410 424.5 410 424.5 362 556.5 c 0,24,25 - 342 604.5 342 604.5 350 652.5 c 0,26,27 - 354 716.5 354 716.5 390 768.5 c 0,28,29 - 406 792.5 406 792.5 454 828.5 c 0,30,31 - 502 860.5 502 860.5 554 864.5 c 0,32,33 - 602 868.5 602 868.5 666 852.5 c 1,34,-1 - 670 852.5 l 1,35,-1 - 674 848.5 l 1,36,-1 - 722 836.5 l 1,37,-1 - 726 860.5 l 1,38,-1 - 730 892.5 l 1,39,-1 - 726 952.5 l 2,40,41 - 710 1020.5 710 1020.5 626 1076.5 c 2,42,-1 - 474 1152.5 l 1,43,-1 - 398 1184.5 l 2,44,45 - 338 1212.5 338 1212.5 290 1260.5 c 2,46,-1 - 278 1276.5 l 1,47,-1 - 278 1280.5 l 1,48,-1 - 274 1288.5 l 1,49,-1 - 254 1312.5 l 1,50,-1 - 222 1324.5 l 1,51,-1 - 222 1324.5 l 1,52,-1 - 190 1332.5 l 1,53,-1 - 170 1356.5 l 1,54,-1 - 166 1364.5 l 1,55,-1 - 150 1400.5 l 1,56,-1 - 134 1436.5 l 1,0,-1 -526 1320.5 m 1,57,58 - 566 1296.5 566 1296.5 626 1232.5 c 1,59,-1 - 630 1224.5 l 1,60,-1 - 646 1208.5 l 2,61,62 - 778 1060.5 778 1060.5 834 904.5 c 2,63,-1 - 858 812.5 l 1,64,-1 - 858 800.5 l 1,65,-1 - 866 752.5 l 1,66,-1 - 886 728.5 l 1,67,-1 - 890 724.5 l 1,68,-1 - 898 716.5 l 1,69,-1 - 946 664.5 l 2,70,71 - 994 616.5 994 616.5 1042 536.5 c 2,72,-1 - 1070 492.5 l 1,73,-1 - 1070 1324.5 l 1,74,-1 - 526 1324.5 l 1,75,-1 - 526 1320.5 l 1,57,58 +174 1384 m 1,0,-1 + 1070 1384 l 1,1,-1 + 1274 1384 l 1,2,-1 + 1358 1376 l 1,3,-1 + 1382 1344 l 1,4,-1 + 1414 1272 l 1,5,-1 + 1234 1272 l 1,6,-1 + 1234 4 l 1,7,-1 + 1218 12 l 2,8,9 + 1190 28 1190 28 1178 48 c 2,10,-1 + 1166 84 l 1,11,-1 + 1166 104 l 1,12,-1 + 1162 120 l 1,13,-1 + 1150 160 l 1,14,-1 + 1118 240 l 1,15,16 + 1030 400 1030 400 842 516 c 1,17,18 + 810 444 810 444 762 404 c 0,19,20 + 722 372 722 372 674 360 c 2,21,-1 + 590 352 l 1,22,23 + 450 372 450 372 402 504 c 0,24,25 + 382 552 382 552 390 600 c 0,26,27 + 394 664 394 664 430 716 c 0,28,29 + 446 740 446 740 494 776 c 0,30,31 + 542 808 542 808 594 812 c 0,32,33 + 642 816 642 816 706 800 c 1,34,-1 + 710 800 l 1,35,-1 + 714 796 l 1,36,-1 + 762 784 l 1,37,-1 + 766 808 l 1,38,-1 + 770 840 l 1,39,-1 + 766 900 l 2,40,41 + 750 968 750 968 666 1024 c 2,42,-1 + 514 1100 l 1,43,-1 + 438 1132 l 2,44,45 + 378 1160 378 1160 330 1208 c 2,46,-1 + 318 1224 l 1,47,-1 + 318 1228 l 1,48,-1 + 314 1236 l 1,49,-1 + 294 1260 l 1,50,-1 + 262 1272 l 1,51,-1 + 262 1272 l 1,52,-1 + 230 1280 l 1,53,-1 + 210 1304 l 1,54,-1 + 206 1312 l 1,55,-1 + 190 1348 l 1,56,-1 + 174 1384 l 1,0,-1 +566 1268 m 1,57,58 + 606 1244 606 1244 666 1180 c 1,59,-1 + 670 1172 l 1,60,-1 + 686 1156 l 2,61,62 + 818 1008 818 1008 874 852 c 2,63,-1 + 898 760 l 1,64,-1 + 898 748 l 1,65,-1 + 906 700 l 1,66,-1 + 926 676 l 1,67,-1 + 930 672 l 1,68,-1 + 938 664 l 1,69,-1 + 986 612 l 2,70,71 + 1034 564 1034 564 1082 484 c 2,72,-1 + 1110 440 l 1,73,-1 + 1110 1272 l 1,74,-1 + 566 1272 l 1,75,-1 + 566 1268 l 1,57,58 844 2060 m 1,76,-1 844 1510 l 1,77,-1 744 1510 l 1,78,-1 @@ -2341,97 +2346,97 @@ SplineSet EndSplineSet Fore SplineSet -1322.41015625 1325.27734375 m 1,0,-1 - 1050.921875 1325.27734375 l 1,1,-1 - 1029.71191406 1325.27734375 l 1,2,-1 - 1004.25976562 1325.27734375 l 2,3,4 - 966.08203125 1325.27734375 966.08203125 1325.27734375 953.35546875 1338.00390625 c 2,5,-1 - 940.629882812 1350.73046875 l 1,6,-1 - 932.145507812 1367.69824219 l 1,7,-1 - 919.419921875 1388.90820312 l 2,8,9 - 902.452148438 1414.36035156 902.452148438 1414.36035156 906.694335938 1431.328125 c 0,10,11 - 906.694335938 1444.0546875 906.694335938 1444.0546875 915.177734375 1465.26464844 c 2,12,-1 - 919.419921875 1482.23242188 l 1,13,-1 - 923.662109375 1503.44238281 l 2,14,15 - 923.662109375 1541.62011719 923.662109375 1541.62011719 893.967773438 1567.07226562 c 0,16,17 - 860.032226562 1592.52441406 860.032226562 1592.52441406 800.64453125 1613.734375 c 0,18,19 - 783.67578125 1617.97558594 783.67578125 1617.97558594 753.982421875 1626.45996094 c 0,20,21 - 686.110351562 1643.42773438 686.110351562 1643.42773438 567.333984375 1651.91210938 c 2,22,-1 - 563.091796875 1651.91210938 l 1,23,-1 - 546.124023438 1651.91210938 l 2,24,25 - 304.330078125 1664.63769531 304.330078125 1664.63769531 206.764648438 1745.23535156 c 0,26,27 - 164.344726562 1783.4140625 164.344726562 1783.4140625 134.650390625 1821.59179688 c 0,28,29 - 117.682617188 1851.28515625 117.682617188 1851.28515625 109.198242188 1885.22265625 c 0,30,31 - 66.77734375 2042.17578125 66.77734375 2042.17578125 253.42578125 2131.2578125 c 1,32,-1 - 304.330078125 2148.22558594 l 1,33,-1 - 312.814453125 2152.46777344 l 1,34,35 - 431.58984375 2182.16210938 431.58984375 2182.16210938 571.575195312 2169.43554688 c 0,36,37 - 966.08203125 2143.984375 966.08203125 2143.984375 1233.328125 1851.28515625 c 0,38,39 - 1250.29589844 1830.07519531 1250.29589844 1830.07519531 1267.26464844 1813.10742188 c 0,40,41 - 1415.734375 1630.70214844 1415.734375 1630.70214844 1436.94433594 1444.0546875 c 1,42,-1 - 1538.75195312 1444.0546875 l 1,43,-1 - 1585.4140625 1435.5703125 l 1,44,-1 - 1610.86523438 1401.63476562 l 1,45,-1 - 1644.80175781 1325.27734375 l 1,46,-1 - 1453.91210938 1325.27734375 l 1,47,-1 - 1453.91210938 -19.435546875 l 1,48,-1 - 1369.07226562 39.9521484375 l 1,49,-1 - 1330.89453125 73.8876953125 l 1,50,-1 - 1322.41015625 171.454101562 l 1,51,-1 - 1322.41015625 404.764648438 l 1,52,-1 - 1322.41015625 1325.27734375 l 1,0,-1 -1335.13574219 1444.0546875 m 1,53,54 - 1335.13574219 1511.92578125 1335.13574219 1511.92578125 1313.92578125 1596.765625 c 0,55,56 - 1229.0859375 1893.70605469 1229.0859375 1893.70605469 881.2421875 2012.48242188 c 0,57,58 - 792.16015625 2046.41796875 792.16015625 2046.41796875 694.594726562 2059.14453125 c 0,59,60 - 686.110351562 2059.14453125 686.110351562 2059.14453125 677.625976562 2059.14453125 c 2,61,-1 - 554.607421875 2063.38574219 l 2,62,63 - 414.622070312 2059.14453125 414.622070312 2059.14453125 321.297851562 2008.24023438 c 0,64,65 - 215.248046875 1944.61035156 215.248046875 1944.61035156 211.005859375 1847.04394531 c 0,66,67 - 211.005859375 1800.38183594 211.005859375 1800.38183594 274.635742188 1783.4140625 c 2,68,-1 - 372.202148438 1766.4453125 l 1,69,-1 - 469.767578125 1762.20410156 l 2,70,71 - 495.219726562 1762.20410156 495.219726562 1762.20410156 516.4296875 1762.20410156 c 0,72,73 - 758.224609375 1749.47753906 758.224609375 1749.47753906 910.935546875 1622.21777344 c 0,74,75 - 1016.98535156 1541.62011719 1016.98535156 1541.62011719 1029.71191406 1444.0546875 c 1,76,-1 - 1335.13574219 1444.0546875 l 1,53,54 --51 1448.5 m 1,77,-1 - 934.599609375 1448.5 l 1,78,-1 - 1159 1448.5 l 1,79,-1 - 1251.40039062 1439.70019531 l 1,80,-1 - 1277.79980469 1404.5 l 1,81,-1 - 1313 1325.29980469 l 1,82,-1 - 1115 1325.29980469 l 1,83,-1 - 1115 -69.5 l 1,84,-1 - 1093 -56.2998046875 l 2,85,86 - 1062.20019531 -38.7001953125 1062.20019531 -38.7001953125 1053.40039062 -21.099609375 c 2,87,-1 - 1044.59960938 22.900390625 l 1,88,-1 - 1044.59960938 36.099609375 l 1,89,-1 - 1040.20019531 66.900390625 l 1,90,-1 - 1005 220.900390625 l 2,91,92 - 934.599609375 454.099609375 934.599609375 454.099609375 771.799804688 621.299804688 c 0,93,94 - 648.599609375 735.700195312 648.599609375 735.700195312 516.599609375 744.5 c 1,95,96 - 565 687.299804688 565 687.299804688 578.200195312 630.099609375 c 0,97,98 - 582.599609375 590.5 582.599609375 590.5 578.200195312 550.900390625 c 0,99,100 - 560.599609375 405.700195312 560.599609375 405.700195312 415.400390625 370.5 c 1,101,-1 - 336.200195312 361.700195312 l 2,102,103 - 265.799804688 366.099609375 265.799804688 366.099609375 213 405.700195312 c 0,104,105 - 177.799804688 436.5 177.799804688 436.5 155.799804688 471.700195312 c 0,106,107 - 120.599609375 533.299804688 120.599609375 533.299804688 125 616.900390625 c 0,108,109 - 133.799804688 762.099609375 133.799804688 762.099609375 243.799804688 850.099609375 c 0,110,111 - 340.599609375 933.700195312 340.599609375 933.700195312 463.799804688 924.900390625 c 0,112,113 - 679.400390625 916.099609375 679.400390625 916.099609375 890.599609375 625.700195312 c 1,114,-1 - 877.400390625 647.700195312 l 2,115,116 - 881.799804688 634.5 881.799804688 634.5 890.599609375 625.700195312 c 2,117,-1 - 908.200195312 594.900390625 l 2,118,119 - 961 520.099609375 961 520.099609375 974.200195312 476.099609375 c 1,120,-1 - 978.599609375 476.099609375 l 1,121,-1 - 978.599609375 1325.29980469 l 1,122,-1 - 287.799804688 1325.29980469 l 1,123,-1 - 98.599609375 1325.29980469 l 1,124,-1 - 10.599609375 1329.70019531 l 1,125,-1 - -15.7998046875 1369.29980469 l 1,126,-1 - -51 1448.5 l 1,77,-1 +1303 1272 m 5,0,-1 + 1047 1272 l 5,1,-1 + 1027 1272 l 5,2,-1 + 1003 1272 l 6,3,4 + 967 1272 967 1272 955 1284 c 6,5,-1 + 943 1296 l 5,6,-1 + 935 1312 l 5,7,-1 + 923 1332 l 6,8,9 + 907 1356 907 1356 911 1372 c 4,10,11 + 911 1384 911 1384 919 1404 c 6,12,-1 + 923 1420 l 5,13,-1 + 927 1440 l 6,14,15 + 927 1476 927 1476 899 1500 c 4,16,17 + 867 1524 867 1524 811 1544 c 4,18,19 + 795 1548 795 1548 767 1556 c 4,20,21 + 703 1572 703 1572 591 1580 c 6,22,-1 + 587 1580 l 5,23,-1 + 571 1580 l 6,24,25 + 343 1592 343 1592 251 1668 c 4,26,27 + 211 1704 211 1704 183 1740 c 4,28,29 + 167 1768 167 1768 159 1800 c 4,30,31 + 119 1948 119 1948 295 2032 c 5,32,-1 + 343 2048 l 5,33,-1 + 351 2052 l 5,34,35 + 463 2080 463 2080 595 2068 c 4,36,37 + 967 2044 967 2044 1219 1768 c 4,38,39 + 1235 1748 1235 1748 1251 1732 c 4,40,41 + 1391 1560 1391 1560 1411 1384 c 5,42,-1 + 1507 1384 l 5,43,-1 + 1551 1376 l 5,44,-1 + 1575 1344 l 5,45,-1 + 1607 1272 l 5,46,-1 + 1427 1272 l 5,47,-1 + 1427 4 l 5,48,-1 + 1347 60 l 5,49,-1 + 1311 92 l 5,50,-1 + 1303 184 l 5,51,-1 + 1303 404 l 5,52,-1 + 1303 1272 l 5,0,-1 +1315 1384 m 5,53,54 + 1315 1448 1315 1448 1295 1528 c 4,55,56 + 1215 1808 1215 1808 887 1920 c 4,57,58 + 803 1952 803 1952 711 1964 c 4,59,60 + 703 1964 703 1964 695 1964 c 6,61,-1 + 579 1968 l 6,62,63 + 447 1964 447 1964 359 1916 c 4,64,65 + 259 1856 259 1856 255 1764 c 4,66,67 + 255 1720 255 1720 315 1704 c 6,68,-1 + 407 1688 l 5,69,-1 + 499 1684 l 6,70,71 + 523 1684 523 1684 543 1684 c 4,72,73 + 771 1672 771 1672 915 1552 c 4,74,75 + 1015 1476 1015 1476 1027 1384 c 5,76,-1 + 1315 1384 l 5,53,54 +-25 1384 m 5,77,-1 + 871 1384 l 5,78,-1 + 1075 1384 l 5,79,-1 + 1159 1376 l 5,80,-1 + 1183 1344 l 5,81,-1 + 1215 1272 l 5,82,-1 + 1035 1272 l 5,83,-1 + 1035 4 l 5,84,-1 + 1015 16 l 6,85,86 + 987 32 987 32 979 48 c 6,87,-1 + 971 88 l 5,88,-1 + 971 100 l 5,89,-1 + 967 128 l 5,90,-1 + 935 268 l 6,91,92 + 871 480 871 480 723 632 c 4,93,94 + 611 736 611 736 491 744 c 5,95,96 + 535 692 535 692 547 640 c 4,97,98 + 551 604 551 604 547 568 c 4,99,100 + 531 436 531 436 399 404 c 5,101,-1 + 327 396 l 6,102,103 + 263 400 263 400 215 436 c 4,104,105 + 183 464 183 464 163 496 c 4,106,107 + 131 552 131 552 135 628 c 4,108,109 + 143 760 143 760 243 840 c 4,110,111 + 331 916 331 916 443 908 c 4,112,113 + 639 900 639 900 831 636 c 5,114,-1 + 819 656 l 6,115,116 + 823 644 823 644 831 636 c 6,117,-1 + 847 608 l 6,118,119 + 895 540 895 540 907 500 c 5,120,-1 + 911 500 l 5,121,-1 + 911 1272 l 5,122,-1 + 283 1272 l 5,123,-1 + 111 1272 l 5,124,-1 + 31 1276 l 5,125,-1 + 7 1312 l 5,126,-1 + -25 1384 l 5,77,-1 1273 -400 m 1,127,-1 313 -400 l 1,128,-1 313 -300 l 1,129,-1 @@ -2543,97 +2548,97 @@ SplineSet EndSplineSet Fore SplineSet --16.9716796875 1448.24804688 m 5,0,-1 - 479.978515625 1448.24804688 l 5,1,-1 - 610.9921875 1448.24804688 l 5,2,-1 - 669.723632812 1439.21289062 l 5,3,-1 - 696.829101562 1403.0703125 l 5,4,-1 - 732.971679688 1321.75195312 l 5,5,-1 - 701.346679688 1321.75195312 l 5,6,-1 - 669.723632812 1321.75195312 l 5,7,-1 - 606.473632812 1317.234375 l 5,8,-1 - 520.637695312 1272.05664062 l 6,9,10 - 430.283203125 1213.32714844 430.283203125 1213.32714844 353.481445312 1122.97265625 c 4,11,12 - 213.43359375 946.780273438 213.43359375 946.780273438 190.844726562 707.341796875 c 5,13,-1 - 195.362304688 544.704101562 l 6,14,15 - 204.396484375 314.299804688 204.396484375 314.299804688 303.788085938 165.21484375 c 5,16,17 - 330.893554688 210.391601562 330.893554688 210.391601562 367.034179688 242.016601562 c 6,18,-1 - 430.283203125 269.123046875 l 5,19,20 - 565.814453125 305.264648438 565.814453125 305.264648438 642.6171875 187.803710938 c 4,21,22 - 692.311523438 111.002929688 692.311523438 111.002929688 665.205078125 25.1650390625 c 6,23,-1 - 656.169921875 2.5771484375 l 6,24,25 - 642.6171875 -24.529296875 642.6171875 -24.529296875 624.545898438 -42.6005859375 c 4,26,27 - 556.780273438 -119.401367188 556.780273438 -119.401367188 443.836914062 -105.848632812 c 4,28,29 - 344.446289062 -96.8125 344.446289062 -96.8125 267.645507812 -29.046875 c 4,30,31 - 199.879882812 34.2021484375 199.879882812 34.2021484375 154.703125 156.180664062 c 6,32,-1 - 136.631835938 214.911132812 l 6,33,34 - 100.489257812 359.4765625 100.489257812 359.4765625 91.4541015625 535.66796875 c 4,35,36 - 77.9013671875 811.25 77.9013671875 811.25 141.149414062 1010.02929688 c 4,37,38 - 186.327148438 1141.04296875 186.327148438 1141.04296875 303.788085938 1321.75195312 c 5,39,-1 - 123.079101562 1321.75195312 l 5,40,-1 - 46.2763671875 1330.78808594 l 5,41,-1 - 19.1708984375 1366.9296875 l 5,42,-1 - -16.9716796875 1448.24804688 l 5,0,-1 -481.461914062 1448.62304688 m 5,43,-1 - 1250.53027344 1448.62304688 l 5,44,-1 - 1463.90625 1448.62304688 l 5,45,-1 - 1548.3671875 1439.73242188 l 5,46,-1 - 1575.0390625 1404.16992188 l 5,47,-1 - 1610.60351562 1324.15429688 l 5,48,-1 - 1410.5625 1324.15429688 l 5,49,-1 - 1410.5625 -85.0185546875 l 5,50,-1 - 1392.78027344 -76.1279296875 l 6,51,52 - 1353.33886719 -56.171875 1353.33886719 -56.171875 1348.32714844 -36.119140625 c 6,53,-1 - 1343.8828125 -18.337890625 l 5,54,-1 - 1339.4375 -0.5576171875 l 5,55,-1 - 1334.99121094 17.224609375 l 5,56,-1 - 1308.3203125 106.131835938 l 6,57,58 - 1281 197 1281 197 1179.40429688 301.725585938 c 4,59,60 - 1028 457 1028 457 814.885742188 559.555664062 c 5,61,-1 - 663.745117188 612.899414062 l 5,62,-1 - 632.627929688 621.790039062 l 5,63,-1 - 628.182617188 621.790039062 l 5,64,-1 - 623.737304688 621.790039062 l 5,65,-1 - 619.291992188 626.235351562 l 5,66,-1 - 574.837890625 639.572265625 l 5,67,-1 - 548.166015625 675.133789062 l 5,68,-1 - 530.385742188 697.361328125 l 5,69,-1 - 508.159179688 732.923828125 l 5,70,-1 - 463.705078125 808.494140625 l 5,71,72 - 819.40234375 1038.25976562 819.40234375 1038.25976562 943.801757812 1088.54980469 c 6,73,-1 - 1152.73339844 1173.01269531 l 5,74,-1 - 1188.29589844 1186.34960938 l 5,75,-1 - 1206.07617188 1190.79394531 l 5,76,-1 - 1259.41992188 1213.02050781 l 6,77,78 - 1277.20214844 1220.08007812 1277.20214844 1220.08007812 1277.20214844 1275.25488281 c 6,79,-1 - 1277.20214844 1279.70019531 l 5,80,-1 - 1277.20214844 1284.14550781 l 5,81,-1 - 1277.20214844 1288.58984375 l 5,82,-1 - 1272.75585938 1297.48242188 l 5,83,-1 - 1272.75585938 1324.15429688 l 5,84,-1 - 788.190429688 1324.15429688 l 5,85,-1 - 619.268554688 1324.15429688 l 5,86,-1 - 543.698242188 1328.59960938 l 5,87,-1 - 517.025390625 1368.60742188 l 5,88,-1 - 481.461914062 1448.62304688 l 5,43,-1 -708.19921875 759.595703125 m 5,89,90 - 779.32421875 746.259765625 779.32421875 746.259765625 881.56640625 675.133789062 c 4,91,92 - 979.364257812 617.344726562 979.364257812 617.344726562 1077.16113281 523.9921875 c 260,93,94 - 1174.95996094 430.640625 1174.95996094 430.640625 1272.75585938 301.725585938 c 5,95,-1 - 1272.75585938 1039.65234375 l 5,96,97 - 1054.93554688 964.08203125 1054.93554688 964.08203125 868.232421875 857.393554688 c 6,98,-1 - 814.885742188 830.720703125 l 5,99,-1 - 752.65234375 795.159179688 l 5,100,-1 - 708.19921875 759.595703125 l 5,89,90 -837.088867188 346.178710938 m 6,101,-1 - 863.76171875 350.625 l 5,102,-1 - 894.87890625 346.178710938 l 6,103,104 - 988 333 988 333 992.67578125 221.709960938 c 4,105,106 - 997 115.002929688 997 115.002929688 890.432617188 97.2412109375 c 6,107,-1 - 863.76171875 92.7958984375 l 5,108,-1 - 832.645507812 97.2412109375 l 6,109,110 - 740 110 740 110 734.845703125 221.709960938 c 4,111,112 - 730 328 730 328 837.088867188 346.178710938 c 6,101,-1 +490 1384 m 5,0,-1 + 1290 1384 l 5,1,-1 + 1482 1384 l 5,2,-1 + 1558 1376 l 5,3,-1 + 1582 1344 l 5,4,-1 + 1614 1272 l 5,5,-1 + 1434 1272 l 5,6,-1 + 1434 4 l 5,7,-1 + 1418 12 l 6,8,9 + 1390 28 1390 28 1378 48 c 6,10,-1 + 1374 64 l 5,11,-1 + 1370 80 l 5,12,-1 + 1366 96 l 5,13,-1 + 1342 176 l 6,14,15 + 1314 260 1314 260 1226 352 c 4,16,17 + 1090 492 1090 492 898 584 c 5,18,-1 + 762 632 l 5,19,-1 + 734 640 l 5,20,-1 + 730 640 l 5,21,-1 + 726 640 l 5,22,-1 + 722 644 l 5,23,-1 + 682 656 l 5,24,-1 + 658 688 l 5,25,-1 + 642 708 l 5,26,-1 + 622 740 l 5,27,-1 + 582 808 l 5,28,29 + 842 976 842 976 1014 1060 c 6,30,-1 + 1202 1136 l 5,31,-1 + 1234 1148 l 5,32,-1 + 1250 1152 l 5,33,-1 + 1298 1172 l 6,34,35 + 1314 1184 1314 1184 1314 1228 c 6,36,-1 + 1314 1232 l 5,37,-1 + 1314 1236 l 5,38,-1 + 1314 1240 l 5,39,-1 + 1310 1248 l 5,40,-1 + 1310 1272 l 5,41,-1 + 766 1272 l 5,42,-1 + 614 1272 l 5,43,-1 + 546 1276 l 5,44,-1 + 522 1312 l 5,45,-1 + 490 1384 l 5,0,-1 +802 764 m 5,46,47 + 866 752 866 752 958 688 c 4,48,49 + 1046 636 1046 636 1134 552 c 260,50,51 + 1222 468 1222 468 1310 352 c 5,52,-1 + 1310 1016 l 5,53,54 + 1114 948 1114 948 946 852 c 6,55,-1 + 898 828 l 5,56,-1 + 842 796 l 5,57,-1 + 802 764 l 5,46,47 +810 392 m 6,58,-1 + 834 396 l 5,59,-1 + 862 392 l 6,60,61 + 942 376 942 376 950 280 c 4,62,63 + 950 188 950 188 858 168 c 6,64,-1 + 834 164 l 5,65,-1 + 806 168 l 6,66,67 + 726 184 726 184 718 280 c 4,68,69 + 718 372 718 372 810 392 c 6,58,-1 +-30 1384 m 5,70,-1 + 410 1384 l 5,71,-1 + 526 1384 l 5,72,-1 + 578 1376 l 5,73,-1 + 602 1344 l 5,74,-1 + 634 1272 l 5,75,-1 + 606 1272 l 5,76,-1 + 578 1272 l 5,77,-1 + 522 1268 l 5,78,-1 + 446 1228 l 6,79,80 + 366 1176 366 1176 298 1096 c 4,81,82 + 174 940 174 940 154 728 c 5,83,-1 + 158 584 l 6,84,85 + 166 380 166 380 254 248 c 5,86,87 + 278 288 278 288 310 316 c 6,88,-1 + 366 340 l 5,89,90 + 486 372 486 372 554 268 c 4,91,92 + 598 200 598 200 574 124 c 6,93,-1 + 566 104 l 6,94,95 + 554 80 554 80 538 64 c 4,96,97 + 478 -4 478 -4 378 8 c 4,98,99 + 290 16 290 16 222 76 c 4,100,101 + 162 132 162 132 122 240 c 6,102,-1 + 106 292 l 6,103,104 + 74 420 74 420 66 576 c 4,105,106 + 54 820 54 820 110 996 c 4,107,108 + 150 1112 150 1112 254 1272 c 5,109,-1 + 94 1272 l 5,110,-1 + 26 1280 l 5,111,-1 + 2 1312 l 5,112,-1 + -30 1384 l 5,70,-1 1273 -400 m 1,113,-1 313 -400 l 1,114,-1 313 -300 l 1,115,-1 @@ -2779,6 +2784,7 @@ EndChar StartChar: bracketleft Encoding: 91 91 62 Width: 1582 +VWidth: 575 Flags: W LayerCount: 2 Back @@ -2848,64 +2854,69 @@ SplineSet EndSplineSet Fore SplineSet -331 1157 m 1,0,-1 - 348 1189 l 1,1,2 - 538 1126 538 1126 654.5 959.5 c 128,-1,3 - 771 793 771 793 771 587 c 0,4,5 - 771 344 771 344 623 170 c 128,-1,6 - 475 -4 475 -4 273 -4 c 0,7,8 - 159 -4 159 -4 90 70 c 128,-1,9 - 21 144 21 144 21 259 c 0,10,11 - 21 450 21 450 175 606 c 128,-1,12 - 329 762 329 762 481 762 c 0,13,14 - 567 762 567 762 632 700 c 1,15,16 - 616 1052 616 1052 331 1157 c 1,0,-1 -480 719 m 0,17,18 - 360 719 360 719 257.5 546.5 c 128,-1,19 - 155 374 155 374 155 206 c 0,20,21 - 155 124 155 124 195 80 c 128,-1,22 - 235 36 235 36 302 36 c 0,23,24 - 410 36 410 36 512.5 207 c 128,-1,25 - 615 378 615 378 615 552 c 0,26,27 - 615 719 615 719 480 719 c 0,17,18 -1564 742 m 1,28,-1 - 1403 183 l 1,29,-1 - 1385 108 l 2,30,31 - 1382 97 1382 97 1382 90 c 0,32,33 - 1382 77 1382 77 1391 67 c 0,34,35 - 1397 59 1397 59 1407 59 c 0,36,37 - 1418 59 1418 59 1435 73 c 0,38,39 - 1467 96 1467 96 1521 172 c 1,40,-1 - 1549 152 l 1,41,42 - 1492 66 1492 66 1432 21 c 128,-1,43 - 1372 -24 1372 -24 1320 -24 c 0,44,45 - 1285 -24 1285 -24 1267 -6.5 c 128,-1,46 - 1249 11 1249 11 1249 45 c 0,47,48 - 1249 86 1249 86 1268 152 c 2,49,-1 - 1285 214 l 1,50,51 - 1177 73 1177 73 1086 16 c 0,52,53 - 1021 -24 1021 -24 958 -24 c 0,54,55 - 898 -24 898 -24 854.5 26 c 128,-1,56 - 811 76 811 76 811 163 c 0,57,58 - 811 294 811 294 889.5 440 c 128,-1,59 - 968 586 968 586 1089 673 c 0,60,61 - 1184 742 1184 742 1268 742 c 0,62,63 - 1319 742 1319 742 1352.5 716 c 128,-1,64 - 1386 690 1386 690 1403 629 c 1,65,-1 - 1433 723 l 1,66,-1 - 1564 742 l 1,28,-1 -1270 700 m 0,67,68 - 1217 700 1217 700 1158 650 c 0,69,70 - 1074 580 1074 580 1008.5 442 c 128,-1,71 - 943 304 943 304 943 193 c 0,72,73 - 943 137 943 137 971 104.5 c 128,-1,74 - 999 72 999 72 1035 72 c 0,75,76 - 1125 72 1125 72 1230 205 c 0,77,78 - 1372 381 1372 381 1372 567 c 0,79,80 - 1372 637 1372 637 1344.5 668.5 c 128,-1,81 - 1317 700 1317 700 1270 700 c 0,67,68 +960 1384 m 1,0,-1 + 1344 1384 l 1,1,-1 + 1444 1384 l 1,2,-1 + 1492 1376 l 1,3,-1 + 1516 1344 l 1,4,-1 + 1548 1272 l 1,5,-1 + 1264 1272 l 1,6,-1 + 1264 4 l 1,7,-1 + 1184 60 l 1,8,-1 + 1144 92 l 1,9,-1 + 1136 184 l 1,10,-1 + 1136 404 l 1,11,-1 + 1136 1272 l 1,12,-1 + 1056 1272 l 1,13,-1 + 1016 1280 l 1,14,-1 + 992 1312 l 1,15,-1 + 960 1384 l 1,0,-1 +40 1384 m 1,16,-1 + 840 1384 l 1,17,-1 + 1032 1384 l 1,18,-1 + 1108 1376 l 1,19,-1 + 1132 1344 l 1,20,-1 + 1164 1272 l 1,21,-1 + 292 1272 l 1,22,-1 + 292 696 l 1,23,24 + 468 872 468 872 692 1008 c 2,25,-1 + 796 1068 l 1,26,-1 + 812 1076 l 1,27,-1 + 848 1092 l 2,28,29 + 860 1096 860 1096 880 1076 c 2,30,-1 + 888 1068 l 1,31,-1 + 920 1036 l 1,32,-1 + 948 1004 l 1,33,-1 + 976 964 l 2,34,35 + 984 944 984 944 964 920 c 2,36,-1 + 948 888 l 1,37,-1 + 932 856 l 2,38,39 + 884 748 884 748 864 616 c 0,40,41 + 832 372 832 372 916 156 c 2,42,-1 + 948 80 l 1,43,-1 + 952 68 l 1,44,-1 + 984 4 l 1,45,-1 + 916 40 l 1,46,-1 + 876 92 l 1,47,-1 + 820 200 l 2,48,49 + 724 400 724 400 752 828 c 1,50,-1 + 732 672 l 1,51,-1 + 752 828 l 1,52,53 + 528 664 528 664 408 544 c 2,54,-1 + 368 500 l 1,55,-1 + 328 456 l 1,56,-1 + 316 444 l 1,57,-1 + 292 428 l 1,58,-1 + 260 448 l 1,59,-1 + 248 464 l 1,60,-1 + 224 492 l 2,61,62 + 176 540 176 540 168 588 c 0,63,64 + 160 736 160 736 168 1044 c 2,65,-1 + 168 1272 l 1,66,-1 + 96 1276 l 1,67,-1 + 72 1312 l 1,68,-1 + 40 1384 l 1,16,-1 EndSplineSet -Validated: 1 EndChar StartChar: backslash @@ -3043,103 +3054,194 @@ SplineSet EndSplineSet Fore SplineSet -2722 -1200 m 1,0,-1 - 2769 -1200 l 1,1,2 - 2672 -1350 2672 -1350 2542 -1451 c 0,3,4 - 2357 -1594 2357 -1594 2105.5 -1672 c 128,-1,5 - 1854 -1750 1854 -1750 1584 -1750 c 0,6,7 - 1189 -1750 1189 -1750 863 -1597.5 c 128,-1,8 - 537 -1445 537 -1445 396 -1200 c 1,9,-1 - 450 -1200 l 1,10,11 - 537 -1322 537 -1322 687.5 -1400.5 c 128,-1,12 - 838 -1479 838 -1479 1069 -1518 c 128,-1,13 - 1300 -1557 1300 -1557 1551 -1557 c 0,14,15 - 1824 -1557 1824 -1557 2047 -1524 c 0,16,17 - 2223 -1498 2223 -1498 2329.5 -1461.5 c 128,-1,18 - 2436 -1425 2436 -1425 2534 -1362.5 c 128,-1,19 - 2632 -1300 2632 -1300 2722 -1200 c 1,0,-1 -1842 701 m 1,20,-1 - 2127 747 l 1,21,-1 - 2008 346 l 1,22,23 - 2153 593 2153 593 2271 691 c 0,24,25 - 2337 747 2337 747 2380 747 c 0,26,27 - 2407 747 2407 747 2422.5 731 c 128,-1,28 - 2438 715 2438 715 2438 684 c 0,29,30 - 2438 630 2438 630 2410 580 c 0,31,32 - 2390 543 2390 543 2353 543 c 0,33,34 - 2334 543 2334 543 2320.5 555.5 c 128,-1,35 - 2307 568 2307 568 2304 594 c 0,36,37 - 2302 609 2302 609 2296 614 c 0,38,39 - 2290 621 2290 621 2281 621 c 0,40,41 - 2267 621 2267 621 2254 614 c 0,42,43 - 2233 603 2233 603 2189 550 c 0,44,45 - 2120 469 2120 469 2040 340 c 0,46,47 - 2006 286 2006 286 1981 217 c 0,48,49 - 1946 123 1946 123 1941 104 c 2,50,-1 - 1915 0 l 1,51,-1 - 1789 0 l 1,52,-1 - 1941 513 l 2,53,54 - 1968 602 1968 602 1968 640 c 0,55,56 - 1968 655 1968 655 1955 665 c 0,57,58 - 1939 678 1939 678 1912 678 c 0,59,60 - 1894 678 1894 678 1848 670 c 1,61,-1 - 1842 701 l 1,20,-1 -928 1161 m 1,62,-1 - 945 1193 l 1,63,64 - 1135 1130 1135 1130 1251.5 963.5 c 128,-1,65 - 1368 797 1368 797 1368 590 c 0,66,67 - 1368 348 1368 348 1220 174 c 128,-1,68 - 1072 0 1072 0 870 0 c 0,69,70 - 756 0 756 0 687 74 c 128,-1,71 - 618 148 618 148 618 263 c 0,72,73 - 618 454 618 454 772 610 c 128,-1,74 - 926 766 926 766 1078 766 c 0,75,76 - 1164 766 1164 766 1229 703 c 1,77,78 - 1213 1056 1213 1056 928 1161 c 1,62,-1 -1077 722 m 0,79,80 - 957 722 957 722 854.5 550 c 128,-1,81 - 752 378 752 378 752 210 c 0,82,83 - 752 128 752 128 792 84 c 128,-1,84 - 832 40 832 40 898 40 c 0,85,86 - 1006 40 1006 40 1109 211 c 128,-1,87 - 1212 382 1212 382 1212 556 c 0,88,89 - 1212 722 1212 722 1077 722 c 0,79,80 -1695 1071 m 0,90,91 - 1730 1071 1730 1071 1754 1047 c 128,-1,92 - 1778 1023 1778 1023 1778 988 c 0,93,94 - 1778 955 1778 955 1753.5 930.5 c 128,-1,95 - 1729 906 1729 906 1695 906 c 256,96,97 - 1661 906 1661 906 1637 930.5 c 128,-1,98 - 1613 955 1613 955 1613 988 c 0,99,100 - 1613 1023 1613 1023 1637 1047 c 128,-1,101 - 1661 1071 1661 1071 1695 1071 c 0,90,91 -1706 743 m 1,102,-1 - 1543 165 l 2,103,104 - 1526 107 1526 107 1526 95 c 0,105,106 - 1526 82 1526 82 1534 73.5 c 128,-1,107 - 1542 65 1542 65 1553 65 c 0,108,109 - 1565 65 1565 65 1582 78 c 0,110,111 - 1629 116 1629 116 1677 184 c 1,112,-1 - 1706 165 l 1,113,114 - 1650 79 1650 79 1574 21 c 0,115,116 - 1518 -23 1518 -23 1467 -23 c 0,117,118 - 1433 -23 1433 -23 1411.5 -3 c 128,-1,119 - 1390 17 1390 17 1390 48 c 0,120,121 - 1390 78 1390 78 1411 149 c 2,122,-1 - 1518 519 l 2,123,124 - 1544 610 1544 610 1544 633 c 0,125,126 - 1544 651 1544 651 1531.5 662.5 c 128,-1,127 - 1519 674 1519 674 1496 674 c 0,128,129 - 1478 674 1478 674 1421 665 c 1,130,-1 - 1421 697 l 1,131,-1 - 1706 743 l 1,102,-1 +1720 1384 m 5,0,-1 + 2520 1384 l 5,1,-1 + 2712 1384 l 5,2,-1 + 2788 1376 l 5,3,-1 + 2812 1344 l 5,4,-1 + 2844 1272 l 5,5,-1 + 2664 1272 l 5,6,-1 + 2664 4 l 5,7,-1 + 2648 12 l 6,8,9 + 2620 28 2620 28 2608 48 c 6,10,-1 + 2604 64 l 5,11,-1 + 2600 80 l 5,12,-1 + 2596 96 l 5,13,-1 + 2572 176 l 6,14,15 + 2544 260 2544 260 2456 352 c 4,16,17 + 2320 492 2320 492 2128 584 c 5,18,-1 + 1992 632 l 5,19,-1 + 1964 640 l 5,20,-1 + 1960 640 l 5,21,-1 + 1956 640 l 5,22,-1 + 1952 644 l 5,23,-1 + 1912 656 l 5,24,-1 + 1888 688 l 5,25,-1 + 1872 708 l 5,26,-1 + 1852 740 l 5,27,-1 + 1812 808 l 5,28,29 + 2072 976 2072 976 2244 1060 c 6,30,-1 + 2432 1136 l 5,31,-1 + 2464 1148 l 5,32,-1 + 2480 1152 l 5,33,-1 + 2528 1172 l 6,34,35 + 2544 1184 2544 1184 2544 1228 c 6,36,-1 + 2544 1232 l 5,37,-1 + 2544 1236 l 5,38,-1 + 2544 1240 l 5,39,-1 + 2540 1248 l 5,40,-1 + 2540 1272 l 5,41,-1 + 1996 1272 l 5,42,-1 + 1844 1272 l 5,43,-1 + 1776 1276 l 5,44,-1 + 1752 1312 l 5,45,-1 + 1720 1384 l 5,0,-1 +2032 764 m 5,46,47 + 2096 752 2096 752 2188 688 c 4,48,49 + 2276 636 2276 636 2364 552 c 260,50,51 + 2452 468 2452 468 2540 352 c 5,52,-1 + 2540 1016 l 5,53,54 + 2344 948 2344 948 2176 852 c 6,55,-1 + 2128 828 l 5,56,-1 + 2072 796 l 5,57,-1 + 2032 764 l 5,46,47 +2040 392 m 6,58,-1 + 2064 396 l 5,59,-1 + 2092 392 l 6,60,61 + 2172 376 2172 376 2180 280 c 4,62,63 + 2180 188 2180 188 2088 168 c 6,64,-1 + 2064 164 l 5,65,-1 + 2036 168 l 6,66,67 + 1956 184 1956 184 1948 280 c 4,68,69 + 1948 372 1948 372 2040 392 c 6,58,-1 +436 1388 m 5,70,-1 + 360 1456 l 5,71,-1 + 336 1480 l 6,72,73 + 296 1528 296 1528 264 1588 c 5,74,-1 + 248 1656 l 6,75,76 + 220 1812 220 1812 436 1932 c 6,77,-1 + 480 1956 l 5,78,-1 + 512 1968 l 5,79,-1 + 544 1980 l 5,80,-1 + 648 2012 l 6,81,82 + 736 2036 736 2036 824 2040 c 4,83,84 + 924 2048 924 2048 992 2036 c 4,85,86 + 1212 2008 1212 2008 1452 1848 c 4,87,88 + 1612 1736 1612 1736 1696 1628 c 6,89,-1 + 1740 1564 l 5,90,-1 + 1744 1556 l 5,91,-1 + 1748 1552 l 5,92,-1 + 1748 1536 l 5,93,-1 + 1732 1528 l 5,94,-1 + 1724 1532 l 5,95,-1 + 1688 1556 l 5,96,-1 + 1676 1568 l 5,97,-1 + 1644 1608 l 5,98,-1 + 1636 1620 l 5,99,-1 + 1616 1648 l 6,100,101 + 1556 1716 1556 1716 1492 1752 c 4,102,103 + 1280 1912 1280 1912 1024 1936 c 5,104,-1 + 884 1932 l 6,105,106 + 748 1920 748 1920 616 1868 c 4,107,108 + 464 1816 464 1816 388 1708 c 4,109,110 + 344 1656 344 1656 352 1600 c 6,111,-1 + 352 1596 l 6,112,113 + 352 1556 352 1556 372 1524 c 260,114,115 + 392 1492 392 1492 468 1420 c 4,116,117 + 496 1392 496 1392 528 1384 c 4,118,119 + 544 1376 544 1376 576 1384 c 6,120,-1 + 600 1384 l 5,121,-1 + 732 1384 l 5,122,-1 + 752 1384 l 5,123,-1 + 768 1384 l 5,124,-1 + 772 1384 l 5,125,-1 + 800 1380 l 5,126,-1 + 812 1376 l 5,127,-1 + 828 1356 l 5,128,-1 + 832 1352 l 5,129,-1 + 836 1344 l 5,130,-1 + 852 1308 l 5,131,-1 + 868 1272 l 5,132,-1 + 612 1272 l 5,133,-1 + 612 4 l 5,134,-1 + 532 60 l 5,135,-1 + 492 92 l 5,136,-1 + 484 184 l 5,137,-1 + 484 404 l 5,138,-1 + 484 1272 l 5,139,-1 + 384 1272 l 5,140,-1 + 336 1280 l 5,141,-1 + 312 1312 l 5,142,-1 + 280 1384 l 5,143,-1 + 436 1384 l 5,144,-1 + 436 1388 l 5,70,-1 +720 1384 m 5,145,-1 + 1520 1384 l 5,146,-1 + 1712 1384 l 5,147,-1 + 1788 1376 l 5,148,-1 + 1812 1344 l 5,149,-1 + 1844 1272 l 5,150,-1 + 972 1272 l 5,151,-1 + 972 696 l 5,152,153 + 1148 872 1148 872 1372 1008 c 6,154,-1 + 1476 1068 l 5,155,-1 + 1492 1076 l 5,156,-1 + 1528 1092 l 6,157,158 + 1540 1096 1540 1096 1560 1076 c 6,159,-1 + 1568 1068 l 5,160,-1 + 1600 1036 l 5,161,-1 + 1628 1004 l 5,162,-1 + 1656 964 l 6,163,164 + 1664 944 1664 944 1644 920 c 6,165,-1 + 1628 888 l 5,166,-1 + 1612 856 l 6,167,168 + 1564 748 1564 748 1544 616 c 4,169,170 + 1512 372 1512 372 1596 156 c 6,171,-1 + 1628 80 l 5,172,-1 + 1632 68 l 5,173,-1 + 1664 4 l 5,174,-1 + 1596 40 l 5,175,-1 + 1556 92 l 5,176,-1 + 1500 200 l 6,177,178 + 1404 400 1404 400 1432 828 c 5,179,-1 + 1412 672 l 5,180,-1 + 1432 828 l 5,181,182 + 1208 664 1208 664 1088 544 c 6,183,-1 + 1048 500 l 5,184,-1 + 1008 456 l 5,185,-1 + 996 444 l 5,186,-1 + 972 428 l 5,187,-1 + 940 448 l 5,188,-1 + 928 464 l 5,189,-1 + 904 492 l 6,190,191 + 856 540 856 540 848 588 c 4,192,193 + 840 736 840 736 848 1044 c 6,194,-1 + 848 1272 l 5,195,-1 + 776 1276 l 5,196,-1 + 752 1312 l 5,197,-1 + 720 1384 l 5,145,-1 +2722 -1200 m 1,198,-1 + 2769 -1200 l 1,199,200 + 2672 -1350 2672 -1350 2542 -1451 c 0,201,202 + 2357 -1594 2357 -1594 2105.5 -1672 c 128,-1,203 + 1854 -1750 1854 -1750 1584 -1750 c 0,204,205 + 1189 -1750 1189 -1750 863 -1597.5 c 128,-1,206 + 537 -1445 537 -1445 396 -1200 c 1,207,-1 + 450 -1200 l 1,208,209 + 537 -1322 537 -1322 687.5 -1400.5 c 128,-1,210 + 838 -1479 838 -1479 1069 -1518 c 128,-1,211 + 1300 -1557 1300 -1557 1551 -1557 c 0,212,213 + 1824 -1557 1824 -1557 2047 -1524 c 0,214,215 + 2223 -1498 2223 -1498 2329.5 -1461.5 c 128,-1,216 + 2436 -1425 2436 -1425 2534 -1362.5 c 128,-1,217 + 2632 -1300 2632 -1300 2722 -1200 c 1,198,-1 EndSplineSet -Validated: 1 EndChar StartChar: bracketright Encoding: 93 93 64 Width: 1582 +VWidth: 575 Flags: W LayerCount: 2 Back @@ -3191,70 +3293,84 @@ SplineSet EndSplineSet Fore SplineSet -1448 742 m 1,0,-1 - 1288 183 l 1,1,-1 - 1269 108 l 2,2,3 - 1267 97 1267 97 1267 90 c 0,4,5 - 1267 77 1267 77 1275 67 c 0,6,7 - 1282 59 1282 59 1292 59 c 256,8,9 - 1302 59 1302 59 1320 73 c 0,10,11 - 1352 96 1352 96 1405 172 c 1,12,-1 - 1434 152 l 1,13,14 - 1377 66 1377 66 1316.5 21 c 128,-1,15 - 1256 -24 1256 -24 1205 -24 c 0,16,17 - 1170 -24 1170 -24 1152 -6.5 c 128,-1,18 - 1134 11 1134 11 1134 45 c 0,19,20 - 1134 86 1134 86 1152 152 c 2,21,-1 - 1170 214 l 1,22,23 - 1061 73 1061 73 971 16 c 0,24,25 - 906 -24 906 -24 843 -24 c 0,26,27 - 783 -24 783 -24 739 26 c 128,-1,28 - 695 76 695 76 695 163 c 0,29,30 - 695 294 695 294 774 440 c 128,-1,31 - 853 586 853 586 974 673 c 0,32,33 - 1069 742 1069 742 1153 742 c 0,34,35 - 1203 742 1203 742 1236.5 716 c 128,-1,36 - 1270 690 1270 690 1288 629 c 1,37,-1 - 1317 723 l 1,38,-1 - 1448 742 l 1,0,-1 -1155 700 m 0,39,40 - 1102 700 1102 700 1042 650 c 0,41,42 - 958 580 958 580 892.5 442 c 128,-1,43 - 827 304 827 304 827 193 c 0,44,45 - 827 137 827 137 855 104.5 c 128,-1,46 - 883 72 883 72 920 72 c 0,47,48 - 1009 72 1009 72 1115 205 c 0,49,50 - 1256 381 1256 381 1256 567 c 0,51,52 - 1256 637 1256 637 1229 668.5 c 128,-1,53 - 1202 700 1202 700 1155 700 c 0,39,40 -190 700 m 1,54,-1 - 474 747 l 1,55,-1 - 355 346 l 1,56,57 - 500 592 500 592 618 691 c 0,58,59 - 685 747 685 747 727 747 c 0,60,61 - 754 747 754 747 769.5 730.5 c 128,-1,62 - 785 714 785 714 785 684 c 0,63,64 - 785 629 785 629 757 580 c 0,65,66 - 737 543 737 543 700 543 c 0,67,68 - 681 543 681 543 667.5 555.5 c 128,-1,69 - 654 568 654 568 651 593 c 0,70,71 - 649 609 649 609 643 614 c 0,72,73 - 637 620 637 620 628 620 c 0,74,75 - 614 620 614 620 601 614 c 0,76,77 - 580 602 580 602 536 549 c 0,78,79 - 468 469 468 469 388 340 c 0,80,81 - 353 285 353 285 328 217 c 0,82,83 - 294 123 294 123 289 104 c 2,84,-1 - 262 0 l 1,85,-1 - 136 0 l 1,86,-1 - 289 512 l 2,87,88 - 315 601 315 601 315 639 c 0,89,90 - 315 654 315 654 303 664 c 0,91,92 - 286 677 286 677 259 677 c 0,93,94 - 242 677 242 677 195 670 c 1,95,-1 - 190 700 l 1,54,-1 +1000 1384 m 1,0,-1 + 1384 1384 l 1,1,-1 + 1484 1384 l 1,2,-1 + 1532 1376 l 1,3,-1 + 1556 1344 l 1,4,-1 + 1588 1272 l 1,5,-1 + 1304 1272 l 1,6,-1 + 1304 4 l 1,7,-1 + 1224 60 l 1,8,-1 + 1184 92 l 1,9,-1 + 1176 184 l 1,10,-1 + 1176 404 l 1,11,-1 + 1176 1272 l 1,12,-1 + 1096 1272 l 1,13,-1 + 1056 1280 l 1,14,-1 + 1032 1312 l 1,15,-1 + 1000 1384 l 1,0,-1 +0 1384 m 1,16,-1 + 800 1384 l 1,17,-1 + 992 1384 l 1,18,-1 + 1068 1376 l 1,19,-1 + 1092 1344 l 1,20,-1 + 1124 1272 l 1,21,-1 + 944 1272 l 1,22,-1 + 944 4 l 1,23,-1 + 928 12 l 2,24,25 + 900 28 900 28 888 48 c 2,26,-1 + 884 64 l 1,27,-1 + 880 80 l 1,28,-1 + 876 96 l 1,29,-1 + 852 176 l 2,30,31 + 824 260 824 260 736 352 c 0,32,33 + 600 492 600 492 408 584 c 1,34,-1 + 272 632 l 1,35,-1 + 244 640 l 1,36,-1 + 240 640 l 1,37,-1 + 236 640 l 1,38,-1 + 232 644 l 1,39,-1 + 192 656 l 1,40,-1 + 168 688 l 1,41,-1 + 152 708 l 1,42,-1 + 132 740 l 1,43,-1 + 92 808 l 1,44,45 + 352 976 352 976 524 1060 c 2,46,-1 + 712 1136 l 1,47,-1 + 744 1148 l 1,48,-1 + 760 1152 l 1,49,-1 + 808 1172 l 2,50,51 + 824 1184 824 1184 824 1228 c 2,52,-1 + 824 1232 l 1,53,-1 + 824 1236 l 1,54,-1 + 824 1240 l 1,55,-1 + 820 1248 l 1,56,-1 + 820 1272 l 1,57,-1 + 276 1272 l 1,58,-1 + 124 1272 l 1,59,-1 + 56 1276 l 1,60,-1 + 32 1312 l 1,61,-1 + 0 1384 l 1,16,-1 +312 764 m 1,62,63 + 376 752 376 752 468 688 c 0,64,65 + 556 636 556 636 644 552 c 256,66,67 + 732 468 732 468 820 352 c 1,68,-1 + 820 1016 l 1,69,70 + 624 948 624 948 456 852 c 2,71,-1 + 408 828 l 1,72,-1 + 352 796 l 1,73,-1 + 312 764 l 1,62,63 +320 392 m 2,74,-1 + 344 396 l 1,75,-1 + 372 392 l 2,76,77 + 452 376 452 376 460 280 c 0,78,79 + 460 188 460 188 368 168 c 2,80,-1 + 344 164 l 1,81,-1 + 316 168 l 2,82,83 + 236 184 236 184 228 280 c 0,84,85 + 228 372 228 372 320 392 c 2,74,-1 EndSplineSet -Validated: 1 EndChar StartChar: asciicircum @@ -3357,6 +3473,7 @@ EndChar StartChar: d Encoding: 100 100 71 Width: 1582 +VWidth: 575 Flags: W LayerCount: 2 Back @@ -3408,72 +3525,72 @@ SplineSet EndSplineSet Fore SplineSet -1091.34960938 1616.59960938 m 1,0,-1 - 1244.79980469 1473.04980469 l 1,1,-1 - 1398.25 1458.20019531 l 1,2,-1 - 1423 1418.59960938 l 1,3,-1 - 1467.54980469 1324.54980469 l 1,4,-1 - 1244.79980469 1324.54980469 l 1,5,-1 - 1244.79980469 -244.599609375 l 1,6,-1 - 1225 -234.700195312 l 2,7,8 - 1190.34960938 -214.900390625 1190.34960938 -214.900390625 1175.5 -190.150390625 c 2,9,-1 - 1170.54980469 -170.349609375 l 1,10,-1 - 1165.59960938 -150.549804688 l 1,11,-1 - 1160.65039062 -130.75 l 1,12,-1 - 1130.95019531 -31.75 l 2,13,14 - 1096.29980469 72.2001953125 1096.29980469 72.2001953125 987.400390625 186.049804688 c 0,15,16 - 819.099609375 359.299804688 819.099609375 359.299804688 581.5 473.150390625 c 1,17,-1 - 413.200195312 532.549804688 l 1,18,-1 - 378.549804688 542.450195312 l 1,19,-1 - 373.599609375 542.450195312 l 1,20,-1 - 368.650390625 542.450195312 l 1,21,-1 - 363.700195312 547.400390625 l 1,22,-1 - 314.200195312 562.25 l 1,23,-1 - 284.5 601.849609375 l 1,24,-1 - 264.700195312 626.599609375 l 1,25,-1 - 239.950195312 666.200195312 l 1,26,-1 - 190.450195312 750.349609375 l 1,27,-1 - 393.400390625 884 l 1,28,-1 - 512.200195312 948.349609375 l 1,29,-1 - 512.200195312 953.299804688 l 1,30,31 - 353.799804688 958.25 353.799804688 958.25 319.150390625 1131.5 c 1,32,-1 - 319.150390625 1136.45019531 l 1,33,-1 - 314.200195312 1200.79980469 l 1,34,-1 - 314.200195312 1210.70019531 l 1,35,-1 - 314.200195312 1225.54980469 l 1,36,37 - 338.950195312 1418.59960938 338.950195312 1418.59960938 502.299804688 1487.90039062 c 1,38,-1 - 566.650390625 1502.75 l 1,39,-1 - 606.25 1502.75 l 2,40,41 - 685.450195312 1492.84960938 685.450195312 1492.84960938 725.049804688 1463.15039062 c 0,42,43 - 804.25 1408.70019531 804.25 1408.70019531 794.349609375 1319.59960938 c 0,44,45 - 794.349609375 1275.04980469 794.349609375 1275.04980469 764.650390625 1235.45019531 c 0,46,47 - 725.049804688 1185.95019531 725.049804688 1185.95019531 650.799804688 1185.95019531 c 0,48,49 - 591.400390625 1185.95019531 591.400390625 1185.95019531 546.849609375 1230.5 c 0,50,51 - 512.200195312 1265.15039062 512.200195312 1265.15039062 512.200195312 1339.40039062 c 1,52,-1 - 457.75 1289.90039062 l 1,53,54 - 383.5 1181 383.5 1181 512.200195312 1096.84960938 c 2,55,-1 - 561.700195312 1067.15039062 l 2,56,57 - 631 1037.45019531 631 1037.45019531 675.549804688 1042.40039062 c 2,58,-1 - 734.950195312 1062.20019531 l 1,59,-1 - 779.5 1082 l 1,60,-1 - 868.599609375 1116.65039062 l 1,61,-1 - 952.75 1151.29980469 l 1,62,-1 - 997.299804688 1171.09960938 l 1,63,-1 - 1046.79980469 1185.95019531 l 1,64,-1 - 1086.40039062 1210.70019531 l 1,65,-1 - 1096.29980469 1275.04980469 l 1,66,-1 - 1091.34960938 1299.79980469 l 1,67,-1 - 1091.34960938 1334.45019531 l 1,68,-1 - 1091.34960938 1616.59960938 l 1,0,-1 -462.700195312 695.900390625 m 1,69,70 - 541.900390625 681.049804688 541.900390625 681.049804688 655.75 601.849609375 c 0,71,72 - 764.650390625 537.5 764.650390625 537.5 873.549804688 433.549804688 c 256,73,74 - 982.450195312 329.599609375 982.450195312 329.599609375 1091.34960938 186.049804688 c 1,75,-1 - 1091.34960938 1007.75 l 1,76,77 - 848.799804688 923.599609375 848.799804688 923.599609375 640.900390625 804.799804688 c 2,78,-1 - 581.5 775.099609375 l 1,79,-1 - 512.200195312 735.5 l 1,80,-1 - 462.700195312 695.900390625 l 1,69,70 +1030 1508 m 5,0,-1 + 1154 1392 l 5,1,-1 + 1278 1380 l 5,2,-1 + 1298 1348 l 5,3,-1 + 1334 1272 l 5,4,-1 + 1154 1272 l 5,5,-1 + 1154 4 l 5,6,-1 + 1138 12 l 6,7,8 + 1110 28 1110 28 1098 48 c 6,9,-1 + 1094 64 l 5,10,-1 + 1090 80 l 5,11,-1 + 1086 96 l 5,12,-1 + 1062 176 l 6,13,14 + 1034 260 1034 260 946 352 c 4,15,16 + 810 492 810 492 618 584 c 5,17,-1 + 482 632 l 5,18,-1 + 454 640 l 5,19,-1 + 450 640 l 5,20,-1 + 446 640 l 5,21,-1 + 442 644 l 5,22,-1 + 402 656 l 5,23,-1 + 378 688 l 5,24,-1 + 362 708 l 5,25,-1 + 342 740 l 5,26,-1 + 302 808 l 5,27,-1 + 466 916 l 5,28,-1 + 562 968 l 5,29,-1 + 562 972 l 5,30,31 + 434 976 434 976 406 1116 c 5,32,-1 + 406 1120 l 5,33,-1 + 402 1172 l 5,34,-1 + 402 1180 l 5,35,-1 + 402 1192 l 5,36,37 + 422 1348 422 1348 554 1404 c 5,38,-1 + 606 1416 l 5,39,-1 + 638 1416 l 6,40,41 + 702 1408 702 1408 734 1384 c 4,42,43 + 798 1340 798 1340 790 1268 c 4,44,45 + 790 1232 790 1232 766 1200 c 4,46,47 + 734 1160 734 1160 674 1160 c 4,48,49 + 626 1160 626 1160 590 1196 c 4,50,51 + 562 1224 562 1224 562 1284 c 5,52,-1 + 518 1244 l 5,53,54 + 458 1156 458 1156 562 1088 c 6,55,-1 + 602 1064 l 6,56,57 + 658 1040 658 1040 694 1044 c 6,58,-1 + 742 1060 l 5,59,-1 + 778 1076 l 5,60,-1 + 850 1104 l 5,61,-1 + 918 1132 l 5,62,-1 + 954 1148 l 5,63,-1 + 994 1160 l 5,64,-1 + 1026 1180 l 5,65,-1 + 1034 1232 l 5,66,-1 + 1030 1252 l 5,67,-1 + 1030 1280 l 5,68,-1 + 1030 1508 l 5,0,-1 +522 764 m 5,69,70 + 586 752 586 752 678 688 c 4,71,72 + 766 636 766 636 854 552 c 260,73,74 + 942 468 942 468 1030 352 c 5,75,-1 + 1030 1016 l 5,76,77 + 834 948 834 948 666 852 c 6,78,-1 + 618 828 l 5,79,-1 + 562 796 l 5,80,-1 + 522 764 l 5,69,70 EndSplineSet EndChar @@ -3543,81 +3660,81 @@ SplineSet EndSplineSet Fore SplineSet -1097.5703125 1616.25585938 m 5,0,-1 - 1250.79882812 1472.91308594 l 5,1,-1 - 1404.02734375 1458.08496094 l 5,2,-1 - 1428.7421875 1418.54199219 l 5,3,-1 - 1473.2265625 1324.62695312 l 5,4,-1 - 1250.79882812 1324.62695312 l 5,5,-1 - 1250.79882812 -242.255859375 l 5,6,-1 - 1201.37109375 -207.65625 l 5,7,-1 - 1151.94238281 -173.055664062 l 5,8,-1 - 1137.11425781 -158.227539062 l 5,9,-1 - 1132.17089844 -158.227539062 l 5,10,-1 - 1127.22753906 -153.284179688 l 5,11,-1 - 1102.51269531 -128.5703125 l 5,12,-1 - 1097.5703125 -89.0263671875 l 5,13,-1 - 1097.5703125 -64.3134765625 l 5,14,-1 - 1097.5703125 -44.5419921875 l 5,15,-1 - 1097.5703125 123.515625 l 5,16,-1 - 1097.5703125 731.485351562 l 5,17,-1 - 1097.5703125 899.54296875 l 5,18,-1 - 1097.5703125 924.256835938 l 5,19,-1 - 1097.5703125 929.200195312 l 5,20,-1 - 1097.5703125 934.142578125 l 5,21,-1 - 1092.62890625 988.514648438 l 6,22,23 - 1087.68652344 1023.11425781 1087.68652344 1023.11425781 1033.31347656 1067.59960938 c 6,24,-1 - 1008.59863281 1092.31347656 l 5,25,-1 - 934.45703125 1161.51367188 l 5,26,-1 - 885.02734375 1206 l 5,27,28 - 667.543945312 1374.05664062 667.543945312 1374.05664062 529.143554688 1339.45507812 c 6,29,-1 - 484.65625 1324.62695312 l 5,30,-1 - 425.34375 1290.02734375 l 5,31,-1 - 400.629882812 1265.3125 l 5,32,-1 - 366.029296875 1215.88476562 l 5,33,-1 - 336.372070312 1136.79882812 l 5,34,-1 - 331.4296875 1097.25683594 l 5,35,36 - 435.228515625 1126.9140625 435.228515625 1126.9140625 543.971679688 1126.9140625 c 6,37,-1 - 662.599609375 1107.14257812 l 5,38,-1 - 741.686523438 1062.65625 l 5,39,-1 - 791.114257812 1008.28515625 l 6,40,41 - 845.485351562 924.256835938 845.485351562 924.256835938 830.657226562 825.400390625 c 4,42,43 - 815.829101562 716.657226562 815.829101562 716.657226562 736.7421875 588.143554688 c 4,44,45 - 697.200195312 514.000976562 697.200195312 514.000976562 628.000976562 439.857421875 c 6,46,-1 - 613.171875 425.028320312 l 5,47,-1 - 608.227539062 420.0859375 l 5,48,-1 - 588.45703125 405.2578125 l 5,49,-1 - 568.686523438 400.314453125 l 6,50,51 - 553.857421875 390.4296875 553.857421875 390.4296875 529.143554688 415.143554688 c 6,52,-1 - 519.2578125 420.0859375 l 5,53,-1 - 430.286132812 479.401367188 l 5,54,-1 - 430.286132812 484.34375 l 5,55,56 - 593.400390625 647.456054688 593.400390625 647.456054688 657.657226562 805.629882812 c 6,57,-1 - 667.543945312 830.342773438 l 5,58,-1 - 682.37109375 879.772460938 l 6,59,60 - 692.2578125 929.200195312 692.2578125 929.200195312 677.428710938 953.9140625 c 4,61,62 - 642.830078125 1028.05664062 642.830078125 1028.05664062 534.0859375 1008.28515625 c 6,63,-1 - 455.000976562 978.62890625 l 5,64,-1 - 450.057617188 978.62890625 l 5,65,-1 - 445.115234375 973.686523438 l 5,66,-1 - 420.400390625 963.799804688 l 5,67,-1 - 370.971679688 934.142578125 l 5,68,-1 - 341.314453125 919.314453125 l 5,69,-1 - 306.71484375 904.486328125 l 5,70,-1 - 282 894.599609375 l 5,71,-1 - 242.45703125 884.713867188 l 5,72,-1 - 193.029296875 889.65625 l 5,73,-1 - 173.2578125 919.314453125 l 5,74,-1 - 163.373046875 934.142578125 l 5,75,-1 - 133.715820312 1042.88476562 l 5,76,-1 - 128.772460938 1117.02832031 l 5,77,78 - 148.544921875 1324.62695312 148.544921875 1324.62695312 390.743164062 1423.48535156 c 4,79,80 - 450.057617188 1448.19824219 450.057617188 1448.19824219 632.942382812 1463.02636719 c 6,81,-1 - 514.314453125 1458.08496094 l 5,82,-1 - 632.942382812 1463.02636719 l 6,83,84 - 702.143554688 1453.14257812 702.143554688 1453.14257812 786.170898438 1408.65625 c 4,85,86 - 919.62890625 1344.40039062 919.62890625 1344.40039062 1097.5703125 1156.5703125 c 5,87,-1 - 1097.5703125 1616.25585938 l 5,0,-1 +1097 1508 m 5,0,-1 + 1221 1392 l 5,1,-1 + 1345 1380 l 5,2,-1 + 1365 1348 l 5,3,-1 + 1401 1272 l 5,4,-1 + 1221 1272 l 5,5,-1 + 1221 4 l 5,6,-1 + 1181 32 l 5,7,-1 + 1141 60 l 5,8,-1 + 1129 72 l 5,9,-1 + 1125 72 l 5,10,-1 + 1121 76 l 5,11,-1 + 1101 96 l 5,12,-1 + 1097 128 l 5,13,-1 + 1097 148 l 5,14,-1 + 1097 164 l 5,15,-1 + 1097 300 l 5,16,-1 + 1097 792 l 5,17,-1 + 1097 928 l 5,18,-1 + 1097 948 l 5,19,-1 + 1097 952 l 5,20,-1 + 1097 956 l 5,21,-1 + 1093 1000 l 6,22,23 + 1089 1028 1089 1028 1045 1064 c 6,24,-1 + 1025 1084 l 5,25,-1 + 965 1140 l 5,26,-1 + 925 1176 l 5,27,28 + 749 1312 749 1312 637 1284 c 6,29,-1 + 601 1272 l 5,30,-1 + 553 1244 l 5,31,-1 + 533 1224 l 5,32,-1 + 505 1184 l 5,33,-1 + 481 1120 l 5,34,-1 + 477 1088 l 5,35,36 + 561 1112 561 1112 649 1112 c 6,37,-1 + 745 1096 l 5,38,-1 + 809 1060 l 5,39,-1 + 849 1016 l 6,40,41 + 893 948 893 948 881 868 c 4,42,43 + 869 780 869 780 805 676 c 4,44,45 + 773 616 773 616 717 556 c 6,46,-1 + 705 544 l 5,47,-1 + 701 540 l 5,48,-1 + 685 528 l 5,49,-1 + 669 524 l 6,50,51 + 657 516 657 516 637 536 c 6,52,-1 + 629 540 l 5,53,-1 + 557 588 l 5,54,-1 + 557 592 l 5,55,56 + 689 724 689 724 741 852 c 6,57,-1 + 749 872 l 5,58,-1 + 761 912 l 6,59,60 + 769 952 769 952 757 972 c 4,61,62 + 729 1032 729 1032 641 1016 c 6,63,-1 + 577 992 l 5,64,-1 + 573 992 l 5,65,-1 + 569 988 l 5,66,-1 + 549 980 l 5,67,-1 + 509 956 l 5,68,-1 + 485 944 l 5,69,-1 + 457 932 l 5,70,-1 + 437 924 l 5,71,-1 + 405 916 l 5,72,-1 + 365 920 l 5,73,-1 + 349 944 l 5,74,-1 + 341 956 l 5,75,-1 + 317 1044 l 5,76,-1 + 313 1104 l 5,77,78 + 329 1272 329 1272 525 1352 c 4,79,80 + 573 1372 573 1372 721 1384 c 6,81,-1 + 625 1380 l 5,82,-1 + 721 1384 l 6,83,84 + 777 1376 777 1376 845 1340 c 4,85,86 + 953 1288 953 1288 1097 1136 c 5,87,-1 + 1097 1508 l 5,0,-1 EndSplineSet EndChar @@ -3682,7 +3799,7 @@ EndChar StartChar: m Encoding: 109 109 80 -Width: 1596 +Width: 1582 VWidth: 575 Flags: W LayerCount: 2 @@ -3722,75 +3839,76 @@ SplineSet EndSplineSet Fore SplineSet -134 1436.5 m 5,0,-1 - 1030 1436.5 l 5,1,-1 - 1234 1436.5 l 5,2,-1 - 1318 1428.5 l 5,3,-1 - 1342 1396.5 l 5,4,-1 - 1374 1324.5 l 5,5,-1 - 1194 1324.5 l 5,6,-1 - 1194 56.5 l 5,7,-1 - 1178 64.5 l 6,8,9 - 1150 80.5 1150 80.5 1138 100.5 c 6,10,-1 - 1126 136.5 l 5,11,-1 - 1126 156.5 l 5,12,-1 - 1122 172.5 l 5,13,-1 - 1110 212.5 l 5,14,-1 - 1078 292.5 l 5,15,16 - 990 452.5 990 452.5 802 568.5 c 5,17,18 - 770 496.5 770 496.5 722 456.5 c 4,19,20 - 682 424.5 682 424.5 634 412.5 c 6,21,-1 - 550 404.5 l 5,22,23 - 410 424.5 410 424.5 362 556.5 c 4,24,25 - 342 604.5 342 604.5 350 652.5 c 4,26,27 - 354 716.5 354 716.5 390 768.5 c 4,28,29 - 406 792.5 406 792.5 454 828.5 c 4,30,31 - 502 860.5 502 860.5 554 864.5 c 4,32,33 - 602 868.5 602 868.5 666 852.5 c 5,34,-1 - 670 852.5 l 5,35,-1 - 674 848.5 l 5,36,-1 - 722 836.5 l 5,37,-1 - 726 860.5 l 5,38,-1 - 730 892.5 l 5,39,-1 - 726 952.5 l 6,40,41 - 710 1020.5 710 1020.5 626 1076.5 c 6,42,-1 - 474 1152.5 l 5,43,-1 - 398 1184.5 l 6,44,45 - 338 1212.5 338 1212.5 290 1260.5 c 6,46,-1 - 278 1276.5 l 5,47,-1 - 278 1280.5 l 5,48,-1 - 274 1288.5 l 5,49,-1 - 254 1312.5 l 5,50,-1 - 222 1324.5 l 5,51,-1 - 222 1324.5 l 5,52,-1 - 190 1332.5 l 5,53,-1 - 170 1356.5 l 5,54,-1 - 166 1364.5 l 5,55,-1 - 150 1400.5 l 5,56,-1 - 134 1436.5 l 5,0,-1 -526 1320.5 m 5,57,58 - 566 1296.5 566 1296.5 626 1232.5 c 5,59,-1 - 630 1224.5 l 5,60,-1 - 646 1208.5 l 6,61,62 - 778 1060.5 778 1060.5 834 904.5 c 6,63,-1 - 858 812.5 l 5,64,-1 - 858 800.5 l 5,65,-1 - 866 752.5 l 5,66,-1 - 886 728.5 l 5,67,-1 - 890 724.5 l 5,68,-1 - 898 716.5 l 5,69,-1 - 946 664.5 l 6,70,71 - 994 616.5 994 616.5 1042 536.5 c 6,72,-1 - 1070 492.5 l 5,73,-1 - 1070 1324.5 l 5,74,-1 - 526 1324.5 l 5,75,-1 - 526 1320.5 l 5,57,58 +174 1384 m 5,0,-1 + 1070 1384 l 5,1,-1 + 1274 1384 l 5,2,-1 + 1358 1376 l 5,3,-1 + 1382 1344 l 5,4,-1 + 1414 1272 l 5,5,-1 + 1234 1272 l 5,6,-1 + 1234 4 l 5,7,-1 + 1218 12 l 6,8,9 + 1190 28 1190 28 1178 48 c 6,10,-1 + 1166 84 l 5,11,-1 + 1166 104 l 5,12,-1 + 1162 120 l 5,13,-1 + 1150 160 l 5,14,-1 + 1118 240 l 5,15,16 + 1030 400 1030 400 842 516 c 5,17,18 + 810 444 810 444 762 404 c 4,19,20 + 722 372 722 372 674 360 c 6,21,-1 + 590 352 l 5,22,23 + 450 372 450 372 402 504 c 4,24,25 + 382 552 382 552 390 600 c 4,26,27 + 394 664 394 664 430 716 c 4,28,29 + 446 740 446 740 494 776 c 4,30,31 + 542 808 542 808 594 812 c 4,32,33 + 642 816 642 816 706 800 c 5,34,-1 + 710 800 l 5,35,-1 + 714 796 l 5,36,-1 + 762 784 l 5,37,-1 + 766 808 l 5,38,-1 + 770 840 l 5,39,-1 + 766 900 l 6,40,41 + 750 968 750 968 666 1024 c 6,42,-1 + 514 1100 l 5,43,-1 + 438 1132 l 6,44,45 + 378 1160 378 1160 330 1208 c 6,46,-1 + 318 1224 l 5,47,-1 + 318 1228 l 5,48,-1 + 314 1236 l 5,49,-1 + 294 1260 l 5,50,-1 + 262 1272 l 5,51,-1 + 262 1272 l 5,52,-1 + 230 1280 l 5,53,-1 + 210 1304 l 5,54,-1 + 206 1312 l 5,55,-1 + 190 1348 l 5,56,-1 + 174 1384 l 5,0,-1 +566 1268 m 5,57,58 + 606 1244 606 1244 666 1180 c 5,59,-1 + 670 1172 l 5,60,-1 + 686 1156 l 6,61,62 + 818 1008 818 1008 874 852 c 6,63,-1 + 898 760 l 5,64,-1 + 898 748 l 5,65,-1 + 906 700 l 5,66,-1 + 926 676 l 5,67,-1 + 930 672 l 5,68,-1 + 938 664 l 5,69,-1 + 986 612 l 6,70,71 + 1034 564 1034 564 1082 484 c 6,72,-1 + 1110 440 l 5,73,-1 + 1110 1272 l 5,74,-1 + 566 1272 l 5,75,-1 + 566 1268 l 5,57,58 EndSplineSet EndChar StartChar: n Encoding: 110 110 81 Width: 1582 +VWidth: 575 Flags: W LayerCount: 2 Back @@ -3853,97 +3971,97 @@ SplineSet EndSplineSet Fore SplineSet -1322.41015625 1325.27734375 m 5,0,-1 - 1050.921875 1325.27734375 l 5,1,-1 - 1029.71191406 1325.27734375 l 5,2,-1 - 1004.25976562 1325.27734375 l 6,3,4 - 966.08203125 1325.27734375 966.08203125 1325.27734375 953.35546875 1338.00390625 c 6,5,-1 - 940.629882812 1350.73046875 l 5,6,-1 - 932.145507812 1367.69824219 l 5,7,-1 - 919.419921875 1388.90820312 l 6,8,9 - 902.452148438 1414.36035156 902.452148438 1414.36035156 906.694335938 1431.328125 c 4,10,11 - 906.694335938 1444.0546875 906.694335938 1444.0546875 915.177734375 1465.26464844 c 6,12,-1 - 919.419921875 1482.23242188 l 5,13,-1 - 923.662109375 1503.44238281 l 6,14,15 - 923.662109375 1541.62011719 923.662109375 1541.62011719 893.967773438 1567.07226562 c 4,16,17 - 860.032226562 1592.52441406 860.032226562 1592.52441406 800.64453125 1613.734375 c 4,18,19 - 783.67578125 1617.97558594 783.67578125 1617.97558594 753.982421875 1626.45996094 c 4,20,21 - 686.110351562 1643.42773438 686.110351562 1643.42773438 567.333984375 1651.91210938 c 6,22,-1 - 563.091796875 1651.91210938 l 5,23,-1 - 546.124023438 1651.91210938 l 6,24,25 - 304.330078125 1664.63769531 304.330078125 1664.63769531 206.764648438 1745.23535156 c 4,26,27 - 164.344726562 1783.4140625 164.344726562 1783.4140625 134.650390625 1821.59179688 c 4,28,29 - 117.682617188 1851.28515625 117.682617188 1851.28515625 109.198242188 1885.22265625 c 4,30,31 - 66.77734375 2042.17578125 66.77734375 2042.17578125 253.42578125 2131.2578125 c 5,32,-1 - 304.330078125 2148.22558594 l 5,33,-1 - 312.814453125 2152.46777344 l 5,34,35 - 431.58984375 2182.16210938 431.58984375 2182.16210938 571.575195312 2169.43554688 c 4,36,37 - 966.08203125 2143.984375 966.08203125 2143.984375 1233.328125 1851.28515625 c 4,38,39 - 1250.29589844 1830.07519531 1250.29589844 1830.07519531 1267.26464844 1813.10742188 c 4,40,41 - 1415.734375 1630.70214844 1415.734375 1630.70214844 1436.94433594 1444.0546875 c 5,42,-1 - 1538.75195312 1444.0546875 l 5,43,-1 - 1585.4140625 1435.5703125 l 5,44,-1 - 1610.86523438 1401.63476562 l 5,45,-1 - 1644.80175781 1325.27734375 l 5,46,-1 - 1453.91210938 1325.27734375 l 5,47,-1 - 1453.91210938 -19.435546875 l 5,48,-1 - 1369.07226562 39.9521484375 l 5,49,-1 - 1330.89453125 73.8876953125 l 5,50,-1 - 1322.41015625 171.454101562 l 5,51,-1 - 1322.41015625 404.764648438 l 5,52,-1 - 1322.41015625 1325.27734375 l 5,0,-1 -1335.13574219 1444.0546875 m 5,53,54 - 1335.13574219 1511.92578125 1335.13574219 1511.92578125 1313.92578125 1596.765625 c 4,55,56 - 1229.0859375 1893.70605469 1229.0859375 1893.70605469 881.2421875 2012.48242188 c 4,57,58 - 792.16015625 2046.41796875 792.16015625 2046.41796875 694.594726562 2059.14453125 c 4,59,60 - 686.110351562 2059.14453125 686.110351562 2059.14453125 677.625976562 2059.14453125 c 6,61,-1 - 554.607421875 2063.38574219 l 6,62,63 - 414.622070312 2059.14453125 414.622070312 2059.14453125 321.297851562 2008.24023438 c 4,64,65 - 215.248046875 1944.61035156 215.248046875 1944.61035156 211.005859375 1847.04394531 c 4,66,67 - 211.005859375 1800.38183594 211.005859375 1800.38183594 274.635742188 1783.4140625 c 6,68,-1 - 372.202148438 1766.4453125 l 5,69,-1 - 469.767578125 1762.20410156 l 6,70,71 - 495.219726562 1762.20410156 495.219726562 1762.20410156 516.4296875 1762.20410156 c 4,72,73 - 758.224609375 1749.47753906 758.224609375 1749.47753906 910.935546875 1622.21777344 c 4,74,75 - 1016.98535156 1541.62011719 1016.98535156 1541.62011719 1029.71191406 1444.0546875 c 5,76,-1 - 1335.13574219 1444.0546875 l 5,53,54 --51 1448.5 m 5,77,-1 - 934.599609375 1448.5 l 5,78,-1 - 1159 1448.5 l 5,79,-1 - 1251.40039062 1439.70019531 l 5,80,-1 - 1277.79980469 1404.5 l 5,81,-1 - 1313 1325.29980469 l 5,82,-1 - 1115 1325.29980469 l 5,83,-1 - 1115 -69.5 l 5,84,-1 - 1093 -56.2998046875 l 6,85,86 - 1062.20019531 -38.7001953125 1062.20019531 -38.7001953125 1053.40039062 -21.099609375 c 6,87,-1 - 1044.59960938 22.900390625 l 5,88,-1 - 1044.59960938 36.099609375 l 5,89,-1 - 1040.20019531 66.900390625 l 5,90,-1 - 1005 220.900390625 l 6,91,92 - 934.599609375 454.099609375 934.599609375 454.099609375 771.799804688 621.299804688 c 4,93,94 - 648.599609375 735.700195312 648.599609375 735.700195312 516.599609375 744.5 c 5,95,96 - 565 687.299804688 565 687.299804688 578.200195312 630.099609375 c 4,97,98 - 582.599609375 590.5 582.599609375 590.5 578.200195312 550.900390625 c 4,99,100 - 560.599609375 405.700195312 560.599609375 405.700195312 415.400390625 370.5 c 5,101,-1 - 336.200195312 361.700195312 l 6,102,103 - 265.799804688 366.099609375 265.799804688 366.099609375 213 405.700195312 c 4,104,105 - 177.799804688 436.5 177.799804688 436.5 155.799804688 471.700195312 c 4,106,107 - 120.599609375 533.299804688 120.599609375 533.299804688 125 616.900390625 c 4,108,109 - 133.799804688 762.099609375 133.799804688 762.099609375 243.799804688 850.099609375 c 4,110,111 - 340.599609375 933.700195312 340.599609375 933.700195312 463.799804688 924.900390625 c 4,112,113 - 679.400390625 916.099609375 679.400390625 916.099609375 890.599609375 625.700195312 c 5,114,-1 - 877.400390625 647.700195312 l 6,115,116 - 881.799804688 634.5 881.799804688 634.5 890.599609375 625.700195312 c 6,117,-1 - 908.200195312 594.900390625 l 6,118,119 - 961 520.099609375 961 520.099609375 974.200195312 476.099609375 c 5,120,-1 - 978.599609375 476.099609375 l 5,121,-1 - 978.599609375 1325.29980469 l 5,122,-1 - 287.799804688 1325.29980469 l 5,123,-1 - 98.599609375 1325.29980469 l 5,124,-1 - 10.599609375 1329.70019531 l 5,125,-1 - -15.7998046875 1369.29980469 l 5,126,-1 - -51 1448.5 l 5,77,-1 +1303 1272 m 5,0,-1 + 1047 1272 l 5,1,-1 + 1027 1272 l 5,2,-1 + 1003 1272 l 6,3,4 + 967 1272 967 1272 955 1284 c 6,5,-1 + 943 1296 l 5,6,-1 + 935 1312 l 5,7,-1 + 923 1332 l 6,8,9 + 907 1356 907 1356 911 1372 c 4,10,11 + 911 1384 911 1384 919 1404 c 6,12,-1 + 923 1420 l 5,13,-1 + 927 1440 l 6,14,15 + 927 1476 927 1476 899 1500 c 4,16,17 + 867 1524 867 1524 811 1544 c 4,18,19 + 795 1548 795 1548 767 1556 c 4,20,21 + 703 1572 703 1572 591 1580 c 6,22,-1 + 587 1580 l 5,23,-1 + 571 1580 l 6,24,25 + 343 1592 343 1592 251 1668 c 4,26,27 + 211 1704 211 1704 183 1740 c 4,28,29 + 167 1768 167 1768 159 1800 c 4,30,31 + 119 1948 119 1948 295 2032 c 5,32,-1 + 343 2048 l 5,33,-1 + 351 2052 l 5,34,35 + 463 2080 463 2080 595 2068 c 4,36,37 + 967 2044 967 2044 1219 1768 c 4,38,39 + 1235 1748 1235 1748 1251 1732 c 4,40,41 + 1391 1560 1391 1560 1411 1384 c 5,42,-1 + 1507 1384 l 5,43,-1 + 1551 1376 l 5,44,-1 + 1575 1344 l 5,45,-1 + 1607 1272 l 5,46,-1 + 1427 1272 l 5,47,-1 + 1427 4 l 5,48,-1 + 1347 60 l 5,49,-1 + 1311 92 l 5,50,-1 + 1303 184 l 5,51,-1 + 1303 404 l 5,52,-1 + 1303 1272 l 5,0,-1 +1315 1384 m 5,53,54 + 1315 1448 1315 1448 1295 1528 c 4,55,56 + 1215 1808 1215 1808 887 1920 c 4,57,58 + 803 1952 803 1952 711 1964 c 4,59,60 + 703 1964 703 1964 695 1964 c 6,61,-1 + 579 1968 l 6,62,63 + 447 1964 447 1964 359 1916 c 4,64,65 + 259 1856 259 1856 255 1764 c 4,66,67 + 255 1720 255 1720 315 1704 c 6,68,-1 + 407 1688 l 5,69,-1 + 499 1684 l 6,70,71 + 523 1684 523 1684 543 1684 c 4,72,73 + 771 1672 771 1672 915 1552 c 4,74,75 + 1015 1476 1015 1476 1027 1384 c 5,76,-1 + 1315 1384 l 5,53,54 +-25 1384 m 5,77,-1 + 871 1384 l 5,78,-1 + 1075 1384 l 5,79,-1 + 1159 1376 l 5,80,-1 + 1183 1344 l 5,81,-1 + 1215 1272 l 5,82,-1 + 1035 1272 l 5,83,-1 + 1035 4 l 5,84,-1 + 1015 16 l 6,85,86 + 987 32 987 32 979 48 c 6,87,-1 + 971 88 l 5,88,-1 + 971 100 l 5,89,-1 + 967 128 l 5,90,-1 + 935 268 l 6,91,92 + 871 480 871 480 723 632 c 4,93,94 + 611 736 611 736 491 744 c 5,95,96 + 535 692 535 692 547 640 c 4,97,98 + 551 604 551 604 547 568 c 4,99,100 + 531 436 531 436 399 404 c 5,101,-1 + 327 396 l 6,102,103 + 263 400 263 400 215 436 c 4,104,105 + 183 464 183 464 163 496 c 4,106,107 + 131 552 131 552 135 628 c 4,108,109 + 143 760 143 760 243 840 c 4,110,111 + 331 916 331 916 443 908 c 4,112,113 + 639 900 639 900 831 636 c 5,114,-1 + 819 656 l 6,115,116 + 823 644 823 644 831 636 c 6,117,-1 + 847 608 l 6,118,119 + 895 540 895 540 907 500 c 5,120,-1 + 911 500 l 5,121,-1 + 911 1272 l 5,122,-1 + 283 1272 l 5,123,-1 + 111 1272 l 5,124,-1 + 31 1276 l 5,125,-1 + 7 1312 l 5,126,-1 + -25 1384 l 5,77,-1 EndSplineSet Kerns2: 88 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" EndChar @@ -4001,60 +4119,60 @@ SplineSet EndSplineSet Fore SplineSet -1007 1561 m 1,0,-1 - 1131 1445 l 1,1,-1 - 1255 1433 l 1,2,-1 - 1275 1401 l 1,3,-1 - 1311 1325 l 1,4,-1 - 1131 1325 l 1,5,-1 - 1131 57 l 1,6,-1 - 1051 113 l 1,7,-1 - 1011 149 l 1,8,-1 - 1007 213 l 1,9,-1 - 1007 341 l 1,10,-1 - 1007 677 l 1,11,-1 - 1007 849 l 1,12,-1 - 975 913 l 1,13,-1 - 895 1025 l 1,14,-1 - 891 1025 l 1,15,-1 - 791 925 l 1,16,-1 - 567 705 l 1,17,-1 - 483 621 l 1,18,-1 - 439 589 l 1,19,-1 - 379 601 l 1,20,-1 - 259 633 l 1,21,-1 - 299 685 l 1,22,-1 - 331 725 l 2,23,24 - 391 801 391 801 403 857 c 0,25,26 - 411 905 411 905 387 945 c 0,27,28 - 347 1001 347 1001 251 969 c 1,29,-1 - 251 969 l 1,30,-1 - 227 961 l 1,31,-1 - 155 941 l 1,32,-1 - 131 941 l 2,33,34 - 63 949 63 949 43 1005 c 2,35,-1 - 39 1057 l 1,36,-1 - 55 1129 l 2,37,38 - 111 1321 111 1321 335 1373 c 2,39,-1 - 387 1385 l 1,40,-1 - 419 1389 l 2,41,42 - 663 1405 663 1405 875 1193 c 2,43,-1 - 879 1189 l 1,44,-1 - 899 1165 l 1,45,-1 - 915 1145 l 2,46,47 - 983 1061 983 1061 1003 1001 c 1,48,-1 - 1007 1001 l 1,49,-1 - 1007 1561 l 1,0,-1 -459 841 m 1,50,-1 - 639 1017 l 1,51,-1 - 767 1145 l 1,52,-1 - 659 1213 l 2,53,54 - 579 1253 579 1253 495 1261 c 0,55,56 - 355 1273 355 1273 291 1181 c 0,57,58 - 275 1157 275 1157 267 1105 c 1,59,60 - 399 1097 399 1097 447 925 c 0,61,62 - 447 917 447 917 451 909 c 2,63,-1 - 459 841 l 1,50,-1 +1144 1508 m 5,0,-1 + 1268 1392 l 5,1,-1 + 1392 1380 l 5,2,-1 + 1412 1348 l 5,3,-1 + 1448 1272 l 5,4,-1 + 1268 1272 l 5,5,-1 + 1268 4 l 5,6,-1 + 1188 60 l 5,7,-1 + 1148 96 l 5,8,-1 + 1144 160 l 5,9,-1 + 1144 288 l 5,10,-1 + 1144 624 l 5,11,-1 + 1144 796 l 5,12,-1 + 1112 860 l 5,13,-1 + 1032 972 l 5,14,-1 + 1028 972 l 5,15,-1 + 928 872 l 5,16,-1 + 704 652 l 5,17,-1 + 620 568 l 5,18,-1 + 576 536 l 5,19,-1 + 516 548 l 5,20,-1 + 396 580 l 5,21,-1 + 436 632 l 5,22,-1 + 468 672 l 6,23,24 + 528 748 528 748 540 804 c 4,25,26 + 548 852 548 852 524 892 c 4,27,28 + 484 948 484 948 388 916 c 5,29,-1 + 388 916 l 5,30,-1 + 364 908 l 5,31,-1 + 292 888 l 5,32,-1 + 268 888 l 6,33,34 + 200 896 200 896 180 952 c 6,35,-1 + 176 1004 l 5,36,-1 + 192 1076 l 6,37,38 + 248 1268 248 1268 472 1320 c 6,39,-1 + 524 1332 l 5,40,-1 + 556 1336 l 6,41,42 + 800 1352 800 1352 1012 1140 c 6,43,-1 + 1016 1136 l 5,44,-1 + 1036 1112 l 5,45,-1 + 1052 1092 l 6,46,47 + 1120 1008 1120 1008 1140 948 c 5,48,-1 + 1144 948 l 5,49,-1 + 1144 1508 l 5,0,-1 +596 788 m 5,50,-1 + 776 964 l 5,51,-1 + 904 1092 l 5,52,-1 + 796 1160 l 6,53,54 + 716 1200 716 1200 632 1208 c 4,55,56 + 492 1220 492 1220 428 1128 c 4,57,58 + 412 1104 412 1104 404 1052 c 5,59,60 + 536 1044 536 1044 584 872 c 4,61,62 + 584 864 584 864 588 856 c 6,63,-1 + 596 788 l 5,50,-1 EndSplineSet EndChar @@ -4083,8 +4201,7 @@ EndChar StartChar: r Encoding: 114 114 85 Width: 1582 -VWidth: 575 -Flags: WO +Flags: W LayerCount: 2 Back SplineSet @@ -4140,97 +4257,97 @@ SplineSet EndSplineSet Fore SplineSet --16.9716796875 1448.24804688 m 1,0,-1 - 479.978515625 1448.24804688 l 1,1,-1 - 610.9921875 1448.24804688 l 1,2,-1 - 669.723632812 1439.21289062 l 1,3,-1 - 696.829101562 1403.0703125 l 1,4,-1 - 732.971679688 1321.75195312 l 1,5,-1 - 701.346679688 1321.75195312 l 1,6,-1 - 669.723632812 1321.75195312 l 1,7,-1 - 606.473632812 1317.234375 l 1,8,-1 - 520.637695312 1272.05664062 l 2,9,10 - 430.283203125 1213.32714844 430.283203125 1213.32714844 353.481445312 1122.97265625 c 0,11,12 - 213.43359375 946.780273438 213.43359375 946.780273438 190.844726562 707.341796875 c 1,13,-1 - 195.362304688 544.704101562 l 2,14,15 - 204.396484375 314.299804688 204.396484375 314.299804688 303.788085938 165.21484375 c 1,16,17 - 330.893554688 210.391601562 330.893554688 210.391601562 367.034179688 242.016601562 c 2,18,-1 - 430.283203125 269.123046875 l 1,19,20 - 565.814453125 305.264648438 565.814453125 305.264648438 642.6171875 187.803710938 c 0,21,22 - 692.311523438 111.002929688 692.311523438 111.002929688 665.205078125 25.1650390625 c 2,23,-1 - 656.169921875 2.5771484375 l 2,24,25 - 642.6171875 -24.529296875 642.6171875 -24.529296875 624.545898438 -42.6005859375 c 0,26,27 - 556.780273438 -119.401367188 556.780273438 -119.401367188 443.836914062 -105.848632812 c 0,28,29 - 344.446289062 -96.8125 344.446289062 -96.8125 267.645507812 -29.046875 c 0,30,31 - 199.879882812 34.2021484375 199.879882812 34.2021484375 154.703125 156.180664062 c 2,32,-1 - 136.631835938 214.911132812 l 2,33,34 - 100.489257812 359.4765625 100.489257812 359.4765625 91.4541015625 535.66796875 c 0,35,36 - 77.9013671875 811.25 77.9013671875 811.25 141.149414062 1010.02929688 c 0,37,38 - 186.327148438 1141.04296875 186.327148438 1141.04296875 303.788085938 1321.75195312 c 1,39,-1 - 123.079101562 1321.75195312 l 1,40,-1 - 46.2763671875 1330.78808594 l 1,41,-1 - 19.1708984375 1366.9296875 l 1,42,-1 - -16.9716796875 1448.24804688 l 1,0,-1 -481.461914062 1448.62304688 m 1,43,-1 - 1250.53027344 1448.62304688 l 1,44,-1 - 1463.90625 1448.62304688 l 1,45,-1 - 1548.3671875 1439.73242188 l 1,46,-1 - 1575.0390625 1404.16992188 l 1,47,-1 - 1610.60351562 1324.15429688 l 1,48,-1 - 1410.5625 1324.15429688 l 1,49,-1 - 1410.5625 -85.0185546875 l 1,50,-1 - 1392.78027344 -76.1279296875 l 2,51,52 - 1353.33886719 -56.171875 1353.33886719 -56.171875 1348.32714844 -36.119140625 c 2,53,-1 - 1343.8828125 -18.337890625 l 1,54,-1 - 1339.4375 -0.5576171875 l 1,55,-1 - 1334.99121094 17.224609375 l 1,56,-1 - 1308.3203125 106.131835938 l 2,57,58 - 1281 197 1281 197 1179.40429688 301.725585938 c 0,59,60 - 1028 457 1028 457 814.885742188 559.555664062 c 1,61,-1 - 663.745117188 612.899414062 l 1,62,-1 - 632.627929688 621.790039062 l 1,63,-1 - 628.182617188 621.790039062 l 1,64,-1 - 623.737304688 621.790039062 l 1,65,-1 - 619.291992188 626.235351562 l 1,66,-1 - 574.837890625 639.572265625 l 1,67,-1 - 548.166015625 675.133789062 l 1,68,-1 - 530.385742188 697.361328125 l 1,69,-1 - 508.159179688 732.923828125 l 1,70,-1 - 463.705078125 808.494140625 l 1,71,72 - 819.40234375 1038.25976562 819.40234375 1038.25976562 943.801757812 1088.54980469 c 2,73,-1 - 1152.73339844 1173.01269531 l 1,74,-1 - 1188.29589844 1186.34960938 l 1,75,-1 - 1206.07617188 1190.79394531 l 1,76,-1 - 1259.41992188 1213.02050781 l 2,77,78 - 1277.20214844 1220.08007812 1277.20214844 1220.08007812 1277.20214844 1275.25488281 c 2,79,-1 - 1277.20214844 1279.70019531 l 1,80,-1 - 1277.20214844 1284.14550781 l 1,81,-1 - 1277.20214844 1288.58984375 l 1,82,-1 - 1272.75585938 1297.48242188 l 1,83,-1 - 1272.75585938 1324.15429688 l 1,84,-1 - 788.190429688 1324.15429688 l 1,85,-1 - 619.268554688 1324.15429688 l 1,86,-1 - 543.698242188 1328.59960938 l 1,87,-1 - 517.025390625 1368.60742188 l 1,88,-1 - 481.461914062 1448.62304688 l 1,43,-1 -708.19921875 759.595703125 m 1,89,90 - 779.32421875 746.259765625 779.32421875 746.259765625 881.56640625 675.133789062 c 0,91,92 - 979.364257812 617.344726562 979.364257812 617.344726562 1077.16113281 523.9921875 c 256,93,94 - 1174.95996094 430.640625 1174.95996094 430.640625 1272.75585938 301.725585938 c 1,95,-1 - 1272.75585938 1039.65234375 l 1,96,97 - 1054.93554688 964.08203125 1054.93554688 964.08203125 868.232421875 857.393554688 c 2,98,-1 - 814.885742188 830.720703125 l 1,99,-1 - 752.65234375 795.159179688 l 1,100,-1 - 708.19921875 759.595703125 l 1,89,90 -837.088867188 346.178710938 m 2,101,-1 - 863.76171875 350.625 l 1,102,-1 - 894.87890625 346.178710938 l 2,103,104 - 988 333 988 333 992.67578125 221.709960938 c 0,105,106 - 997 115.002929688 997 115.002929688 890.432617188 97.2412109375 c 2,107,-1 - 863.76171875 92.7958984375 l 1,108,-1 - 832.645507812 97.2412109375 l 2,109,110 - 740 110 740 110 734.845703125 221.709960938 c 0,111,112 - 730 328 730 328 837.088867188 346.178710938 c 2,101,-1 +490 1384 m 5,0,-1 + 1290 1384 l 5,1,-1 + 1482 1384 l 5,2,-1 + 1558 1376 l 5,3,-1 + 1582 1344 l 5,4,-1 + 1614 1272 l 5,5,-1 + 1434 1272 l 5,6,-1 + 1434 4 l 5,7,-1 + 1418 12 l 6,8,9 + 1390 28 1390 28 1378 48 c 6,10,-1 + 1374 64 l 5,11,-1 + 1370 80 l 5,12,-1 + 1366 96 l 5,13,-1 + 1342 176 l 6,14,15 + 1314 260 1314 260 1226 352 c 4,16,17 + 1090 492 1090 492 898 584 c 5,18,-1 + 762 632 l 5,19,-1 + 734 640 l 5,20,-1 + 730 640 l 5,21,-1 + 726 640 l 5,22,-1 + 722 644 l 5,23,-1 + 682 656 l 5,24,-1 + 658 688 l 5,25,-1 + 642 708 l 5,26,-1 + 622 740 l 5,27,-1 + 582 808 l 5,28,29 + 842 976 842 976 1014 1060 c 6,30,-1 + 1202 1136 l 5,31,-1 + 1234 1148 l 5,32,-1 + 1250 1152 l 5,33,-1 + 1298 1172 l 6,34,35 + 1314 1184 1314 1184 1314 1228 c 6,36,-1 + 1314 1232 l 5,37,-1 + 1314 1236 l 5,38,-1 + 1314 1240 l 5,39,-1 + 1310 1248 l 5,40,-1 + 1310 1272 l 5,41,-1 + 766 1272 l 5,42,-1 + 614 1272 l 5,43,-1 + 546 1276 l 5,44,-1 + 522 1312 l 5,45,-1 + 490 1384 l 5,0,-1 +802 764 m 5,46,47 + 866 752 866 752 958 688 c 4,48,49 + 1046 636 1046 636 1134 552 c 260,50,51 + 1222 468 1222 468 1310 352 c 5,52,-1 + 1310 1016 l 5,53,54 + 1114 948 1114 948 946 852 c 6,55,-1 + 898 828 l 5,56,-1 + 842 796 l 5,57,-1 + 802 764 l 5,46,47 +810 392 m 6,58,-1 + 834 396 l 5,59,-1 + 862 392 l 6,60,61 + 942 376 942 376 950 280 c 4,62,63 + 950 188 950 188 858 168 c 6,64,-1 + 834 164 l 5,65,-1 + 806 168 l 6,66,67 + 726 184 726 184 718 280 c 4,68,69 + 718 372 718 372 810 392 c 6,58,-1 +-30 1384 m 5,70,-1 + 410 1384 l 5,71,-1 + 526 1384 l 5,72,-1 + 578 1376 l 5,73,-1 + 602 1344 l 5,74,-1 + 634 1272 l 5,75,-1 + 606 1272 l 5,76,-1 + 578 1272 l 5,77,-1 + 522 1268 l 5,78,-1 + 446 1228 l 6,79,80 + 366 1176 366 1176 298 1096 c 4,81,82 + 174 940 174 940 154 728 c 5,83,-1 + 158 584 l 6,84,85 + 166 380 166 380 254 248 c 5,86,87 + 278 288 278 288 310 316 c 6,88,-1 + 366 340 l 5,89,90 + 486 372 486 372 554 268 c 4,91,92 + 598 200 598 200 574 124 c 6,93,-1 + 566 104 l 6,94,95 + 554 80 554 80 538 64 c 4,96,97 + 478 -4 478 -4 378 8 c 4,98,99 + 290 16 290 16 222 76 c 4,100,101 + 162 132 162 132 122 240 c 6,102,-1 + 106 292 l 6,103,104 + 74 420 74 420 66 576 c 4,105,106 + 54 820 54 820 110 996 c 4,107,108 + 150 1112 150 1112 254 1272 c 5,109,-1 + 94 1272 l 5,110,-1 + 26 1280 l 5,111,-1 + 2 1312 l 5,112,-1 + -30 1384 l 5,70,-1 EndSplineSet Kerns2: 79 100 "'kern' Horizontal Kerning in Latin lookup 0 subtable" EndChar @@ -4290,85 +4407,85 @@ SplineSet EndSplineSet Fore SplineSet -58 1437.5 m 1,0,-1 - 1078 1437.5 l 1,1,-1 - 1306 1437.5 l 1,2,-1 - 1394 1429.5 l 1,3,-1 - 1418 1397.5 l 1,4,-1 - 1450 1325.5 l 1,5,-1 - 1270 1325.5 l 1,6,-1 - 1270 57.5 l 1,7,-1 - 1230 85.5 l 1,8,-1 - 1190 113.5 l 1,9,-1 - 1178 125.5 l 1,10,-1 - 1174 125.5 l 1,11,-1 - 1150 149.5 l 1,12,-1 - 1146 173.5 l 1,13,-1 - 1146 189.5 l 1,14,-1 - 1146 201.5 l 1,15,-1 - 1146 293.5 l 1,16,-1 - 1146 621.5 l 1,17,-1 - 1146 709.5 l 1,18,-1 - 1142 765.5 l 1,19,20 - 1122 817.5 1122 817.5 1086 845.5 c 2,21,-1 - 1078 853.5 l 1,22,-1 - 1070 857.5 l 1,23,-1 - 1026 881.5 l 1,24,-1 - 982 889.5 l 1,25,-1 - 938 881.5 l 2,26,27 - 906 877.5 906 877.5 866 833.5 c 0,28,29 - 806 773.5 806 773.5 726 665.5 c 2,30,-1 - 714 649.5 l 1,31,-1 - 630 545.5 l 1,32,-1 - 606 517.5 l 2,33,34 - 546 457.5 546 457.5 498 457.5 c 2,35,-1 - 470 465.5 l 1,36,-1 - 442 485.5 l 1,37,-1 - 430 493.5 l 1,38,-1 - 310 609.5 l 1,39,-1 - 274 645.5 l 2,40,41 - 226 697.5 226 697.5 206 745.5 c 1,42,-1 - 266 773.5 l 1,43,44 - 306 721.5 306 721.5 366 677.5 c 2,45,-1 - 382 665.5 l 1,46,-1 - 422 645.5 l 1,47,-1 - 470 661.5 l 2,48,49 - 506 677.5 506 677.5 554 725.5 c 2,50,-1 - 646 821.5 l 1,51,-1 - 658 837.5 l 1,52,-1 - 682 873.5 l 1,53,-1 - 686 893.5 l 1,54,-1 - 682 917.5 l 1,55,-1 - 654 1013.5 l 1,56,57 - 586 1149.5 586 1149.5 446 1189.5 c 1,58,-1 - 382 1197.5 l 1,59,-1 - 294 1213.5 l 2,60,61 - 238 1233.5 238 1233.5 202 1273.5 c 2,62,-1 - 190 1293.5 l 1,63,-1 - 174 1313.5 l 1,64,-1 - 146 1325.5 l 1,65,-1 - 142 1325.5 l 1,66,-1 - 126 1329.5 l 1,67,-1 - 114 1333.5 l 1,68,-1 - 94 1357.5 l 1,69,-1 - 90 1365.5 l 1,70,-1 - 74 1401.5 l 1,71,-1 - 58 1437.5 l 1,0,-1 -590 1325.5 m 1,72,73 - 682 1205.5 682 1205.5 726 1065.5 c 2,74,-1 - 734 1029.5 l 1,75,-1 - 742 977.5 l 1,76,-1 - 750 933.5 l 1,77,-1 - 790 981.5 l 1,78,-1 - 794 985.5 l 1,79,-1 - 810 1001.5 l 2,80,81 - 914 1097.5 914 1097.5 1002 1069.5 c 2,82,-1 - 1042 1049.5 l 2,83,84 - 1066 1033.5 1066 1033.5 1094 1001.5 c 2,85,-1 - 1142 921.5 l 1,86,-1 - 1146 921.5 l 1,87,-1 - 1146 1325.5 l 1,88,-1 - 590 1325.5 l 1,72,73 +85 1384 m 1,0,-1 + 1105 1384 l 1,1,-1 + 1333 1384 l 1,2,-1 + 1421 1376 l 1,3,-1 + 1445 1344 l 1,4,-1 + 1477 1272 l 1,5,-1 + 1297 1272 l 1,6,-1 + 1297 4 l 1,7,-1 + 1257 32 l 1,8,-1 + 1217 60 l 1,9,-1 + 1205 72 l 1,10,-1 + 1201 72 l 1,11,-1 + 1177 96 l 1,12,-1 + 1173 120 l 1,13,-1 + 1173 136 l 1,14,-1 + 1173 148 l 1,15,-1 + 1173 240 l 1,16,-1 + 1173 568 l 1,17,-1 + 1173 656 l 1,18,-1 + 1169 712 l 1,19,20 + 1149 764 1149 764 1113 792 c 2,21,-1 + 1105 800 l 1,22,-1 + 1097 804 l 1,23,-1 + 1053 828 l 1,24,-1 + 1009 836 l 1,25,-1 + 965 828 l 2,26,27 + 933 824 933 824 893 780 c 0,28,29 + 833 720 833 720 753 612 c 2,30,-1 + 741 596 l 1,31,-1 + 657 492 l 1,32,-1 + 633 464 l 2,33,34 + 573 404 573 404 525 404 c 2,35,-1 + 497 412 l 1,36,-1 + 469 432 l 1,37,-1 + 457 440 l 1,38,-1 + 337 556 l 1,39,-1 + 301 592 l 2,40,41 + 253 644 253 644 233 692 c 1,42,-1 + 293 720 l 1,43,44 + 333 668 333 668 393 624 c 2,45,-1 + 409 612 l 1,46,-1 + 449 592 l 1,47,-1 + 497 608 l 2,48,49 + 533 624 533 624 581 672 c 2,50,-1 + 673 768 l 1,51,-1 + 685 784 l 1,52,-1 + 709 820 l 1,53,-1 + 713 840 l 1,54,-1 + 709 864 l 1,55,-1 + 681 960 l 1,56,57 + 613 1096 613 1096 473 1136 c 1,58,-1 + 409 1144 l 1,59,-1 + 321 1160 l 2,60,61 + 265 1180 265 1180 229 1220 c 2,62,-1 + 217 1240 l 1,63,-1 + 201 1260 l 1,64,-1 + 173 1272 l 1,65,-1 + 169 1272 l 1,66,-1 + 153 1276 l 1,67,-1 + 141 1280 l 1,68,-1 + 121 1304 l 1,69,-1 + 117 1312 l 1,70,-1 + 101 1348 l 1,71,-1 + 85 1384 l 1,0,-1 +617 1272 m 1,72,73 + 709 1152 709 1152 753 1012 c 2,74,-1 + 761 976 l 1,75,-1 + 769 924 l 1,76,-1 + 777 880 l 1,77,-1 + 817 928 l 1,78,-1 + 821 932 l 1,79,-1 + 837 948 l 2,80,81 + 941 1044 941 1044 1029 1016 c 2,82,-1 + 1069 996 l 2,83,84 + 1093 980 1093 980 1121 948 c 2,85,-1 + 1169 868 l 1,86,-1 + 1173 868 l 1,87,-1 + 1173 1272 l 1,88,-1 + 617 1272 l 1,72,73 EndSplineSet EndChar @@ -5294,36 +5411,71 @@ EndChar StartChar: quoteright Encoding: 8217 8217 182 Width: 1582 +VWidth: 575 Flags: W LayerCount: 2 Fore SplineSet -464 849 m 1,0,-1 - 809 905 l 1,1,-1 - 665 419 l 1,2,3 - 840 718 840 718 983 837 c 0,4,5 - 1064 905 1064 905 1115 905 c 0,6,7 - 1148 905 1148 905 1167 885.5 c 128,-1,8 - 1186 866 1186 866 1186 829 c 0,9,10 - 1186 763 1186 763 1152 703 c 0,11,12 - 1128 658 1128 658 1083 658 c 0,13,14 - 1060 658 1060 658 1043.5 673 c 128,-1,15 - 1027 688 1027 688 1023 719 c 0,16,17 - 1021 738 1021 738 1014 744 c 0,18,19 - 1006 752 1006 752 995 752 c 0,20,21 - 978 752 978 752 963 744 c 0,22,23 - 937 730 937 730 884 666 c 0,24,25 - 801 568 801 568 704 412 c 0,26,27 - 662 346 662 346 632 263 c 0,28,29 - 590 149 590 149 584 126 c 2,30,-1 - 552 0 l 1,31,-1 - 399 0 l 1,32,-1 - 584 621 l 2,33,34 - 616 729 616 729 616 775 c 0,35,36 - 616 793 616 793 601 805 c 0,37,38 - 581 821 581 821 548 821 c 0,39,40 - 527 821 527 821 471 812 c 1,41,-1 - 464 849 l 1,0,-1 +230 1384 m 1,0,-1 + 1030 1384 l 1,1,-1 + 1222 1384 l 1,2,-1 + 1298 1376 l 1,3,-1 + 1322 1344 l 1,4,-1 + 1354 1272 l 1,5,-1 + 1174 1272 l 1,6,-1 + 1174 4 l 1,7,-1 + 1158 12 l 2,8,9 + 1130 28 1130 28 1118 48 c 2,10,-1 + 1114 64 l 1,11,-1 + 1110 80 l 1,12,-1 + 1106 96 l 1,13,-1 + 1082 176 l 2,14,15 + 1054 260 1054 260 966 352 c 0,16,17 + 830 492 830 492 638 584 c 1,18,-1 + 502 632 l 1,19,-1 + 474 640 l 1,20,-1 + 470 640 l 1,21,-1 + 466 640 l 1,22,-1 + 462 644 l 1,23,-1 + 422 656 l 1,24,-1 + 398 688 l 1,25,-1 + 382 708 l 1,26,-1 + 362 740 l 1,27,-1 + 322 808 l 1,28,29 + 582 976 582 976 754 1060 c 2,30,-1 + 942 1136 l 1,31,-1 + 974 1148 l 1,32,-1 + 990 1152 l 1,33,-1 + 1038 1172 l 2,34,35 + 1054 1184 1054 1184 1054 1228 c 2,36,-1 + 1054 1232 l 1,37,-1 + 1054 1236 l 1,38,-1 + 1054 1240 l 1,39,-1 + 1050 1248 l 1,40,-1 + 1050 1272 l 1,41,-1 + 506 1272 l 1,42,-1 + 354 1272 l 1,43,-1 + 286 1276 l 1,44,-1 + 262 1312 l 1,45,-1 + 230 1384 l 1,0,-1 +542 764 m 1,46,47 + 606 752 606 752 698 688 c 0,48,49 + 786 636 786 636 874 552 c 256,50,51 + 962 468 962 468 1050 352 c 1,52,-1 + 1050 1016 l 1,53,54 + 854 948 854 948 686 852 c 2,55,-1 + 638 828 l 1,56,-1 + 582 796 l 1,57,-1 + 542 764 l 1,46,47 +550 392 m 2,58,-1 + 574 396 l 1,59,-1 + 602 392 l 2,60,61 + 682 376 682 376 690 280 c 0,62,63 + 690 188 690 188 598 168 c 2,64,-1 + 574 164 l 1,65,-1 + 546 168 l 2,66,67 + 466 184 466 184 458 280 c 0,68,69 + 458 372 458 372 550 392 c 2,58,-1 EndSplineSet EndChar From beb8a25bfcec717c9dcd78956ac2bfd6360557fa Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Sat, 7 Sep 2024 17:02:36 -0400 Subject: [PATCH 10/14] Generate new output files --- .../OmeBhatkhandeBangla.ufo/features.fea | 108 ++ .../OmeBhatkhandeBangla.ufo/fontinfo.plist | 260 ++++ .../OmeBhatkhandeBangla.ufo/glyphs/A_.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/A_E_.glif | 5 + .../glyphs/A_E_acute.glif | 5 + .../glyphs/A_acute.glif | 5 + .../glyphs/A_breve.glif | 5 + .../glyphs/A_circumflex.glif | 5 + .../glyphs/A_dieresis.glif | 5 + .../glyphs/A_grave.glif | 5 + .../glyphs/A_lpha.glif | 5 + .../glyphs/A_lphatonos.glif | 5 + .../glyphs/A_macron.glif | 5 + .../glyphs/A_ogonek.glif | 5 + .../glyphs/A_ring.glif | 5 + .../glyphs/A_ringacute.glif | 5 + .../glyphs/A_tilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/B_.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/B_eta.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/C_.glif | 5 + .../glyphs/C_acute.glif | 5 + .../glyphs/C_caron.glif | 5 + .../glyphs/C_cedilla.glif | 5 + .../glyphs/C_circumflex.glif | 5 + .../glyphs/C_dotaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/C_hi.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/D_.glif | 98 ++ .../glyphs/D_caron.glif | 5 + .../glyphs/D_croat.glif | 5 + .../glyphs/D_elta.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/E_.glif | 17 + .../glyphs/E_acute.glif | 5 + .../glyphs/E_breve.glif | 5 + .../glyphs/E_caron.glif | 5 + .../glyphs/E_circumflex.glif | 5 + .../glyphs/E_dieresis.glif | 5 + .../glyphs/E_dotaccent.glif | 5 + .../glyphs/E_grave.glif | 5 + .../glyphs/E_macron.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/E_ng.glif | 5 + .../glyphs/E_ogonek.glif | 5 + .../glyphs/E_psilon.glif | 5 + .../glyphs/E_psilontonos.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/E_ta.glif | 5 + .../glyphs/E_tatonos.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/E_th.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/E_uro.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/F_.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/G_.glif | 103 ++ .../glyphs/G_amma.glif | 5 + .../glyphs/G_breve.glif | 5 + .../glyphs/G_circumflex.glif | 5 + .../glyphs/G_commaaccent.glif | 5 + .../glyphs/G_dotaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/H_.glif | 5 + .../glyphs/H_18533.glif | 5 + .../glyphs/H_18543.glif | 5 + .../glyphs/H_18551.glif | 5 + .../glyphs/H_22073.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/H_bar.glif | 5 + .../glyphs/H_circumflex.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/I_.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/I_J_.glif | 5 + .../glyphs/I_acute.glif | 5 + .../glyphs/I_breve.glif | 5 + .../glyphs/I_circumflex.glif | 5 + .../glyphs/I_dieresis.glif | 5 + .../glyphs/I_dotaccent.glif | 5 + .../glyphs/I_grave.glif | 5 + .../glyphs/I_macron.glif | 5 + .../glyphs/I_ogonek.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/I_ota.glif | 5 + .../glyphs/I_otadieresis.glif | 5 + .../glyphs/I_otatonos.glif | 5 + .../glyphs/I_tilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/J_.glif | 5 + .../glyphs/J_circumflex.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/K_.glif | 5 + .../glyphs/K_appa.glif | 5 + .../glyphs/K_commaaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/L_.glif | 41 + .../glyphs/L_acute.glif | 5 + .../glyphs/L_ambda.glif | 5 + .../glyphs/L_caron.glif | 5 + .../glyphs/L_commaaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/L_dot.glif | 5 + .../glyphs/L_slash.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/M_.glif | 93 ++ .../OmeBhatkhandeBangla.ufo/glyphs/M_u.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/N_.glif | 146 ++ .../glyphs/N_acute.glif | 5 + .../glyphs/N_caron.glif | 5 + .../glyphs/N_commaaccent.glif | 5 + .../glyphs/N_tilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/N_u.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/O_.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/O_E_.glif | 5 + .../glyphs/O_acute.glif | 5 + .../glyphs/O_breve.glif | 5 + .../glyphs/O_circumflex.glif | 5 + .../glyphs/O_dieresis.glif | 5 + .../glyphs/O_grave.glif | 5 + .../glyphs/O_hungarumlaut.glif | 5 + .../glyphs/O_macron.glif | 5 + .../glyphs/O_mega.glif | 5 + .../glyphs/O_megatonos.glif | 5 + .../glyphs/O_micron.glif | 5 + .../glyphs/O_microntonos.glif | 5 + .../glyphs/O_slash.glif | 5 + .../glyphs/O_slashacute.glif | 5 + .../glyphs/O_tilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/P_.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/P_hi.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/P_i.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/P_si.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/Q_.glif | 17 + .../OmeBhatkhandeBangla.ufo/glyphs/R_.glif | 134 ++ .../glyphs/R_acute.glif | 5 + .../glyphs/R_caron.glif | 5 + .../glyphs/R_commaaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/R_ho.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/S_.glif | 5 + .../glyphs/S_F_010000.glif | 5 + .../glyphs/S_F_020000.glif | 5 + .../glyphs/S_F_030000.glif | 5 + .../glyphs/S_F_040000.glif | 5 + .../glyphs/S_F_050000.glif | 5 + .../glyphs/S_F_060000.glif | 5 + .../glyphs/S_F_070000.glif | 5 + .../glyphs/S_F_080000.glif | 5 + .../glyphs/S_F_090000.glif | 5 + .../glyphs/S_F_100000.glif | 5 + .../glyphs/S_F_110000.glif | 5 + .../glyphs/S_F_190000.glif | 5 + .../glyphs/S_F_200000.glif | 5 + .../glyphs/S_F_210000.glif | 5 + .../glyphs/S_F_220000.glif | 5 + .../glyphs/S_F_230000.glif | 5 + .../glyphs/S_F_240000.glif | 5 + .../glyphs/S_F_250000.glif | 5 + .../glyphs/S_F_260000.glif | 5 + .../glyphs/S_F_270000.glif | 5 + .../glyphs/S_F_280000.glif | 5 + .../glyphs/S_F_360000.glif | 5 + .../glyphs/S_F_370000.glif | 5 + .../glyphs/S_F_380000.glif | 5 + .../glyphs/S_F_390000.glif | 5 + .../glyphs/S_F_400000.glif | 5 + .../glyphs/S_F_410000.glif | 5 + .../glyphs/S_F_420000.glif | 5 + .../glyphs/S_F_430000.glif | 5 + .../glyphs/S_F_440000.glif | 5 + .../glyphs/S_F_450000.glif | 5 + .../glyphs/S_F_460000.glif | 5 + .../glyphs/S_F_470000.glif | 5 + .../glyphs/S_F_480000.glif | 5 + .../glyphs/S_F_490000.glif | 5 + .../glyphs/S_F_500000.glif | 5 + .../glyphs/S_F_510000.glif | 5 + .../glyphs/S_F_520000.glif | 5 + .../glyphs/S_F_530000.glif | 5 + .../glyphs/S_F_540000.glif | 5 + .../glyphs/S_acute.glif | 5 + .../glyphs/S_caron.glif | 5 + .../glyphs/S_cedilla.glif | 5 + .../glyphs/S_circumflex.glif | 5 + .../glyphs/S_igma.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/T_.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/T_au.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/T_bar.glif | 5 + .../glyphs/T_caron.glif | 5 + .../glyphs/T_commaaccent.glif | 5 + .../glyphs/T_heta.glif | 5 + .../glyphs/T_horn.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/U_.glif | 41 + .../glyphs/U_acute.glif | 5 + .../glyphs/U_breve.glif | 5 + .../glyphs/U_circumflex.glif | 5 + .../glyphs/U_dieresis.glif | 5 + .../glyphs/U_grave.glif | 5 + .../glyphs/U_hungarumlaut.glif | 5 + .../glyphs/U_macron.glif | 5 + .../glyphs/U_ogonek.glif | 5 + .../glyphs/U_psilon.glif | 5 + .../glyphs/U_psilondieresis.glif | 5 + .../glyphs/U_psilontonos.glif | 5 + .../glyphs/U_ring.glif | 5 + .../glyphs/U_tilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/V_.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/W_.glif | 43 + .../glyphs/W_acute.glif | 5 + .../glyphs/W_circumflex.glif | 5 + .../glyphs/W_dieresis.glif | 5 + .../glyphs/W_grave.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/X_.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/X_i.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/Y_.glif | 5 + .../glyphs/Y_acute.glif | 5 + .../glyphs/Y_circumflex.glif | 5 + .../glyphs/Y_dieresis.glif | 5 + .../glyphs/Y_grave.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/Z_.glif | 5 + .../glyphs/Z_acute.glif | 5 + .../glyphs/Z_caron.glif | 5 + .../glyphs/Z_dotaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/Z_eta.glif | 5 + .../glyphs/_notdef.glif | 18 + .../OmeBhatkhandeBangla.ufo/glyphs/_null.glif | 4 + .../OmeBhatkhandeBangla.ufo/glyphs/a.glif | 5 + .../glyphs/aacute.glif | 5 + .../glyphs/abreve.glif | 5 + .../glyphs/acircumflex.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/acute.glif | 5 + .../glyphs/adieresis.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/ae.glif | 5 + .../glyphs/aeacute.glif | 5 + .../glyphs/afii00208.glif | 5 + .../glyphs/afii10017.glif | 5 + .../glyphs/afii10018.glif | 5 + .../glyphs/afii10019.glif | 5 + .../glyphs/afii10020.glif | 5 + .../glyphs/afii10021.glif | 5 + .../glyphs/afii10022.glif | 5 + .../glyphs/afii10023.glif | 5 + .../glyphs/afii10024.glif | 5 + .../glyphs/afii10025.glif | 5 + .../glyphs/afii10026.glif | 5 + .../glyphs/afii10027.glif | 5 + .../glyphs/afii10028.glif | 5 + .../glyphs/afii10029.glif | 5 + .../glyphs/afii10030.glif | 5 + .../glyphs/afii10031.glif | 5 + .../glyphs/afii10032.glif | 5 + .../glyphs/afii10033.glif | 5 + .../glyphs/afii10034.glif | 5 + .../glyphs/afii10035.glif | 5 + .../glyphs/afii10036.glif | 5 + .../glyphs/afii10037.glif | 5 + .../glyphs/afii10038.glif | 5 + .../glyphs/afii10039.glif | 5 + .../glyphs/afii10040.glif | 5 + .../glyphs/afii10041.glif | 5 + .../glyphs/afii10042.glif | 5 + .../glyphs/afii10043.glif | 5 + .../glyphs/afii10044.glif | 5 + .../glyphs/afii10045.glif | 5 + .../glyphs/afii10046.glif | 5 + .../glyphs/afii10047.glif | 5 + .../glyphs/afii10048.glif | 5 + .../glyphs/afii10049.glif | 5 + .../glyphs/afii10050.glif | 5 + .../glyphs/afii10051.glif | 5 + .../glyphs/afii10052.glif | 5 + .../glyphs/afii10053.glif | 5 + .../glyphs/afii10054.glif | 5 + .../glyphs/afii10055.glif | 5 + .../glyphs/afii10056.glif | 5 + .../glyphs/afii10057.glif | 5 + .../glyphs/afii10058.glif | 5 + .../glyphs/afii10059.glif | 5 + .../glyphs/afii10060.glif | 5 + .../glyphs/afii10061.glif | 5 + .../glyphs/afii10062.glif | 5 + .../glyphs/afii10065.glif | 5 + .../glyphs/afii10066.glif | 5 + .../glyphs/afii10067.glif | 5 + .../glyphs/afii10068.glif | 5 + .../glyphs/afii10069.glif | 5 + .../glyphs/afii10070.glif | 5 + .../glyphs/afii10071.glif | 5 + .../glyphs/afii10072.glif | 5 + .../glyphs/afii10073.glif | 5 + .../glyphs/afii10074.glif | 5 + .../glyphs/afii10075.glif | 5 + .../glyphs/afii10076.glif | 5 + .../glyphs/afii10077.glif | 5 + .../glyphs/afii10078.glif | 5 + .../glyphs/afii10079.glif | 5 + .../glyphs/afii10080.glif | 5 + .../glyphs/afii10081.glif | 5 + .../glyphs/afii10082.glif | 5 + .../glyphs/afii10083.glif | 5 + .../glyphs/afii10084.glif | 5 + .../glyphs/afii10085.glif | 5 + .../glyphs/afii10086.glif | 5 + .../glyphs/afii10087.glif | 5 + .../glyphs/afii10088.glif | 5 + .../glyphs/afii10089.glif | 5 + .../glyphs/afii10090.glif | 5 + .../glyphs/afii10091.glif | 5 + .../glyphs/afii10092.glif | 5 + .../glyphs/afii10093.glif | 5 + .../glyphs/afii10094.glif | 5 + .../glyphs/afii10095.glif | 5 + .../glyphs/afii10096.glif | 5 + .../glyphs/afii10097.glif | 5 + .../glyphs/afii10098.glif | 5 + .../glyphs/afii10099.glif | 5 + .../glyphs/afii10100.glif | 5 + .../glyphs/afii10101.glif | 5 + .../glyphs/afii10102.glif | 5 + .../glyphs/afii10103.glif | 5 + .../glyphs/afii10104.glif | 5 + .../glyphs/afii10105.glif | 5 + .../glyphs/afii10106.glif | 5 + .../glyphs/afii10107.glif | 5 + .../glyphs/afii10108.glif | 5 + .../glyphs/afii10109.glif | 5 + .../glyphs/afii10110.glif | 5 + .../glyphs/afii10145.glif | 5 + .../glyphs/afii10193.glif | 5 + .../glyphs/afii61248.glif | 5 + .../glyphs/afii61289.glif | 5 + .../glyphs/afii61352.glif | 5 + .../glyphs/agrave.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/alpha.glif | 5 + .../glyphs/alphatonos.glif | 5 + .../glyphs/amacron.glif | 5 + .../glyphs/ampersand.glif | 29 + .../glyphs/anoteleia.glif | 5 + .../glyphs/aogonek.glif | 5 + .../glyphs/approxequal.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/aring.glif | 5 + .../glyphs/aringacute.glif | 5 + .../glyphs/arrowboth.glif | 5 + .../glyphs/arrowdown.glif | 5 + .../glyphs/arrowleft.glif | 5 + .../glyphs/arrowright.glif | 5 + .../glyphs/arrowup.glif | 5 + .../glyphs/arrowupdn.glif | 5 + .../glyphs/arrowupdnbse.glif | 5 + .../glyphs/asciicircum.glif | 29 + .../glyphs/asciitilde.glif | 29 + .../glyphs/asterisk.glif | 29 + .../OmeBhatkhandeBangla.ufo/glyphs/at.glif | 29 + .../glyphs/atilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/b.glif | 5 + .../glyphs/backslash.glif | 237 +++ .../OmeBhatkhandeBangla.ufo/glyphs/bar.glif | 13 + .../OmeBhatkhandeBangla.ufo/glyphs/beta.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/block.glif | 5 + .../glyphs/braceleft.glif | 5 + .../glyphs/braceright.glif | 5 + .../glyphs/bracketleft.glif | 80 + .../glyphs/bracketright.glif | 101 ++ .../OmeBhatkhandeBangla.ufo/glyphs/breve.glif | 5 + .../glyphs/brokenbar.glif | 5 + .../glyphs/bullet.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/c.glif | 5 + .../glyphs/cacute.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/caron.glif | 5 + .../glyphs/ccaron.glif | 5 + .../glyphs/ccedilla.glif | 5 + .../glyphs/ccircumflex.glif | 5 + .../glyphs/cdotaccent.glif | 5 + .../glyphs/cedilla.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/cent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/chi.glif | 5 + .../glyphs/circle.glif | 5 + .../glyphs/circumflex.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/club.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/colon.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/comma.glif | 25 + .../glyphs/contents.plist | 1312 +++++++++++++++++ .../glyphs/copyright.glif | 5 + .../glyphs/currency.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/d.glif | 92 ++ .../glyphs/dagger.glif | 5 + .../glyphs/daggerdbl.glif | 5 + .../glyphs/dcaron.glif | 5 + .../glyphs/dcroat.glif | 5 + .../glyphs/degree.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/delta.glif | 5 + .../glyphs/diamond.glif | 5 + .../glyphs/dieresis.glif | 5 + .../glyphs/dieresistonos.glif | 5 + .../glyphs/divide.glif | 5 + .../glyphs/dkshade.glif | 5 + .../glyphs/dnblock.glif | 5 + .../glyphs/dollar.glif | 29 + .../glyphs/dotaccent.glif | 5 + .../glyphs/dotlessi.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/e.glif | 25 + .../glyphs/eacute.glif | 5 + .../glyphs/ebreve.glif | 5 + .../glyphs/ecaron.glif | 5 + .../glyphs/ecircumflex.glif | 5 + .../glyphs/edieresis.glif | 5 + .../glyphs/edotaccent.glif | 5 + .../glyphs/egrave.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/eight.glif | 116 ++ .../glyphs/ellipsis.glif | 5 + .../glyphs/emacron.glif | 5 + .../glyphs/emdash.glif | 5 + .../glyphs/endash.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/eng.glif | 5 + .../glyphs/eogonek.glif | 5 + .../glyphs/epsilon.glif | 5 + .../glyphs/epsilontonos.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/equal.glif | 5 + .../glyphs/equivalence.glif | 5 + .../glyphs/estimated.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/eta.glif | 5 + .../glyphs/etatonos.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/eth.glif | 5 + .../glyphs/exclam.glif | 29 + .../glyphs/exclamdbl.glif | 5 + .../glyphs/exclamdown.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/f.glif | 5 + .../glyphs/female.glif | 5 + .../glyphs/filledbox.glif | 5 + .../glyphs/filledrect.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/five.glif | 71 + .../glyphs/fiveeighths.glif | 5 + .../glyphs/florin.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/four.glif | 105 ++ .../glyphs/fraction.glif | 6 + .../OmeBhatkhandeBangla.ufo/glyphs/franc.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/g.glif | 97 ++ .../OmeBhatkhandeBangla.ufo/glyphs/gamma.glif | 5 + .../glyphs/gbreve.glif | 5 + .../glyphs/gcircumflex.glif | 5 + .../glyphs/gcommaaccent.glif | 5 + .../glyphs/gdotaccent.glif | 5 + .../glyphs/germandbls.glif | 5 + .../glyphs/glyph155.glif | 4 + .../OmeBhatkhandeBangla.ufo/glyphs/grave.glif | 29 + .../glyphs/greater.glif | 5 + .../glyphs/greaterequal.glif | 5 + .../glyphs/guillemotleft.glif | 5 + .../glyphs/guillemotright.glif | 5 + .../glyphs/guilsinglleft.glif | 5 + .../glyphs/guilsinglright.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/h.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/hbar.glif | 5 + .../glyphs/hcircumflex.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/heart.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/house.glif | 5 + .../glyphs/hungarumlaut.glif | 5 + .../glyphs/hyphen.glif | 16 + .../OmeBhatkhandeBangla.ufo/glyphs/i.glif | 5 + .../glyphs/iacute.glif | 5 + .../glyphs/ibreve.glif | 5 + .../glyphs/icircumflex.glif | 5 + .../glyphs/idieresis.glif | 5 + .../glyphs/igrave.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/ij.glif | 5 + .../glyphs/imacron.glif | 5 + .../glyphs/infinity.glif | 5 + .../glyphs/integral.glif | 5 + .../glyphs/integralbt.glif | 5 + .../glyphs/integraltp.glif | 5 + .../glyphs/intersection.glif | 5 + .../glyphs/invbullet.glif | 5 + .../glyphs/invcircle.glif | 5 + .../glyphs/invsmileface.glif | 5 + .../glyphs/iogonek.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/iota.glif | 5 + .../glyphs/iotadieresis.glif | 5 + .../glyphs/iotadieresistonos.glif | 5 + .../glyphs/iotatonos.glif | 5 + .../glyphs/itilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/j.glif | 5 + .../glyphs/jcircumflex.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/k.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/kappa.glif | 5 + .../glyphs/kcommaaccent.glif | 5 + .../glyphs/kgreenlandic.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/l.glif | 24 + .../glyphs/lacute.glif | 5 + .../glyphs/lambda.glif | 5 + .../glyphs/lcaron.glif | 5 + .../glyphs/lcommaaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/ldot.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/less.glif | 5 + .../glyphs/lessequal.glif | 5 + .../glyphs/lfblock.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/lira.glif | 5 + .../glyphs/logicalnot.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/longs.glif | 5 + .../glyphs/lozenge.glif | 5 + .../glyphs/lslash.glif | 5 + .../glyphs/ltshade.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/m.glif | 87 ++ .../glyphs/macron.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/male.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/minus.glif | 5 + .../glyphs/minute.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/mu.glif | 5 + .../glyphs/multiply.glif | 5 + .../glyphs/musicalnote.glif | 5 + .../glyphs/musicalnotedbl.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/n.glif | 140 ++ .../glyphs/nacute.glif | 5 + .../glyphs/napostrophe.glif | 5 + .../glyphs/ncaron.glif | 5 + .../glyphs/ncommaaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/nine.glif | 90 ++ .../glyphs/nonmarkingreturn.glif | 4 + .../glyphs/notequal.glif | 5 + .../glyphs/ntilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/nu.glif | 5 + .../glyphs/numbersign.glif | 29 + .../OmeBhatkhandeBangla.ufo/glyphs/o.glif | 5 + .../glyphs/oacute.glif | 5 + .../glyphs/obreve.glif | 5 + .../glyphs/ocircumflex.glif | 5 + .../glyphs/odieresis.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/oe.glif | 5 + .../glyphs/ogonek.glif | 5 + .../glyphs/ograve.glif | 5 + .../glyphs/ohungarumlaut.glif | 5 + .../glyphs/omacron.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/omega.glif | 5 + .../glyphs/omegatonos.glif | 5 + .../glyphs/omicron.glif | 5 + .../glyphs/omicrontonos.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/one.glif | 65 + .../glyphs/oneeighth.glif | 5 + .../glyphs/onehalf.glif | 5 + .../glyphs/onequarter.glif | 5 + .../glyphs/openbullet.glif | 5 + .../glyphs/ordfeminine.glif | 5 + .../glyphs/ordmasculine.glif | 5 + .../glyphs/orthogonal.glif | 5 + .../glyphs/oslash.glif | 5 + .../glyphs/oslashacute.glif | 5 + .../glyphs/otilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/p.glif | 75 + .../glyphs/paragraph.glif | 5 + .../glyphs/parenleft.glif | 40 + .../glyphs/parenright.glif | 41 + .../glyphs/partialdiff.glif | 5 + .../glyphs/percent.glif | 29 + .../glyphs/period.glif | 5 + .../glyphs/periodcentered.glif | 6 + .../glyphs/perthousand.glif | 5 + .../glyphs/peseta.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/phi.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/pi.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/plus.glif | 21 + .../glyphs/plusminus.glif | 5 + .../glyphs/product.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/psi.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/q.glif | 25 + .../glyphs/question.glif | 5 + .../glyphs/questiondown.glif | 5 + .../glyphs/quotedbl.glif | 5 + .../glyphs/quotedblbase.glif | 5 + .../glyphs/quotedblleft.glif | 5 + .../glyphs/quotedblright.glif | 5 + .../glyphs/quoteleft.glif | 5 + .../glyphs/quotereversed.glif | 5 + .../glyphs/quoteright.glif | 83 ++ .../glyphs/quotesinglbase.glif | 5 + .../glyphs/quotesingle.glif | 83 ++ .../OmeBhatkhandeBangla.ufo/glyphs/r.glif | 128 ++ .../glyphs/racute.glif | 5 + .../glyphs/radical.glif | 5 + .../glyphs/rcaron.glif | 5 + .../glyphs/rcommaaccent.glif | 5 + .../glyphs/registered.glif | 5 + .../glyphs/revlogicalnot.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/rho.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/ring.glif | 5 + .../glyphs/rtblock.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/s.glif | 100 ++ .../glyphs/sacute.glif | 5 + .../glyphs/scaron.glif | 5 + .../glyphs/scedilla.glif | 5 + .../glyphs/scircumflex.glif | 5 + .../glyphs/second.glif | 5 + .../glyphs/section.glif | 5 + .../glyphs/semicolon.glif | 63 + .../OmeBhatkhandeBangla.ufo/glyphs/seven.glif | 82 ++ .../glyphs/seveneighths.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/shade.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/sigma.glif | 5 + .../glyphs/sigma1.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/six.glif | 92 ++ .../OmeBhatkhandeBangla.ufo/glyphs/slash.glif | 5 + .../glyphs/smileface.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/space.glif | 6 + .../OmeBhatkhandeBangla.ufo/glyphs/spade.glif | 5 + .../glyphs/sterling.glif | 5 + .../glyphs/summation.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/sun.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/t.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/tau.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/tbar.glif | 5 + .../glyphs/tcaron.glif | 5 + .../glyphs/tcommaaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/theta.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/thorn.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/three.glif | 77 + .../glyphs/threeeighths.glif | 5 + .../glyphs/threequarters.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/tilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/tonos.glif | 5 + .../glyphs/trademark.glif | 5 + .../glyphs/triagdn.glif | 5 + .../glyphs/triaglf.glif | 5 + .../glyphs/triagrt.glif | 5 + .../glyphs/triagup.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/two.glif | 78 + .../OmeBhatkhandeBangla.ufo/glyphs/u.glif | 24 + .../glyphs/uacute.glif | 5 + .../glyphs/ubreve.glif | 5 + .../glyphs/ucircumflex.glif | 5 + .../glyphs/udieresis.glif | 5 + .../glyphs/ugrave.glif | 5 + .../glyphs/uhungarumlaut.glif | 5 + .../glyphs/umacron.glif | 5 + .../glyphs/underscore.glif | 15 + .../glyphs/underscoredbl.glif | 5 + .../glyphs/uni00B_2.glif | 5 + .../glyphs/uni00B_3.glif | 5 + .../glyphs/uni00B_9.glif | 5 + .../glyphs/uni02C_9.glif | 5 + .../glyphs/uni0394.glif | 5 + .../glyphs/uni03A_9.glif | 5 + .../glyphs/uni03B_C_.glif | 5 + .../glyphs/uni203E_.glif | 5 + .../glyphs/uni207F_.glif | 5 + .../glyphs/uniF_001.glif | 6 + .../glyphs/uniF_002.glif | 6 + .../glyphs/uniF_004.glif | 5 + .../glyphs/uniF_005.glif | 5 + .../glyphs/uogonek.glif | 5 + .../glyphs/upblock.glif | 5 + .../glyphs/upsilon.glif | 5 + .../glyphs/upsilondieresis.glif | 5 + .../glyphs/upsilondieresistonos.glif | 5 + .../glyphs/upsilontonos.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/uring.glif | 5 + .../glyphs/utilde.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/v.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/w.glif | 17 + .../glyphs/wacute.glif | 5 + .../glyphs/wcircumflex.glif | 5 + .../glyphs/wdieresis.glif | 5 + .../glyphs/wgrave.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/x.glif | 21 + .../OmeBhatkhandeBangla.ufo/glyphs/xi.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/y.glif | 5 + .../glyphs/yacute.glif | 5 + .../glyphs/ycircumflex.glif | 5 + .../glyphs/ydieresis.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/yen.glif | 5 + .../glyphs/ygrave.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/z.glif | 5 + .../glyphs/zacute.glif | 5 + .../glyphs/zcaron.glif | 5 + .../glyphs/zdotaccent.glif | 5 + .../OmeBhatkhandeBangla.ufo/glyphs/zero.glif | 55 + .../OmeBhatkhandeBangla.ufo/glyphs/zeta.glif | 5 + .../OmeBhatkhandeBangla.ufo/metainfo.plist | 10 + ttf/OmeBhatkhandeBangla.ttf | Bin 0 -> 34704 bytes ttf/OmeBhatkhandeEnglish.ttf | Bin 31068 -> 31068 bytes ttf/OmeBhatkhandeHindi.ttf | Bin 33052 -> 33052 bytes ttf/OmeBhatkhandePunjabi.ttf | Bin 31924 -> 31924 bytes ttf/OmeSwarlipi.ttf | Bin 30144 -> 30144 bytes 662 files changed, 8217 insertions(+) create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/features.fea create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/fontinfo.plist create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_E_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_E_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_breve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_dieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_grave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_lpha.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_lphatonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_macron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ogonek.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ring.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ringacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_tilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/B_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/B_eta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_cedilla.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_dotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_hi.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_croat.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_elta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_breve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_dieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_dotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_grave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_macron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ng.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ogonek.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_psilon.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_psilontonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_tatonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_th.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_uro.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/F_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_amma.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_breve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_commaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_dotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18533.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18543.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18551.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_22073.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_bar.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_J_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_breve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_dieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_dotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_grave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_macron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_ogonek.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_ota.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_otadieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_otatonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_tilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/J_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/J_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_appa.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_commaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_ambda.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_commaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_dot.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_slash.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/M_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/M_u.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_commaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_tilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_u.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_E_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_breve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_dieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_grave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_hungarumlaut.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_macron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_mega.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_megatonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_micron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_microntonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_slash.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_slashacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_tilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_hi.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_i.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_si.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Q_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_commaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_ho.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_010000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_020000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_030000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_040000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_050000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_060000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_070000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_080000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_090000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_100000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_110000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_190000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_200000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_210000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_220000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_230000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_240000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_250000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_260000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_270000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_280000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_360000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_370000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_380000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_390000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_400000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_410000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_420000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_430000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_440000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_450000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_460000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_470000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_480000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_490000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_500000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_510000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_520000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_530000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_540000.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_cedilla.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_igma.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_au.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_bar.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_commaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_heta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_horn.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_breve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_dieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_grave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_hungarumlaut.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_macron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_ogonek.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilon.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilondieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilontonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_ring.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_tilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/V_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_dieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_grave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/X_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/X_i.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_dieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_grave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_dotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_eta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/_notdef.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/_null.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/a.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/abreve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/acircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/acute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/adieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ae.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aeacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii00208.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10017.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10018.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10019.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10020.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10021.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10022.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10023.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10024.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10025.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10026.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10027.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10028.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10029.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10030.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10031.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10032.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10033.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10034.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10035.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10036.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10037.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10038.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10039.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10040.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10041.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10042.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10043.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10044.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10045.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10046.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10047.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10048.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10049.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10050.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10051.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10052.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10053.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10054.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10055.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10056.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10057.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10058.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10059.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10060.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10061.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10062.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10065.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10066.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10067.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10068.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10069.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10070.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10071.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10072.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10073.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10074.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10075.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10076.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10077.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10078.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10079.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10080.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10081.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10082.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10083.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10084.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10085.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10086.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10087.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10088.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10089.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10090.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10091.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10092.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10093.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10094.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10095.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10096.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10097.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10098.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10099.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10100.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10101.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10102.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10103.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10104.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10105.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10106.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10107.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10108.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10109.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10110.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10145.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10193.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61248.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61289.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61352.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/agrave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/alpha.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/alphatonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/amacron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ampersand.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/anoteleia.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aogonek.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/approxequal.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aring.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aringacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowboth.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowdown.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowleft.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowright.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowup.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowupdn.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowupdnbse.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asciicircum.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asciitilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asterisk.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/at.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/atilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/b.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/backslash.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bar.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/beta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/block.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/braceleft.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/braceright.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bracketleft.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bracketright.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/breve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/brokenbar.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bullet.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/c.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/caron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccaron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccedilla.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cdotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cedilla.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/chi.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/circle.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/circumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/club.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/colon.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/comma.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/contents.plist create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/copyright.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/currency.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/d.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dagger.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/daggerdbl.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dcaron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dcroat.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/degree.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/delta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/diamond.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dieresistonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/divide.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dkshade.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dnblock.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dollar.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dotlessi.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/e.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ebreve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ecaron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ecircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/edieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/edotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/egrave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eight.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ellipsis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/emacron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/emdash.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/endash.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eng.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eogonek.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/epsilon.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/epsilontonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/equal.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/equivalence.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/estimated.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/etatonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eth.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclam.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclamdbl.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclamdown.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/f.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/female.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/filledbox.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/filledrect.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/five.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/fiveeighths.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/florin.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/four.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/fraction.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/franc.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/g.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gamma.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gbreve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gcircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gcommaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gdotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/germandbls.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/glyph155.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/grave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/greater.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/greaterequal.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guillemotleft.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guillemotright.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guilsinglleft.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guilsinglright.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/h.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hbar.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hcircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/heart.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/house.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hungarumlaut.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hyphen.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/i.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ibreve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/icircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/idieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/igrave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ij.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/imacron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/infinity.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integral.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integralbt.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integraltp.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/intersection.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invbullet.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invcircle.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invsmileface.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iogonek.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iota.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotadieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotadieresistonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotatonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/itilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/j.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/jcircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/k.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kappa.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kcommaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kgreenlandic.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/l.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lambda.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lcaron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lcommaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ldot.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/less.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lessequal.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lfblock.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lira.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/logicalnot.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/longs.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lozenge.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lslash.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ltshade.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/m.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/macron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/male.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/minus.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/minute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/mu.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/multiply.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/musicalnote.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/musicalnotedbl.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/n.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/napostrophe.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ncaron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ncommaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nine.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nonmarkingreturn.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/notequal.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ntilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nu.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/numbersign.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/o.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/obreve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ocircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/odieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oe.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ogonek.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ograve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ohungarumlaut.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omacron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omega.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omegatonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omicron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omicrontonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/one.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oneeighth.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/onehalf.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/onequarter.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/openbullet.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ordfeminine.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ordmasculine.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/orthogonal.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oslash.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oslashacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/otilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/p.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/paragraph.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/parenleft.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/parenright.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/partialdiff.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/percent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/period.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/periodcentered.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/perthousand.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/peseta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/phi.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/pi.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/plus.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/plusminus.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/product.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/psi.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/q.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/question.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/questiondown.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedbl.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblbase.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblleft.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblright.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quoteleft.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotereversed.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quoteright.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotesinglbase.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotesingle.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/r.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/racute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/radical.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rcaron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rcommaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/registered.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/revlogicalnot.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rho.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ring.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rtblock.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/s.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scaron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scedilla.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/second.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/section.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/semicolon.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/seven.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/seveneighths.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/shade.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sigma.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sigma1.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/six.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/slash.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/smileface.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/space.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/spade.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sterling.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/summation.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sun.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/t.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tau.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tbar.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tcaron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tcommaaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/theta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/thorn.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/three.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/threeeighths.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/threequarters.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/trademark.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagdn.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triaglf.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagrt.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagup.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/two.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/u.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ubreve.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ucircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/udieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ugrave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uhungarumlaut.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/umacron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/underscore.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/underscoredbl.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_2.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_3.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_9.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni02C_9.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni0394.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni03A_9.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni03B_C_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni203E_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni207F_.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_001.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_002.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_004.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_005.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uogonek.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upblock.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilon.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilondieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilondieresistonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilontonos.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uring.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/utilde.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/v.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/w.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wcircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wdieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wgrave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/x.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/xi.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/y.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/yacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ycircumflex.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ydieresis.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/yen.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ygrave.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/z.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zacute.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zcaron.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zdotaccent.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zero.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zeta.glif create mode 100644 bhatkhande/bangla/OmeBhatkhandeBangla.ufo/metainfo.plist create mode 100644 ttf/OmeBhatkhandeBangla.ttf diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/features.fea b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/features.fea new file mode 100644 index 0000000..268c65b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/features.fea @@ -0,0 +1,108 @@ +languagesystem latn dflt; + + +# GPOS + + +lookup kernHorizontalKerninginLatinloo { + lookupflag 0; + pos \M \u 190; + pos \N \u 100; + pos \R \l 100; + pos \n \u 100; + pos \r \l 100; +} kernHorizontalKerninginLatinloo; + +feature kern { + + script latn; + language dflt ; + lookup kernHorizontalKerninginLatinloo; +} kern; +#Mark attachment classes (defined in GDEF, used in lookupflags) + +@GDEF_Simple = [\.null \nonmarkingreturn \space \exclam \quotedbl \numbersign + \dollar \percent \ampersand \quotesingle \parenleft \parenright \asterisk \plus + \comma \hyphen \period \slash \zero \one \two \three \four \five \six \seven \eight + \nine \colon \semicolon \less \equal \greater \question \at \A \B \C \D \E \F \G \H \I \J + \K \L \M \N \O \P \Q \R \S \T \U \V \W \X \Y \Z \bracketleft \backslash \bracketright + \asciicircum \underscore \grave \a \b \c \d \e \f \g \h \i \j \k \l \m \n \o \p \q \r \s \t \u + \v \w \x \y \z \braceleft \bar \braceright \asciitilde \Adieresis \Aring \Ccedilla + \Eacute \Ntilde \Odieresis \Udieresis \aacute \agrave \acircumflex \adieresis + \atilde \aring \ccedilla \eacute \egrave \ecircumflex \edieresis \iacute \igrave + \icircumflex \idieresis \ntilde \oacute \ograve \ocircumflex \odieresis \otilde + \uacute \ugrave \ucircumflex \udieresis \dagger \degree \cent \sterling \section + \bullet \paragraph \germandbls \registered \copyright \trademark \acute + \dieresis \notequal \AE \Oslash \infinity \plusminus \lessequal \greaterequal + \yen \mu \partialdiff \summation \product \glyph155 \integral \ordfeminine + \ordmasculine \Omega \ae \oslash \questiondown \exclamdown \logicalnot \radical + \florin \approxequal \Delta \guillemotleft \guillemotright \ellipsis \Agrave + \Atilde \Otilde \OE \oe \endash \emdash \quotedblleft \quotedblright \quoteleft + \quoteright \divide \lozenge \ydieresis \Ydieresis \fraction \Euro + \guilsinglleft \guilsinglright \uniF001 \uniF002 \daggerdbl \periodcentered + \quotesinglbase \quotedblbase \perthousand \Acircumflex \Ecircumflex \Aacute + \Edieresis \Egrave \Iacute \Icircumflex \Idieresis \Igrave \Oacute \Ocircumflex + \Ograve \Uacute \Ucircumflex \Ugrave \dotlessi \circumflex \tilde \uni02C9 + \breve \dotaccent \ring \cedilla \hungarumlaut \ogonek \caron \Lslash \lslash + \Scaron \scaron \Zcaron \zcaron \brokenbar \Eth \eth \Yacute \yacute \Thorn \thorn + \minus \multiply \uni00B9 \uni00B2 \uni00B3 \onehalf \onequarter \threequarters + \franc \Gbreve \gbreve \Idotaccent \Scedilla \scedilla \Cacute \cacute \Ccaron + \ccaron \dcroat \currency \macron \Amacron \amacron \Abreve \abreve \Aogonek + \aogonek \Ccircumflex \ccircumflex \Cdotaccent \cdotaccent \Dcaron \dcaron + \Dcroat \Emacron \emacron \Ebreve \ebreve \Edotaccent \edotaccent \Eogonek + \eogonek \Ecaron \ecaron \Gcircumflex \gcircumflex \Gdotaccent \gdotaccent + \Gcommaaccent \gcommaaccent \Hcircumflex \hcircumflex \Hbar \hbar \Itilde + \itilde \Imacron \imacron \Ibreve \ibreve \Iogonek \iogonek \IJ \ij \Jcircumflex + \jcircumflex \Kcommaaccent \kcommaaccent \kgreenlandic \Lacute \lacute + \Lcommaaccent \lcommaaccent \Lcaron \lcaron \Ldot \ldot \Nacute \nacute + \Ncommaaccent \ncommaaccent \Ncaron \ncaron \napostrophe \Eng \eng \Omacron + \omacron \Obreve \obreve \Ohungarumlaut \ohungarumlaut \Racute \racute + \Rcommaaccent \rcommaaccent \Rcaron \rcaron \Sacute \sacute \Scircumflex + \scircumflex \Tcommaaccent \tcommaaccent \Tcaron \tcaron \Tbar \tbar \Utilde + \utilde \Umacron \umacron \Ubreve \ubreve \Uring \uring \Uhungarumlaut + \uhungarumlaut \Uogonek \uogonek \Wcircumflex \wcircumflex \Ycircumflex + \ycircumflex \Zacute \zacute \Zdotaccent \zdotaccent \longs \Aringacute + \aringacute \AEacute \aeacute \Oslashacute \oslashacute \tonos \dieresistonos + \Alphatonos \anoteleia \Epsilontonos \Etatonos \Iotatonos \Omicrontonos + \Upsilontonos \Omegatonos \iotadieresistonos \Alpha \Beta \Gamma \uni0394 + \Epsilon \Zeta \Eta \Theta \Iota \Kappa \Lambda \Mu \Nu \Xi \Omicron \Pi \Rho \Sigma + \Tau \Upsilon \Phi \Chi \Psi \uni03A9 \Iotadieresis \Upsilondieresis \alphatonos + \epsilontonos \etatonos \iotatonos \upsilondieresistonos \alpha \beta \gamma + \delta \epsilon \zeta \eta \theta \iota \kappa \lambda \uni03BC \nu \xi \omicron \pi + \rho \sigma1 \sigma \tau \upsilon \phi \chi \psi \omega \iotadieresis + \upsilondieresis \omicrontonos \upsilontonos \omegatonos \afii10023 + \afii10051 \afii10052 \afii10053 \afii10054 \afii10055 \afii10056 \afii10057 + \afii10058 \afii10059 \afii10060 \afii10061 \afii10062 \afii10145 \afii10017 + \afii10018 \afii10019 \afii10020 \afii10021 \afii10022 \afii10024 \afii10025 + \afii10026 \afii10027 \afii10028 \afii10029 \afii10030 \afii10031 \afii10032 + \afii10033 \afii10034 \afii10035 \afii10036 \afii10037 \afii10038 \afii10039 + \afii10040 \afii10041 \afii10042 \afii10043 \afii10044 \afii10045 \afii10046 + \afii10047 \afii10048 \afii10049 \afii10065 \afii10066 \afii10067 \afii10068 + \afii10069 \afii10070 \afii10072 \afii10073 \afii10074 \afii10075 \afii10076 + \afii10077 \afii10078 \afii10079 \afii10080 \afii10081 \afii10082 \afii10083 + \afii10084 \afii10085 \afii10086 \afii10087 \afii10088 \afii10089 \afii10090 + \afii10091 \afii10092 \afii10093 \afii10094 \afii10095 \afii10096 \afii10097 + \afii10071 \afii10099 \afii10100 \afii10101 \afii10102 \afii10103 \afii10104 + \afii10105 \afii10106 \afii10107 \afii10108 \afii10109 \afii10110 \afii10193 + \afii10050 \afii10098 \Wgrave \wgrave \Wacute \wacute \Wdieresis \wdieresis + \Ygrave \ygrave \afii00208 \underscoredbl \quotereversed \minute \second + \exclamdbl \uni203E \uni207F \lira \peseta \afii61248 \afii61289 \afii61352 + \estimated \oneeighth \threeeighths \fiveeighths \seveneighths \arrowleft + \arrowup \arrowright \arrowdown \arrowboth \arrowupdn \arrowupdnbse + \orthogonal \intersection \equivalence \house \revlogicalnot \integraltp + \integralbt \SF100000 \SF110000 \SF010000 \SF030000 \SF020000 \SF040000 + \SF080000 \SF090000 \SF060000 \SF070000 \SF050000 \SF430000 \SF240000 \SF510000 + \SF520000 \SF390000 \SF220000 \SF210000 \SF250000 \SF500000 \SF490000 \SF380000 + \SF280000 \SF270000 \SF260000 \SF360000 \SF370000 \SF420000 \SF190000 \SF200000 + \SF230000 \SF470000 \SF480000 \SF410000 \SF450000 \SF460000 \SF400000 \SF540000 + \SF530000 \SF440000 \upblock \dnblock \block \lfblock \rtblock \ltshade \shade + \dkshade \filledbox \H22073 \H18543 \H18551 \filledrect \triagup \triagrt + \triagdn \triaglf \circle \H18533 \invbullet \invcircle \openbullet \smileface + \invsmileface \sun \female \male \spade \club \heart \diamond \musicalnote + \musicalnotedbl \uniF004 \uniF005 ]; + +table GDEF { + GlyphClassDef @GDEF_Simple, , , ; + +} GDEF; + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/fontinfo.plist b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/fontinfo.plist new file mode 100644 index 0000000..e535933 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/fontinfo.plist @@ -0,0 +1,260 @@ + + + + + familyName + Ome Bhatkhande Bangla + styleName + Regular + styleMapFamilyName + Ome Bhatkhande Bangla + copyright + Omenad 2006-2024 + unitsPerEm + 2048 + ascender + 1638 + descender + -410 + italicAngle + 0 + note + + openTypeHeadCreated + 2007/10/10 15:11:11 + openTypeHheaAscender + 3650 + openTypeHheaDescender + -3000 + openTypeHheaLineGap + 0 + openTypeNameDesigner + Terence Tuhinanshu + openTypeNameDesignerURL + https://tuhinanshu.com + openTypeNameLicense + Copyright (c) 2024, Omenad (http://omenad.net), +with Reserved Font Name Ome Bhatkhande. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. + openTypeNameLicenseURL + http://scripts.sil.org/OFL + openTypeNameVersion + Version 3.0 Sep 2, 2024 + openTypeNameUniqueID + OmeBhatkhandeBan:3.0 + openTypeNameDescription + For writing Indian Classical Music in Bhatkhande script using Bangla characters + openTypeNameSampleText + su sU ml mL `@DLr@gm qsUwWrUEMU [];'’\ 1234567890 + openTypeOS2Panose + + 2 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2WidthClass + 5 + openTypeOS2WeightClass + 400 + openTypeOS2VendorID + OMND + openTypeOS2FamilyClass + + 0 + 0 + + openTypeOS2Type + + 3 + + openTypeOS2TypoAscender + 3650 + openTypeOS2TypoDescender + -3000 + openTypeOS2TypoLineGap + 205 + openTypeOS2WinAscent + 3650 + openTypeOS2WinDescent + 3000 + openTypeOS2SubscriptXSize + 1434 + openTypeOS2SubscriptYSize + 1331 + openTypeOS2SubscriptXOffset + 0 + openTypeOS2SubscriptYOffset + 283 + openTypeOS2SuperscriptXSize + 1000 + openTypeOS2SuperscriptYSize + 2250 + openTypeOS2SuperscriptXOffset + 0 + openTypeOS2SuperscriptYOffset + 2800 + openTypeOS2StrikeoutSize + 102 + openTypeOS2StrikeoutPosition + 530 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 3 + 5 + 7 + 9 + 29 + 31 + 32 + 33 + 35 + 36 + 37 + 38 + 39 + 43 + 44 + 45 + 46 + 60 + 62 + + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 3 + 4 + 7 + 8 + 29 + 30 + 48 + 49 + 50 + 52 + 53 + 54 + 55 + 56 + 57 + 58 + 59 + 60 + 62 + 63 + + postscriptFontName + OmeBhatkhandeBangla + postscriptFullName + Ome Bhatkhande Bangla + postscriptWeightName + Regular + postscriptUnderlineThickness + 150 + postscriptUnderlinePosition + -292 + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_.glif new file mode 100644 index 0000000..81c3262 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_E_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_E_.glif new file mode 100644 index 0000000..5b176cd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_E_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_E_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_E_acute.glif new file mode 100644 index 0000000..f8ce481 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_acute.glif new file mode 100644 index 0000000..58d2ae2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_breve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_breve.glif new file mode 100644 index 0000000..93fe948 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_breve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_circumflex.glif new file mode 100644 index 0000000..05a104f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_dieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_dieresis.glif new file mode 100644 index 0000000..6b978e9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_grave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_grave.glif new file mode 100644 index 0000000..f72be8b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_grave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_lpha.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_lpha.glif new file mode 100644 index 0000000..48ed9f8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_lpha.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_lphatonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_lphatonos.glif new file mode 100644 index 0000000..470e99b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_lphatonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_macron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_macron.glif new file mode 100644 index 0000000..d7c235f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_macron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ogonek.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ogonek.glif new file mode 100644 index 0000000..8c706f9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ring.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ring.glif new file mode 100644 index 0000000..60f6404 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ring.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ringacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ringacute.glif new file mode 100644 index 0000000..a68e567 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_ringacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_tilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_tilde.glif new file mode 100644 index 0000000..926c3c2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/A_tilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/B_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/B_.glif new file mode 100644 index 0000000..15ba24a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/B_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/B_eta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/B_eta.glif new file mode 100644 index 0000000..5256c10 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/B_eta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_.glif new file mode 100644 index 0000000..9933570 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_acute.glif new file mode 100644 index 0000000..25f0c36 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_caron.glif new file mode 100644 index 0000000..b8173ec --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_cedilla.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_cedilla.glif new file mode 100644 index 0000000..a0b9cea --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_circumflex.glif new file mode 100644 index 0000000..ca81cb3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_dotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 0000000..aa3ccec --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_hi.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_hi.glif new file mode 100644 index 0000000..ee55df7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/C_hi.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_.glif new file mode 100644 index 0000000..1556452 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_caron.glif new file mode 100644 index 0000000..6573796 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_croat.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_croat.glif new file mode 100644 index 0000000..1cc96ce --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_croat.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_elta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_elta.glif new file mode 100644 index 0000000..e981c86 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/D_elta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_.glif new file mode 100644 index 0000000..c3f879e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_acute.glif new file mode 100644 index 0000000..71ed6ee --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_breve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_breve.glif new file mode 100644 index 0000000..74c11ae --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_breve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_caron.glif new file mode 100644 index 0000000..e135166 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_circumflex.glif new file mode 100644 index 0000000..deb4084 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_dieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_dieresis.glif new file mode 100644 index 0000000..a5c9b37 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_dotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 0000000..ef4b22f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_grave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_grave.glif new file mode 100644 index 0000000..b977e24 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_grave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_macron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_macron.glif new file mode 100644 index 0000000..6e173aa --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_macron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ng.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ng.glif new file mode 100644 index 0000000..6e9c90a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ng.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ogonek.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ogonek.glif new file mode 100644 index 0000000..a6a835b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_psilon.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_psilon.glif new file mode 100644 index 0000000..1991d36 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_psilon.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_psilontonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_psilontonos.glif new file mode 100644 index 0000000..6a1df7b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_psilontonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ta.glif new file mode 100644 index 0000000..f32cfbf --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_ta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_tatonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_tatonos.glif new file mode 100644 index 0000000..6519c41 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_tatonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_th.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_th.glif new file mode 100644 index 0000000..10f1d4b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_th.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_uro.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_uro.glif new file mode 100644 index 0000000..602b175 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/E_uro.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/F_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/F_.glif new file mode 100644 index 0000000..d026425 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/F_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_.glif new file mode 100644 index 0000000..ffaa2f9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_amma.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_amma.glif new file mode 100644 index 0000000..05d0f3c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_amma.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_breve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_breve.glif new file mode 100644 index 0000000..4cf80c9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_breve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_circumflex.glif new file mode 100644 index 0000000..c5fc50b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_commaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 0000000..2bd2f43 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_dotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 0000000..2bf5277 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_.glif new file mode 100644 index 0000000..1fea7f9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18533.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18533.glif new file mode 100644 index 0000000..2714268 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18533.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18543.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18543.glif new file mode 100644 index 0000000..961e81f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18543.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18551.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18551.glif new file mode 100644 index 0000000..9b0ffc4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_18551.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_22073.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_22073.glif new file mode 100644 index 0000000..97772f1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_22073.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_bar.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_bar.glif new file mode 100644 index 0000000..c527095 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_bar.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_circumflex.glif new file mode 100644 index 0000000..c66dd13 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_.glif new file mode 100644 index 0000000..843dfc0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_J_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_J_.glif new file mode 100644 index 0000000..df3130a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_J_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_acute.glif new file mode 100644 index 0000000..e15b54a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_breve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_breve.glif new file mode 100644 index 0000000..a4e8ba4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_breve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_circumflex.glif new file mode 100644 index 0000000..e4de48a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_dieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_dieresis.glif new file mode 100644 index 0000000..e54c333 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_dotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 0000000..0c02d47 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_grave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_grave.glif new file mode 100644 index 0000000..336cd98 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_grave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_macron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_macron.glif new file mode 100644 index 0000000..1c020db --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_macron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_ogonek.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_ogonek.glif new file mode 100644 index 0000000..45064bf --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_ota.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_ota.glif new file mode 100644 index 0000000..6c52ef6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_ota.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_otadieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_otadieresis.glif new file mode 100644 index 0000000..d2f75d9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_otadieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_otatonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_otatonos.glif new file mode 100644 index 0000000..623e3f5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_otatonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_tilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_tilde.glif new file mode 100644 index 0000000..14d53ed --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/I_tilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/J_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/J_.glif new file mode 100644 index 0000000..a98ab88 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/J_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/J_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/J_circumflex.glif new file mode 100644 index 0000000..99d8880 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_.glif new file mode 100644 index 0000000..800d502 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_appa.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_appa.glif new file mode 100644 index 0000000..a836e18 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_appa.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_commaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 0000000..39d07d7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_.glif new file mode 100644 index 0000000..d985b10 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_acute.glif new file mode 100644 index 0000000..ba2c19a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_ambda.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_ambda.glif new file mode 100644 index 0000000..3d5fbe0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_ambda.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_caron.glif new file mode 100644 index 0000000..fc6586b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_commaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 0000000..23c9ba5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_dot.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_dot.glif new file mode 100644 index 0000000..411c5ec --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_dot.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_slash.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_slash.glif new file mode 100644 index 0000000..28bd47e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/L_slash.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/M_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/M_.glif new file mode 100644 index 0000000..f180514 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/M_.glif @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/M_u.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/M_u.glif new file mode 100644 index 0000000..98b5316 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/M_u.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_.glif new file mode 100644 index 0000000..17983a8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_.glif @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_acute.glif new file mode 100644 index 0000000..c03a301 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_caron.glif new file mode 100644 index 0000000..d0e9663 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_commaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 0000000..13e4551 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_tilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_tilde.glif new file mode 100644 index 0000000..6ce4962 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_tilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_u.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_u.glif new file mode 100644 index 0000000..54c01ee --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/N_u.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_.glif new file mode 100644 index 0000000..a6c2e70 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_E_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_E_.glif new file mode 100644 index 0000000..04dd801 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_E_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_acute.glif new file mode 100644 index 0000000..ebad2d0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_breve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_breve.glif new file mode 100644 index 0000000..dc24e8d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_breve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_circumflex.glif new file mode 100644 index 0000000..f25b8c7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_dieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_dieresis.glif new file mode 100644 index 0000000..812f884 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_grave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_grave.glif new file mode 100644 index 0000000..d2125ed --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_grave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_hungarumlaut.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 0000000..415dbc4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_macron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_macron.glif new file mode 100644 index 0000000..c33dc29 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_macron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_mega.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_mega.glif new file mode 100644 index 0000000..87da26d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_mega.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_megatonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_megatonos.glif new file mode 100644 index 0000000..8b41a92 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_megatonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_micron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_micron.glif new file mode 100644 index 0000000..74f2c19 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_micron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_microntonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_microntonos.glif new file mode 100644 index 0000000..bac6424 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_microntonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_slash.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_slash.glif new file mode 100644 index 0000000..0192a67 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_slash.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_slashacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_slashacute.glif new file mode 100644 index 0000000..4b6b8bc --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_tilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_tilde.glif new file mode 100644 index 0000000..239976f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/O_tilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_.glif new file mode 100644 index 0000000..d38bfc4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_hi.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_hi.glif new file mode 100644 index 0000000..e067a0c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_hi.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_i.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_i.glif new file mode 100644 index 0000000..e4103ab --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_i.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_si.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_si.glif new file mode 100644 index 0000000..4c6bc46 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/P_si.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Q_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Q_.glif new file mode 100644 index 0000000..dd0991a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Q_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_.glif new file mode 100644 index 0000000..a2a0118 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_.glif @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_acute.glif new file mode 100644 index 0000000..e547821 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_caron.glif new file mode 100644 index 0000000..b0d62df --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_commaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 0000000..9a0e3ef --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_ho.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_ho.glif new file mode 100644 index 0000000..8014df4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/R_ho.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_.glif new file mode 100644 index 0000000..033f19b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_010000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_010000.glif new file mode 100644 index 0000000..abd30f1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_010000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_020000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_020000.glif new file mode 100644 index 0000000..440c486 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_020000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_030000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_030000.glif new file mode 100644 index 0000000..bac4f97 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_030000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_040000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_040000.glif new file mode 100644 index 0000000..3a53bb3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_040000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_050000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_050000.glif new file mode 100644 index 0000000..08c8388 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_050000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_060000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_060000.glif new file mode 100644 index 0000000..6d5ef65 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_060000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_070000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_070000.glif new file mode 100644 index 0000000..d7fb5b1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_070000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_080000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_080000.glif new file mode 100644 index 0000000..99e05f1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_080000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_090000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_090000.glif new file mode 100644 index 0000000..9707367 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_090000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_100000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_100000.glif new file mode 100644 index 0000000..87945de --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_100000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_110000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_110000.glif new file mode 100644 index 0000000..99b6ed2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_110000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_190000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_190000.glif new file mode 100644 index 0000000..41fe834 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_190000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_200000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_200000.glif new file mode 100644 index 0000000..133aa3b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_200000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_210000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_210000.glif new file mode 100644 index 0000000..b1d45f3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_210000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_220000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_220000.glif new file mode 100644 index 0000000..66fd8fa --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_220000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_230000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_230000.glif new file mode 100644 index 0000000..62f7b11 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_230000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_240000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_240000.glif new file mode 100644 index 0000000..a61ce23 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_240000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_250000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_250000.glif new file mode 100644 index 0000000..69d70fb --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_250000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_260000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_260000.glif new file mode 100644 index 0000000..8f0c58b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_260000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_270000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_270000.glif new file mode 100644 index 0000000..7ac5df1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_270000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_280000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_280000.glif new file mode 100644 index 0000000..ebb4882 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_280000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_360000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_360000.glif new file mode 100644 index 0000000..b373574 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_360000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_370000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_370000.glif new file mode 100644 index 0000000..0af0590 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_370000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_380000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_380000.glif new file mode 100644 index 0000000..86c6b76 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_380000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_390000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_390000.glif new file mode 100644 index 0000000..5336296 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_390000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_400000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_400000.glif new file mode 100644 index 0000000..e08fdb4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_400000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_410000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_410000.glif new file mode 100644 index 0000000..7751353 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_410000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_420000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_420000.glif new file mode 100644 index 0000000..cf51470 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_420000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_430000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_430000.glif new file mode 100644 index 0000000..7a6ef12 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_430000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_440000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_440000.glif new file mode 100644 index 0000000..4bd9ef3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_440000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_450000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_450000.glif new file mode 100644 index 0000000..ace3138 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_450000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_460000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_460000.glif new file mode 100644 index 0000000..1b1cb5b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_460000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_470000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_470000.glif new file mode 100644 index 0000000..6536737 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_470000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_480000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_480000.glif new file mode 100644 index 0000000..bddcf8e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_480000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_490000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_490000.glif new file mode 100644 index 0000000..4a2c01a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_490000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_500000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_500000.glif new file mode 100644 index 0000000..dea6667 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_500000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_510000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_510000.glif new file mode 100644 index 0000000..06329c9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_510000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_520000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_520000.glif new file mode 100644 index 0000000..2c17192 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_520000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_530000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_530000.glif new file mode 100644 index 0000000..0ead913 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_530000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_540000.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_540000.glif new file mode 100644 index 0000000..5644f38 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_F_540000.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_acute.glif new file mode 100644 index 0000000..bf8fd71 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_caron.glif new file mode 100644 index 0000000..36e7c3a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_cedilla.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_cedilla.glif new file mode 100644 index 0000000..cebba37 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_circumflex.glif new file mode 100644 index 0000000..1ca6fcb --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_igma.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_igma.glif new file mode 100644 index 0000000..c4796dc --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/S_igma.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_.glif new file mode 100644 index 0000000..86202c6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_au.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_au.glif new file mode 100644 index 0000000..2c52578 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_au.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_bar.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_bar.glif new file mode 100644 index 0000000..fe5dddd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_bar.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_caron.glif new file mode 100644 index 0000000..7731154 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_commaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 0000000..07e20e1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_heta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_heta.glif new file mode 100644 index 0000000..ef1d91a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_heta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_horn.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_horn.glif new file mode 100644 index 0000000..1e320d5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/T_horn.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_.glif new file mode 100644 index 0000000..8f7050e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_acute.glif new file mode 100644 index 0000000..f7c0f22 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_breve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_breve.glif new file mode 100644 index 0000000..bd4e372 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_breve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_circumflex.glif new file mode 100644 index 0000000..f79964c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_dieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_dieresis.glif new file mode 100644 index 0000000..c0470bd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_grave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_grave.glif new file mode 100644 index 0000000..9f6af6b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_grave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_hungarumlaut.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 0000000..0d21a81 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_macron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_macron.glif new file mode 100644 index 0000000..0f8df10 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_macron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_ogonek.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_ogonek.glif new file mode 100644 index 0000000..32ad63e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilon.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilon.glif new file mode 100644 index 0000000..9c56642 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilon.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilondieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilondieresis.glif new file mode 100644 index 0000000..e6f2b65 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilondieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilontonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilontonos.glif new file mode 100644 index 0000000..a212a11 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_psilontonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_ring.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_ring.glif new file mode 100644 index 0000000..d986f7f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_ring.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_tilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_tilde.glif new file mode 100644 index 0000000..2d40a58 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/U_tilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/V_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/V_.glif new file mode 100644 index 0000000..a55214e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/V_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_.glif new file mode 100644 index 0000000..95b374f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_acute.glif new file mode 100644 index 0000000..c1e1a19 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_circumflex.glif new file mode 100644 index 0000000..0f5a4d8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_dieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_dieresis.glif new file mode 100644 index 0000000..c39b496 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_grave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_grave.glif new file mode 100644 index 0000000..97a916a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/W_grave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/X_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/X_.glif new file mode 100644 index 0000000..e7085a8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/X_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/X_i.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/X_i.glif new file mode 100644 index 0000000..b656b6d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/X_i.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_.glif new file mode 100644 index 0000000..f1612e1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_acute.glif new file mode 100644 index 0000000..00a75cc --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 0000000..401f8b0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_dieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 0000000..98e6974 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_grave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_grave.glif new file mode 100644 index 0000000..1ed08af --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Y_grave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_.glif new file mode 100644 index 0000000..dec972d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_acute.glif new file mode 100644 index 0000000..3baef6b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_caron.glif new file mode 100644 index 0000000..4b42c4c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_dotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 0000000..8967b6c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_eta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_eta.glif new file mode 100644 index 0000000..dabc52e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/Z_eta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/_notdef.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/_notdef.glif new file mode 100644 index 0000000..b61c3cb --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/_notdef.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/_null.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/_null.glif new file mode 100644 index 0000000..23f7877 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/_null.glif @@ -0,0 +1,4 @@ + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/a.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/a.glif new file mode 100644 index 0000000..7a8f3cf --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/a.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aacute.glif new file mode 100644 index 0000000..a71c21f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/abreve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/abreve.glif new file mode 100644 index 0000000..2a98ab3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/abreve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/acircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/acircumflex.glif new file mode 100644 index 0000000..6fbcdf0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/acircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/acute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/acute.glif new file mode 100644 index 0000000..df70745 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/acute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/adieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/adieresis.glif new file mode 100644 index 0000000..8d9f483 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/adieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ae.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ae.glif new file mode 100644 index 0000000..e771b7b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ae.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aeacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aeacute.glif new file mode 100644 index 0000000..fabd15f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aeacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii00208.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii00208.glif new file mode 100644 index 0000000..79f3ea8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii00208.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10017.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10017.glif new file mode 100644 index 0000000..d956581 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10017.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10018.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10018.glif new file mode 100644 index 0000000..57a2227 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10018.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10019.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10019.glif new file mode 100644 index 0000000..92f9642 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10019.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10020.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10020.glif new file mode 100644 index 0000000..3236c0f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10020.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10021.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10021.glif new file mode 100644 index 0000000..59d80e3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10021.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10022.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10022.glif new file mode 100644 index 0000000..b434b6a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10022.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10023.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10023.glif new file mode 100644 index 0000000..04932d0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10023.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10024.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10024.glif new file mode 100644 index 0000000..dee706b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10024.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10025.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10025.glif new file mode 100644 index 0000000..0c1d6e0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10025.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10026.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10026.glif new file mode 100644 index 0000000..0c328aa --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10026.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10027.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10027.glif new file mode 100644 index 0000000..d00a0d7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10027.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10028.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10028.glif new file mode 100644 index 0000000..d12391c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10028.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10029.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10029.glif new file mode 100644 index 0000000..e24b661 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10029.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10030.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10030.glif new file mode 100644 index 0000000..b6c0d4d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10030.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10031.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10031.glif new file mode 100644 index 0000000..a7ba732 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10031.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10032.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10032.glif new file mode 100644 index 0000000..712f183 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10032.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10033.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10033.glif new file mode 100644 index 0000000..4d525a2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10033.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10034.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10034.glif new file mode 100644 index 0000000..b5a5fd4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10034.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10035.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10035.glif new file mode 100644 index 0000000..e3fc250 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10035.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10036.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10036.glif new file mode 100644 index 0000000..3a51c6a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10036.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10037.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10037.glif new file mode 100644 index 0000000..1eedd5e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10037.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10038.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10038.glif new file mode 100644 index 0000000..b0c1699 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10038.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10039.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10039.glif new file mode 100644 index 0000000..121e6f6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10039.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10040.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10040.glif new file mode 100644 index 0000000..0b782e8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10040.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10041.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10041.glif new file mode 100644 index 0000000..b90bf3e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10041.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10042.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10042.glif new file mode 100644 index 0000000..bf0463d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10042.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10043.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10043.glif new file mode 100644 index 0000000..fe8127a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10043.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10044.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10044.glif new file mode 100644 index 0000000..a0c5143 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10044.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10045.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10045.glif new file mode 100644 index 0000000..1ea1115 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10045.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10046.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10046.glif new file mode 100644 index 0000000..1888659 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10046.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10047.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10047.glif new file mode 100644 index 0000000..faec2b3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10047.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10048.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10048.glif new file mode 100644 index 0000000..817a70e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10048.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10049.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10049.glif new file mode 100644 index 0000000..b79a925 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10049.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10050.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10050.glif new file mode 100644 index 0000000..999388d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10050.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10051.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10051.glif new file mode 100644 index 0000000..c0378b7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10051.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10052.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10052.glif new file mode 100644 index 0000000..5738af5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10052.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10053.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10053.glif new file mode 100644 index 0000000..923103f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10053.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10054.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10054.glif new file mode 100644 index 0000000..8602148 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10054.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10055.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10055.glif new file mode 100644 index 0000000..c28345c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10055.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10056.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10056.glif new file mode 100644 index 0000000..eeaddd0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10056.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10057.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10057.glif new file mode 100644 index 0000000..7f26787 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10057.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10058.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10058.glif new file mode 100644 index 0000000..13802e1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10058.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10059.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10059.glif new file mode 100644 index 0000000..24f323c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10059.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10060.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10060.glif new file mode 100644 index 0000000..1bcf7fc --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10060.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10061.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10061.glif new file mode 100644 index 0000000..1928d18 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10061.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10062.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10062.glif new file mode 100644 index 0000000..e7a676a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10062.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10065.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10065.glif new file mode 100644 index 0000000..dce472b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10065.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10066.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10066.glif new file mode 100644 index 0000000..5abdd85 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10066.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10067.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10067.glif new file mode 100644 index 0000000..d386dd8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10067.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10068.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10068.glif new file mode 100644 index 0000000..250dcd1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10068.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10069.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10069.glif new file mode 100644 index 0000000..05655b9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10069.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10070.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10070.glif new file mode 100644 index 0000000..2ccac7a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10070.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10071.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10071.glif new file mode 100644 index 0000000..9f261fe --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10071.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10072.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10072.glif new file mode 100644 index 0000000..0eda74a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10072.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10073.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10073.glif new file mode 100644 index 0000000..583e053 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10073.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10074.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10074.glif new file mode 100644 index 0000000..4809e57 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10074.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10075.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10075.glif new file mode 100644 index 0000000..c9eedef --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10075.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10076.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10076.glif new file mode 100644 index 0000000..23880d4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10076.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10077.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10077.glif new file mode 100644 index 0000000..72068ca --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10077.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10078.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10078.glif new file mode 100644 index 0000000..0bb569b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10078.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10079.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10079.glif new file mode 100644 index 0000000..8e54650 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10079.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10080.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10080.glif new file mode 100644 index 0000000..58e6f8e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10080.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10081.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10081.glif new file mode 100644 index 0000000..9763ba2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10081.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10082.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10082.glif new file mode 100644 index 0000000..f305dd9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10082.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10083.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10083.glif new file mode 100644 index 0000000..4840057 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10083.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10084.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10084.glif new file mode 100644 index 0000000..d16e0e7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10084.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10085.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10085.glif new file mode 100644 index 0000000..79edbf6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10085.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10086.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10086.glif new file mode 100644 index 0000000..a7e7b96 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10086.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10087.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10087.glif new file mode 100644 index 0000000..c571726 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10087.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10088.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10088.glif new file mode 100644 index 0000000..3b627a9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10088.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10089.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10089.glif new file mode 100644 index 0000000..d788aa5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10089.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10090.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10090.glif new file mode 100644 index 0000000..3ad850a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10090.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10091.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10091.glif new file mode 100644 index 0000000..41ae4c1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10091.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10092.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10092.glif new file mode 100644 index 0000000..b53f041 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10092.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10093.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10093.glif new file mode 100644 index 0000000..3511759 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10093.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10094.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10094.glif new file mode 100644 index 0000000..31c62b5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10094.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10095.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10095.glif new file mode 100644 index 0000000..08f199c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10095.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10096.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10096.glif new file mode 100644 index 0000000..81f3ea1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10096.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10097.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10097.glif new file mode 100644 index 0000000..5a3f0f4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10097.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10098.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10098.glif new file mode 100644 index 0000000..7c57ab7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10098.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10099.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10099.glif new file mode 100644 index 0000000..ef0928f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10099.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10100.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10100.glif new file mode 100644 index 0000000..c5ad3f5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10100.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10101.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10101.glif new file mode 100644 index 0000000..4927ab2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10101.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10102.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10102.glif new file mode 100644 index 0000000..21f8cc1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10102.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10103.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10103.glif new file mode 100644 index 0000000..783a530 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10103.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10104.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10104.glif new file mode 100644 index 0000000..001c887 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10104.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10105.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10105.glif new file mode 100644 index 0000000..3c8278c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10105.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10106.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10106.glif new file mode 100644 index 0000000..6807822 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10106.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10107.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10107.glif new file mode 100644 index 0000000..d1d5209 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10107.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10108.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10108.glif new file mode 100644 index 0000000..aed1693 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10108.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10109.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10109.glif new file mode 100644 index 0000000..027a95e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10109.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10110.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10110.glif new file mode 100644 index 0000000..f34b861 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10110.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10145.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10145.glif new file mode 100644 index 0000000..ce3292e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10145.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10193.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10193.glif new file mode 100644 index 0000000..579e234 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii10193.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61248.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61248.glif new file mode 100644 index 0000000..d817070 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61248.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61289.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61289.glif new file mode 100644 index 0000000..d9570b4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61289.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61352.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61352.glif new file mode 100644 index 0000000..e4189a1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/afii61352.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/agrave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/agrave.glif new file mode 100644 index 0000000..fdee263 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/agrave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/alpha.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/alpha.glif new file mode 100644 index 0000000..9858fca --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/alpha.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/alphatonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/alphatonos.glif new file mode 100644 index 0000000..753d021 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/alphatonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/amacron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/amacron.glif new file mode 100644 index 0000000..abe5198 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/amacron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ampersand.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ampersand.glif new file mode 100644 index 0000000..da65ca9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ampersand.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/anoteleia.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/anoteleia.glif new file mode 100644 index 0000000..1f1bf63 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/anoteleia.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aogonek.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aogonek.glif new file mode 100644 index 0000000..bd49527 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aogonek.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/approxequal.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/approxequal.glif new file mode 100644 index 0000000..3a6a823 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/approxequal.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aring.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aring.glif new file mode 100644 index 0000000..e8cc9cf --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aring.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aringacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aringacute.glif new file mode 100644 index 0000000..55a29ba --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/aringacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowboth.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowboth.glif new file mode 100644 index 0000000..d7b5dc6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowboth.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowdown.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowdown.glif new file mode 100644 index 0000000..250e36e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowdown.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowleft.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowleft.glif new file mode 100644 index 0000000..b2d0f02 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowleft.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowright.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowright.glif new file mode 100644 index 0000000..e616255 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowright.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowup.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowup.glif new file mode 100644 index 0000000..deb2222 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowup.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowupdn.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowupdn.glif new file mode 100644 index 0000000..74aff22 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowupdn.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowupdnbse.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowupdnbse.glif new file mode 100644 index 0000000..2dcebee --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/arrowupdnbse.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asciicircum.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asciicircum.glif new file mode 100644 index 0000000..8ae9528 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asciicircum.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asciitilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asciitilde.glif new file mode 100644 index 0000000..c06c46d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asterisk.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asterisk.glif new file mode 100644 index 0000000..4ba2337 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/asterisk.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/at.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/at.glif new file mode 100644 index 0000000..6bc7c1a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/at.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/atilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/atilde.glif new file mode 100644 index 0000000..d642f16 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/atilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/b.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/b.glif new file mode 100644 index 0000000..b85961e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/b.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/backslash.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/backslash.glif new file mode 100644 index 0000000..940d0d4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/backslash.glif @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bar.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bar.glif new file mode 100644 index 0000000..464e7be --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bar.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/beta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/beta.glif new file mode 100644 index 0000000..1d2d1f4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/beta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/block.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/block.glif new file mode 100644 index 0000000..b74bf38 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/block.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/braceleft.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/braceleft.glif new file mode 100644 index 0000000..b5a7100 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/braceleft.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/braceright.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/braceright.glif new file mode 100644 index 0000000..0f928d3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/braceright.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bracketleft.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bracketleft.glif new file mode 100644 index 0000000..46bcf6a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bracketleft.glif @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bracketright.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bracketright.glif new file mode 100644 index 0000000..788401b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bracketright.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/breve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/breve.glif new file mode 100644 index 0000000..adeae60 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/breve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/brokenbar.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/brokenbar.glif new file mode 100644 index 0000000..920bc59 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/brokenbar.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bullet.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bullet.glif new file mode 100644 index 0000000..189db7e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/bullet.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/c.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/c.glif new file mode 100644 index 0000000..1737f35 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/c.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cacute.glif new file mode 100644 index 0000000..77451d1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/caron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/caron.glif new file mode 100644 index 0000000..01c5c38 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/caron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccaron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccaron.glif new file mode 100644 index 0000000..500eed3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccaron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccedilla.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccedilla.glif new file mode 100644 index 0000000..49a5168 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccedilla.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccircumflex.glif new file mode 100644 index 0000000..47921a5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cdotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cdotaccent.glif new file mode 100644 index 0000000..40b8692 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cedilla.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cedilla.glif new file mode 100644 index 0000000..ae25fd4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cedilla.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cent.glif new file mode 100644 index 0000000..9e9cbb2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/cent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/chi.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/chi.glif new file mode 100644 index 0000000..d6860d2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/chi.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/circle.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/circle.glif new file mode 100644 index 0000000..4c57088 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/circle.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/circumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/circumflex.glif new file mode 100644 index 0000000..2a2ad0b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/circumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/club.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/club.glif new file mode 100644 index 0000000..8519e7d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/club.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/colon.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/colon.glif new file mode 100644 index 0000000..28bf3a9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/colon.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/comma.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/comma.glif new file mode 100644 index 0000000..4ae2939 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/comma.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/contents.plist b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/contents.plist new file mode 100644 index 0000000..81b826d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/contents.plist @@ -0,0 +1,1312 @@ + + + + + .notdef + _notdef.glif + .null + _null.glif + nonmarkingreturn + nonmarkingreturn.glif + space + space.glif + exclam + exclam.glif + quotedbl + quotedbl.glif + numbersign + numbersign.glif + dollar + dollar.glif + percent + percent.glif + ampersand + ampersand.glif + quotesingle + quotesingle.glif + parenleft + parenleft.glif + parenright + parenright.glif + asterisk + asterisk.glif + plus + plus.glif + comma + comma.glif + hyphen + hyphen.glif + period + period.glif + slash + slash.glif + zero + zero.glif + one + one.glif + two + two.glif + three + three.glif + four + four.glif + five + five.glif + six + six.glif + seven + seven.glif + eight + eight.glif + nine + nine.glif + colon + colon.glif + semicolon + semicolon.glif + less + less.glif + equal + equal.glif + greater + greater.glif + question + question.glif + at + at.glif + A + A_.glif + B + B_.glif + C + C_.glif + D + D_.glif + E + E_.glif + F + F_.glif + G + G_.glif + H + H_.glif + I + I_.glif + J + J_.glif + K + K_.glif + L + L_.glif + M + M_.glif + N + N_.glif + O + O_.glif + P + P_.glif + Q + Q_.glif + R + R_.glif + S + S_.glif + T + T_.glif + U + U_.glif + V + V_.glif + W + W_.glif + X + X_.glif + Y + Y_.glif + Z + Z_.glif + bracketleft + bracketleft.glif + backslash + backslash.glif + bracketright + bracketright.glif + asciicircum + asciicircum.glif + underscore + underscore.glif + grave + grave.glif + a + a.glif + b + b.glif + c + c.glif + d + d.glif + e + e.glif + f + f.glif + g + g.glif + h + h.glif + i + i.glif + j + j.glif + k + k.glif + l + l.glif + m + m.glif + n + n.glif + o + o.glif + p + p.glif + q + q.glif + r + r.glif + s + s.glif + t + t.glif + u + u.glif + v + v.glif + w + w.glif + x + x.glif + y + y.glif + z + z.glif + braceleft + braceleft.glif + bar + bar.glif + braceright + braceright.glif + asciitilde + asciitilde.glif + Adieresis + A_dieresis.glif + Aring + A_ring.glif + Ccedilla + C_cedilla.glif + Eacute + E_acute.glif + Ntilde + N_tilde.glif + Odieresis + O_dieresis.glif + Udieresis + U_dieresis.glif + aacute + aacute.glif + agrave + agrave.glif + acircumflex + acircumflex.glif + adieresis + adieresis.glif + atilde + atilde.glif + aring + aring.glif + ccedilla + ccedilla.glif + eacute + eacute.glif + egrave + egrave.glif + ecircumflex + ecircumflex.glif + edieresis + edieresis.glif + iacute + iacute.glif + igrave + igrave.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + ntilde + ntilde.glif + oacute + oacute.glif + ograve + ograve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + otilde + otilde.glif + uacute + uacute.glif + ugrave + ugrave.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + dagger + dagger.glif + degree + degree.glif + cent + cent.glif + sterling + sterling.glif + section + section.glif + bullet + bullet.glif + paragraph + paragraph.glif + germandbls + germandbls.glif + registered + registered.glif + copyright + copyright.glif + trademark + trademark.glif + acute + acute.glif + dieresis + dieresis.glif + notequal + notequal.glif + AE + A_E_.glif + Oslash + O_slash.glif + infinity + infinity.glif + plusminus + plusminus.glif + lessequal + lessequal.glif + greaterequal + greaterequal.glif + yen + yen.glif + mu + mu.glif + partialdiff + partialdiff.glif + summation + summation.glif + product + product.glif + glyph155 + glyph155.glif + integral + integral.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + Omega + O_mega.glif + ae + ae.glif + oslash + oslash.glif + questiondown + questiondown.glif + exclamdown + exclamdown.glif + logicalnot + logicalnot.glif + radical + radical.glif + florin + florin.glif + approxequal + approxequal.glif + Delta + D_elta.glif + guillemotleft + guillemotleft.glif + guillemotright + guillemotright.glif + ellipsis + ellipsis.glif + Agrave + A_grave.glif + Atilde + A_tilde.glif + Otilde + O_tilde.glif + OE + O_E_.glif + oe + oe.glif + endash + endash.glif + emdash + emdash.glif + quotedblleft + quotedblleft.glif + quotedblright + quotedblright.glif + quoteleft + quoteleft.glif + quoteright + quoteright.glif + divide + divide.glif + lozenge + lozenge.glif + ydieresis + ydieresis.glif + Ydieresis + Y_dieresis.glif + fraction + fraction.glif + Euro + E_uro.glif + guilsinglleft + guilsinglleft.glif + guilsinglright + guilsinglright.glif + uniF001 + uniF_001.glif + uniF002 + uniF_002.glif + daggerdbl + daggerdbl.glif + periodcentered + periodcentered.glif + quotesinglbase + quotesinglbase.glif + quotedblbase + quotedblbase.glif + perthousand + perthousand.glif + Acircumflex + A_circumflex.glif + Ecircumflex + E_circumflex.glif + Aacute + A_acute.glif + Edieresis + E_dieresis.glif + Egrave + E_grave.glif + Iacute + I_acute.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Igrave + I_grave.glif + Oacute + O_acute.glif + Ocircumflex + O_circumflex.glif + Ograve + O_grave.glif + Uacute + U_acute.glif + Ucircumflex + U_circumflex.glif + Ugrave + U_grave.glif + dotlessi + dotlessi.glif + circumflex + circumflex.glif + tilde + tilde.glif + uni02C9 + uni02C_9.glif + breve + breve.glif + dotaccent + dotaccent.glif + ring + ring.glif + cedilla + cedilla.glif + hungarumlaut + hungarumlaut.glif + ogonek + ogonek.glif + caron + caron.glif + Lslash + L_slash.glif + lslash + lslash.glif + Scaron + S_caron.glif + scaron + scaron.glif + Zcaron + Z_caron.glif + zcaron + zcaron.glif + brokenbar + brokenbar.glif + Eth + E_th.glif + eth + eth.glif + Yacute + Y_acute.glif + yacute + yacute.glif + Thorn + T_horn.glif + thorn + thorn.glif + minus + minus.glif + multiply + multiply.glif + uni00B9 + uni00B_9.glif + uni00B2 + uni00B_2.glif + uni00B3 + uni00B_3.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + threequarters + threequarters.glif + franc + franc.glif + Gbreve + G_breve.glif + gbreve + gbreve.glif + Idotaccent + I_dotaccent.glif + Scedilla + S_cedilla.glif + scedilla + scedilla.glif + Cacute + C_acute.glif + cacute + cacute.glif + Ccaron + C_caron.glif + ccaron + ccaron.glif + dcroat + dcroat.glif + currency + currency.glif + macron + macron.glif + Amacron + A_macron.glif + amacron + amacron.glif + Abreve + A_breve.glif + abreve + abreve.glif + Aogonek + A_ogonek.glif + aogonek + aogonek.glif + Ccircumflex + C_circumflex.glif + ccircumflex + ccircumflex.glif + Cdotaccent + C_dotaccent.glif + cdotaccent + cdotaccent.glif + Dcaron + D_caron.glif + dcaron + dcaron.glif + Dcroat + D_croat.glif + Emacron + E_macron.glif + emacron + emacron.glif + Ebreve + E_breve.glif + ebreve + ebreve.glif + Edotaccent + E_dotaccent.glif + edotaccent + edotaccent.glif + Eogonek + E_ogonek.glif + eogonek + eogonek.glif + Ecaron + E_caron.glif + ecaron + ecaron.glif + Gcircumflex + G_circumflex.glif + gcircumflex + gcircumflex.glif + Gdotaccent + G_dotaccent.glif + gdotaccent + gdotaccent.glif + Gcommaaccent + G_commaaccent.glif + gcommaaccent + gcommaaccent.glif + Hcircumflex + H_circumflex.glif + hcircumflex + hcircumflex.glif + Hbar + H_bar.glif + hbar + hbar.glif + Itilde + I_tilde.glif + itilde + itilde.glif + Imacron + I_macron.glif + imacron + imacron.glif + Ibreve + I_breve.glif + ibreve + ibreve.glif + Iogonek + I_ogonek.glif + iogonek + iogonek.glif + IJ + I_J_.glif + ij + ij.glif + Jcircumflex + J_circumflex.glif + jcircumflex + jcircumflex.glif + Kcommaaccent + K_commaaccent.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + Lacute + L_acute.glif + lacute + lacute.glif + Lcommaaccent + L_commaaccent.glif + lcommaaccent + lcommaaccent.glif + Lcaron + L_caron.glif + lcaron + lcaron.glif + Ldot + L_dot.glif + ldot + ldot.glif + Nacute + N_acute.glif + nacute + nacute.glif + Ncommaaccent + N_commaaccent.glif + ncommaaccent + ncommaaccent.glif + Ncaron + N_caron.glif + ncaron + ncaron.glif + napostrophe + napostrophe.glif + Eng + E_ng.glif + eng + eng.glif + Omacron + O_macron.glif + omacron + omacron.glif + Obreve + O_breve.glif + obreve + obreve.glif + Ohungarumlaut + O_hungarumlaut.glif + ohungarumlaut + ohungarumlaut.glif + Racute + R_acute.glif + racute + racute.glif + Rcommaaccent + R_commaaccent.glif + rcommaaccent + rcommaaccent.glif + Rcaron + R_caron.glif + rcaron + rcaron.glif + Sacute + S_acute.glif + sacute + sacute.glif + Scircumflex + S_circumflex.glif + scircumflex + scircumflex.glif + Tcommaaccent + T_commaaccent.glif + tcommaaccent + tcommaaccent.glif + Tcaron + T_caron.glif + tcaron + tcaron.glif + Tbar + T_bar.glif + tbar + tbar.glif + Utilde + U_tilde.glif + utilde + utilde.glif + Umacron + U_macron.glif + umacron + umacron.glif + Ubreve + U_breve.glif + ubreve + ubreve.glif + Uring + U_ring.glif + uring + uring.glif + Uhungarumlaut + U_hungarumlaut.glif + uhungarumlaut + uhungarumlaut.glif + Uogonek + U_ogonek.glif + uogonek + uogonek.glif + Wcircumflex + W_circumflex.glif + wcircumflex + wcircumflex.glif + Ycircumflex + Y_circumflex.glif + ycircumflex + ycircumflex.glif + Zacute + Z_acute.glif + zacute + zacute.glif + Zdotaccent + Z_dotaccent.glif + zdotaccent + zdotaccent.glif + longs + longs.glif + Aringacute + A_ringacute.glif + aringacute + aringacute.glif + AEacute + A_E_acute.glif + aeacute + aeacute.glif + Oslashacute + O_slashacute.glif + oslashacute + oslashacute.glif + tonos + tonos.glif + dieresistonos + dieresistonos.glif + Alphatonos + A_lphatonos.glif + anoteleia + anoteleia.glif + Epsilontonos + E_psilontonos.glif + Etatonos + E_tatonos.glif + Iotatonos + I_otatonos.glif + Omicrontonos + O_microntonos.glif + Upsilontonos + U_psilontonos.glif + Omegatonos + O_megatonos.glif + iotadieresistonos + iotadieresistonos.glif + Alpha + A_lpha.glif + Beta + B_eta.glif + Gamma + G_amma.glif + uni0394 + uni0394.glif + Epsilon + E_psilon.glif + Zeta + Z_eta.glif + Eta + E_ta.glif + Theta + T_heta.glif + Iota + I_ota.glif + Kappa + K_appa.glif + Lambda + L_ambda.glif + Mu + M_u.glif + Nu + N_u.glif + Xi + X_i.glif + Omicron + O_micron.glif + Pi + P_i.glif + Rho + R_ho.glif + Sigma + S_igma.glif + Tau + T_au.glif + Upsilon + U_psilon.glif + Phi + P_hi.glif + Chi + C_hi.glif + Psi + P_si.glif + uni03A9 + uni03A_9.glif + Iotadieresis + I_otadieresis.glif + Upsilondieresis + U_psilondieresis.glif + alphatonos + alphatonos.glif + epsilontonos + epsilontonos.glif + etatonos + etatonos.glif + iotatonos + iotatonos.glif + upsilondieresistonos + upsilondieresistonos.glif + alpha + alpha.glif + beta + beta.glif + gamma + gamma.glif + delta + delta.glif + epsilon + epsilon.glif + zeta + zeta.glif + eta + eta.glif + theta + theta.glif + iota + iota.glif + kappa + kappa.glif + lambda + lambda.glif + uni03BC + uni03B_C_.glif + nu + nu.glif + xi + xi.glif + omicron + omicron.glif + pi + pi.glif + rho + rho.glif + sigma1 + sigma1.glif + sigma + sigma.glif + tau + tau.glif + upsilon + upsilon.glif + phi + phi.glif + chi + chi.glif + psi + psi.glif + omega + omega.glif + iotadieresis + iotadieresis.glif + upsilondieresis + upsilondieresis.glif + omicrontonos + omicrontonos.glif + upsilontonos + upsilontonos.glif + omegatonos + omegatonos.glif + afii10023 + afii10023.glif + afii10051 + afii10051.glif + afii10052 + afii10052.glif + afii10053 + afii10053.glif + afii10054 + afii10054.glif + afii10055 + afii10055.glif + afii10056 + afii10056.glif + afii10057 + afii10057.glif + afii10058 + afii10058.glif + afii10059 + afii10059.glif + afii10060 + afii10060.glif + afii10061 + afii10061.glif + afii10062 + afii10062.glif + afii10145 + afii10145.glif + afii10017 + afii10017.glif + afii10018 + afii10018.glif + afii10019 + afii10019.glif + afii10020 + afii10020.glif + afii10021 + afii10021.glif + afii10022 + afii10022.glif + afii10024 + afii10024.glif + afii10025 + afii10025.glif + afii10026 + afii10026.glif + afii10027 + afii10027.glif + afii10028 + afii10028.glif + afii10029 + afii10029.glif + afii10030 + afii10030.glif + afii10031 + afii10031.glif + afii10032 + afii10032.glif + afii10033 + afii10033.glif + afii10034 + afii10034.glif + afii10035 + afii10035.glif + afii10036 + afii10036.glif + afii10037 + afii10037.glif + afii10038 + afii10038.glif + afii10039 + afii10039.glif + afii10040 + afii10040.glif + afii10041 + afii10041.glif + afii10042 + afii10042.glif + afii10043 + afii10043.glif + afii10044 + afii10044.glif + afii10045 + afii10045.glif + afii10046 + afii10046.glif + afii10047 + afii10047.glif + afii10048 + afii10048.glif + afii10049 + afii10049.glif + afii10065 + afii10065.glif + afii10066 + afii10066.glif + afii10067 + afii10067.glif + afii10068 + afii10068.glif + afii10069 + afii10069.glif + afii10070 + afii10070.glif + afii10072 + afii10072.glif + afii10073 + afii10073.glif + afii10074 + afii10074.glif + afii10075 + afii10075.glif + afii10076 + afii10076.glif + afii10077 + afii10077.glif + afii10078 + afii10078.glif + afii10079 + afii10079.glif + afii10080 + afii10080.glif + afii10081 + afii10081.glif + afii10082 + afii10082.glif + afii10083 + afii10083.glif + afii10084 + afii10084.glif + afii10085 + afii10085.glif + afii10086 + afii10086.glif + afii10087 + afii10087.glif + afii10088 + afii10088.glif + afii10089 + afii10089.glif + afii10090 + afii10090.glif + afii10091 + afii10091.glif + afii10092 + afii10092.glif + afii10093 + afii10093.glif + afii10094 + afii10094.glif + afii10095 + afii10095.glif + afii10096 + afii10096.glif + afii10097 + afii10097.glif + afii10071 + afii10071.glif + afii10099 + afii10099.glif + afii10100 + afii10100.glif + afii10101 + afii10101.glif + afii10102 + afii10102.glif + afii10103 + afii10103.glif + afii10104 + afii10104.glif + afii10105 + afii10105.glif + afii10106 + afii10106.glif + afii10107 + afii10107.glif + afii10108 + afii10108.glif + afii10109 + afii10109.glif + afii10110 + afii10110.glif + afii10193 + afii10193.glif + afii10050 + afii10050.glif + afii10098 + afii10098.glif + Wgrave + W_grave.glif + wgrave + wgrave.glif + Wacute + W_acute.glif + wacute + wacute.glif + Wdieresis + W_dieresis.glif + wdieresis + wdieresis.glif + Ygrave + Y_grave.glif + ygrave + ygrave.glif + afii00208 + afii00208.glif + underscoredbl + underscoredbl.glif + quotereversed + quotereversed.glif + minute + minute.glif + second + second.glif + exclamdbl + exclamdbl.glif + uni203E + uni203E_.glif + uni207F + uni207F_.glif + lira + lira.glif + peseta + peseta.glif + afii61248 + afii61248.glif + afii61289 + afii61289.glif + afii61352 + afii61352.glif + estimated + estimated.glif + oneeighth + oneeighth.glif + threeeighths + threeeighths.glif + fiveeighths + fiveeighths.glif + seveneighths + seveneighths.glif + arrowleft + arrowleft.glif + arrowup + arrowup.glif + arrowright + arrowright.glif + arrowdown + arrowdown.glif + arrowboth + arrowboth.glif + arrowupdn + arrowupdn.glif + arrowupdnbse + arrowupdnbse.glif + orthogonal + orthogonal.glif + intersection + intersection.glif + equivalence + equivalence.glif + house + house.glif + revlogicalnot + revlogicalnot.glif + integraltp + integraltp.glif + integralbt + integralbt.glif + SF100000 + S_F_100000.glif + SF110000 + S_F_110000.glif + SF010000 + S_F_010000.glif + SF030000 + S_F_030000.glif + SF020000 + S_F_020000.glif + SF040000 + S_F_040000.glif + SF080000 + S_F_080000.glif + SF090000 + S_F_090000.glif + SF060000 + S_F_060000.glif + SF070000 + S_F_070000.glif + SF050000 + S_F_050000.glif + SF430000 + S_F_430000.glif + SF240000 + S_F_240000.glif + SF510000 + S_F_510000.glif + SF520000 + S_F_520000.glif + SF390000 + S_F_390000.glif + SF220000 + S_F_220000.glif + SF210000 + S_F_210000.glif + SF250000 + S_F_250000.glif + SF500000 + S_F_500000.glif + SF490000 + S_F_490000.glif + SF380000 + S_F_380000.glif + SF280000 + S_F_280000.glif + SF270000 + S_F_270000.glif + SF260000 + S_F_260000.glif + SF360000 + S_F_360000.glif + SF370000 + S_F_370000.glif + SF420000 + S_F_420000.glif + SF190000 + S_F_190000.glif + SF200000 + S_F_200000.glif + SF230000 + S_F_230000.glif + SF470000 + S_F_470000.glif + SF480000 + S_F_480000.glif + SF410000 + S_F_410000.glif + SF450000 + S_F_450000.glif + SF460000 + S_F_460000.glif + SF400000 + S_F_400000.glif + SF540000 + S_F_540000.glif + SF530000 + S_F_530000.glif + SF440000 + S_F_440000.glif + upblock + upblock.glif + dnblock + dnblock.glif + block + block.glif + lfblock + lfblock.glif + rtblock + rtblock.glif + ltshade + ltshade.glif + shade + shade.glif + dkshade + dkshade.glif + filledbox + filledbox.glif + H22073 + H_22073.glif + H18543 + H_18543.glif + H18551 + H_18551.glif + filledrect + filledrect.glif + triagup + triagup.glif + triagrt + triagrt.glif + triagdn + triagdn.glif + triaglf + triaglf.glif + circle + circle.glif + H18533 + H_18533.glif + invbullet + invbullet.glif + invcircle + invcircle.glif + openbullet + openbullet.glif + smileface + smileface.glif + invsmileface + invsmileface.glif + sun + sun.glif + female + female.glif + male + male.glif + spade + spade.glif + club + club.glif + heart + heart.glif + diamond + diamond.glif + musicalnote + musicalnote.glif + musicalnotedbl + musicalnotedbl.glif + uniF004 + uniF_004.glif + uniF005 + uniF_005.glif + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/copyright.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/copyright.glif new file mode 100644 index 0000000..f56d32d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/copyright.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/currency.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/currency.glif new file mode 100644 index 0000000..ef1a827 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/currency.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/d.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/d.glif new file mode 100644 index 0000000..b47b94e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/d.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dagger.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dagger.glif new file mode 100644 index 0000000..89a387c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dagger.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/daggerdbl.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/daggerdbl.glif new file mode 100644 index 0000000..52377bd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dcaron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dcaron.glif new file mode 100644 index 0000000..66dd53b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dcaron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dcroat.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dcroat.glif new file mode 100644 index 0000000..4e4c966 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dcroat.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/degree.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/degree.glif new file mode 100644 index 0000000..fa9d50d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/degree.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/delta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/delta.glif new file mode 100644 index 0000000..fd87b9c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/delta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/diamond.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/diamond.glif new file mode 100644 index 0000000..8d2a792 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/diamond.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dieresis.glif new file mode 100644 index 0000000..0acd592 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dieresistonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dieresistonos.glif new file mode 100644 index 0000000..fd901b7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dieresistonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/divide.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/divide.glif new file mode 100644 index 0000000..c95fc31 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/divide.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dkshade.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dkshade.glif new file mode 100644 index 0000000..904470d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dkshade.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dnblock.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dnblock.glif new file mode 100644 index 0000000..da5ac8a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dnblock.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dollar.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dollar.glif new file mode 100644 index 0000000..54a072f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dollar.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dotaccent.glif new file mode 100644 index 0000000..f6296b7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dotlessi.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dotlessi.glif new file mode 100644 index 0000000..db2c88c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/dotlessi.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/e.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/e.glif new file mode 100644 index 0000000..5bb5f78 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/e.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eacute.glif new file mode 100644 index 0000000..23581da --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ebreve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ebreve.glif new file mode 100644 index 0000000..d2d1f55 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ebreve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ecaron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ecaron.glif new file mode 100644 index 0000000..712c247 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ecaron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ecircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ecircumflex.glif new file mode 100644 index 0000000..2f4840f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/edieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/edieresis.glif new file mode 100644 index 0000000..f047871 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/edieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/edotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/edotaccent.glif new file mode 100644 index 0000000..800b2d2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/edotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/egrave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/egrave.glif new file mode 100644 index 0000000..72f8020 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/egrave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eight.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eight.glif new file mode 100644 index 0000000..7a1a772 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eight.glif @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ellipsis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ellipsis.glif new file mode 100644 index 0000000..38c7836 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ellipsis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/emacron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/emacron.glif new file mode 100644 index 0000000..e7ea867 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/emacron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/emdash.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/emdash.glif new file mode 100644 index 0000000..8c7db31 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/emdash.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/endash.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/endash.glif new file mode 100644 index 0000000..2170370 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/endash.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eng.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eng.glif new file mode 100644 index 0000000..da598c3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eng.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eogonek.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eogonek.glif new file mode 100644 index 0000000..951b5e5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eogonek.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/epsilon.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/epsilon.glif new file mode 100644 index 0000000..22dc283 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/epsilon.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/epsilontonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/epsilontonos.glif new file mode 100644 index 0000000..f5bbd54 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/epsilontonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/equal.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/equal.glif new file mode 100644 index 0000000..0df13c9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/equal.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/equivalence.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/equivalence.glif new file mode 100644 index 0000000..e8917b8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/equivalence.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/estimated.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/estimated.glif new file mode 100644 index 0000000..2b00f0c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/estimated.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eta.glif new file mode 100644 index 0000000..6ab983b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/etatonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/etatonos.glif new file mode 100644 index 0000000..6be2220 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/etatonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eth.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eth.glif new file mode 100644 index 0000000..9af9d62 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/eth.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclam.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclam.glif new file mode 100644 index 0000000..bdb522d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclam.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclamdbl.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclamdbl.glif new file mode 100644 index 0000000..1622dbd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclamdbl.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclamdown.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclamdown.glif new file mode 100644 index 0000000..07933d7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/exclamdown.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/f.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/f.glif new file mode 100644 index 0000000..71d6446 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/f.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/female.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/female.glif new file mode 100644 index 0000000..b646cc9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/female.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/filledbox.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/filledbox.glif new file mode 100644 index 0000000..ba3822d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/filledbox.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/filledrect.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/filledrect.glif new file mode 100644 index 0000000..dc5ea42 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/filledrect.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/five.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/five.glif new file mode 100644 index 0000000..1b7d0bf --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/five.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/fiveeighths.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/fiveeighths.glif new file mode 100644 index 0000000..4ee464b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/fiveeighths.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/florin.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/florin.glif new file mode 100644 index 0000000..387b989 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/florin.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/four.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/four.glif new file mode 100644 index 0000000..2c6b538 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/four.glif @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/fraction.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/fraction.glif new file mode 100644 index 0000000..ddb5b59 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/fraction.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/franc.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/franc.glif new file mode 100644 index 0000000..3893c55 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/franc.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/g.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/g.glif new file mode 100644 index 0000000..03a6fb3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/g.glif @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gamma.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gamma.glif new file mode 100644 index 0000000..c778c55 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gamma.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gbreve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gbreve.glif new file mode 100644 index 0000000..9a7c490 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gbreve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gcircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gcircumflex.glif new file mode 100644 index 0000000..e3a1def --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gcommaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 0000000..f48cc36 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gdotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gdotaccent.glif new file mode 100644 index 0000000..5863577 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/germandbls.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/germandbls.glif new file mode 100644 index 0000000..b32916b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/germandbls.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/glyph155.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/glyph155.glif new file mode 100644 index 0000000..ff95010 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/glyph155.glif @@ -0,0 +1,4 @@ + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/grave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/grave.glif new file mode 100644 index 0000000..1797532 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/grave.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/greater.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/greater.glif new file mode 100644 index 0000000..2fb279b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/greater.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/greaterequal.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/greaterequal.glif new file mode 100644 index 0000000..176d2f2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/greaterequal.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guillemotleft.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guillemotleft.glif new file mode 100644 index 0000000..f0038c2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guillemotleft.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guillemotright.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guillemotright.glif new file mode 100644 index 0000000..47bb461 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guillemotright.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guilsinglleft.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 0000000..817be05 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guilsinglright.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guilsinglright.glif new file mode 100644 index 0000000..dbdbb07 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/h.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/h.glif new file mode 100644 index 0000000..7d2d63d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/h.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hbar.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hbar.glif new file mode 100644 index 0000000..3f53474 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hbar.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hcircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hcircumflex.glif new file mode 100644 index 0000000..73d983b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/heart.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/heart.glif new file mode 100644 index 0000000..82b57d5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/heart.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/house.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/house.glif new file mode 100644 index 0000000..86eb796 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/house.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hungarumlaut.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 0000000..99a29af --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hyphen.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hyphen.glif new file mode 100644 index 0000000..05bc529 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/hyphen.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/i.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/i.glif new file mode 100644 index 0000000..2b8bf78 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/i.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iacute.glif new file mode 100644 index 0000000..5aa13d7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ibreve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ibreve.glif new file mode 100644 index 0000000..e050b8d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ibreve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/icircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/icircumflex.glif new file mode 100644 index 0000000..cd29323 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/icircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/idieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/idieresis.glif new file mode 100644 index 0000000..a73a262 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/idieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/igrave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/igrave.glif new file mode 100644 index 0000000..034a3f1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/igrave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ij.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ij.glif new file mode 100644 index 0000000..089f42f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ij.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/imacron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/imacron.glif new file mode 100644 index 0000000..88a93d6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/imacron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/infinity.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/infinity.glif new file mode 100644 index 0000000..285a16e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/infinity.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integral.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integral.glif new file mode 100644 index 0000000..c3f5c18 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integral.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integralbt.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integralbt.glif new file mode 100644 index 0000000..c13d658 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integralbt.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integraltp.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integraltp.glif new file mode 100644 index 0000000..38aefe6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/integraltp.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/intersection.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/intersection.glif new file mode 100644 index 0000000..02653ad --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/intersection.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invbullet.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invbullet.glif new file mode 100644 index 0000000..d2c7ac4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invbullet.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invcircle.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invcircle.glif new file mode 100644 index 0000000..1b47480 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invcircle.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invsmileface.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invsmileface.glif new file mode 100644 index 0000000..fd4dd78 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/invsmileface.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iogonek.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iogonek.glif new file mode 100644 index 0000000..97e37d4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iogonek.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iota.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iota.glif new file mode 100644 index 0000000..371fc21 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iota.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotadieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotadieresis.glif new file mode 100644 index 0000000..bbc744d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotadieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotadieresistonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotadieresistonos.glif new file mode 100644 index 0000000..97ffaf4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotadieresistonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotatonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotatonos.glif new file mode 100644 index 0000000..de0fb75 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/iotatonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/itilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/itilde.glif new file mode 100644 index 0000000..411b173 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/itilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/j.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/j.glif new file mode 100644 index 0000000..b830adc --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/j.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/jcircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/jcircumflex.glif new file mode 100644 index 0000000..3b76709 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/k.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/k.glif new file mode 100644 index 0000000..3b4cc15 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/k.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kappa.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kappa.glif new file mode 100644 index 0000000..1769cbc --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kappa.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kcommaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 0000000..8be5868 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kgreenlandic.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 0000000..9777033 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/l.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/l.glif new file mode 100644 index 0000000..6121b24 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/l.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lacute.glif new file mode 100644 index 0000000..5489f35 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lambda.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lambda.glif new file mode 100644 index 0000000..c0ad28d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lambda.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lcaron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lcaron.glif new file mode 100644 index 0000000..ab9160a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lcaron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lcommaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 0000000..f5f5ce1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ldot.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ldot.glif new file mode 100644 index 0000000..b11e3c4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ldot.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/less.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/less.glif new file mode 100644 index 0000000..e29633a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/less.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lessequal.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lessequal.glif new file mode 100644 index 0000000..7c6f485 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lessequal.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lfblock.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lfblock.glif new file mode 100644 index 0000000..d1687d1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lfblock.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lira.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lira.glif new file mode 100644 index 0000000..aec9fc1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lira.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/logicalnot.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/logicalnot.glif new file mode 100644 index 0000000..a74a926 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/logicalnot.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/longs.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/longs.glif new file mode 100644 index 0000000..d6de461 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/longs.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lozenge.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lozenge.glif new file mode 100644 index 0000000..860249d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lozenge.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lslash.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lslash.glif new file mode 100644 index 0000000..6c27704 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/lslash.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ltshade.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ltshade.glif new file mode 100644 index 0000000..5dce04d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ltshade.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/m.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/m.glif new file mode 100644 index 0000000..543be2a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/m.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/macron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/macron.glif new file mode 100644 index 0000000..e3ce8e4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/macron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/male.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/male.glif new file mode 100644 index 0000000..eb52440 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/male.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/minus.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/minus.glif new file mode 100644 index 0000000..03b2ac3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/minus.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/minute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/minute.glif new file mode 100644 index 0000000..c0341a0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/minute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/mu.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/mu.glif new file mode 100644 index 0000000..415ff88 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/mu.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/multiply.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/multiply.glif new file mode 100644 index 0000000..338e42e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/multiply.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/musicalnote.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/musicalnote.glif new file mode 100644 index 0000000..94a99b6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/musicalnote.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/musicalnotedbl.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/musicalnotedbl.glif new file mode 100644 index 0000000..7c96a74 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/musicalnotedbl.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/n.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/n.glif new file mode 100644 index 0000000..ce6ecc9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/n.glif @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nacute.glif new file mode 100644 index 0000000..cf7607b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/napostrophe.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/napostrophe.glif new file mode 100644 index 0000000..54219fa --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/napostrophe.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ncaron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ncaron.glif new file mode 100644 index 0000000..a9bb4bd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ncaron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ncommaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 0000000..152b625 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nine.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nine.glif new file mode 100644 index 0000000..c410d03 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nine.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nonmarkingreturn.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nonmarkingreturn.glif new file mode 100644 index 0000000..42a67ca --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nonmarkingreturn.glif @@ -0,0 +1,4 @@ + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/notequal.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/notequal.glif new file mode 100644 index 0000000..f45e34c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/notequal.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ntilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ntilde.glif new file mode 100644 index 0000000..29c638f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ntilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nu.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nu.glif new file mode 100644 index 0000000..d0bddf4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/nu.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/numbersign.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/numbersign.glif new file mode 100644 index 0000000..d3b34aa --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/numbersign.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/o.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/o.glif new file mode 100644 index 0000000..4276a50 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/o.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oacute.glif new file mode 100644 index 0000000..ad8e29a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/obreve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/obreve.glif new file mode 100644 index 0000000..15bbee0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/obreve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ocircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ocircumflex.glif new file mode 100644 index 0000000..2e94c3c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/odieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/odieresis.glif new file mode 100644 index 0000000..8575cd1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/odieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oe.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oe.glif new file mode 100644 index 0000000..e6fecd2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oe.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ogonek.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ogonek.glif new file mode 100644 index 0000000..b2e0eb9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ogonek.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ograve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ograve.glif new file mode 100644 index 0000000..b374605 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ograve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ohungarumlaut.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 0000000..8170eaa --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omacron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omacron.glif new file mode 100644 index 0000000..abd9dbb --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omacron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omega.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omega.glif new file mode 100644 index 0000000..069b838 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omega.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omegatonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omegatonos.glif new file mode 100644 index 0000000..16439f1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omegatonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omicron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omicron.glif new file mode 100644 index 0000000..94916cd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omicron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omicrontonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omicrontonos.glif new file mode 100644 index 0000000..e0cf423 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/omicrontonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/one.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/one.glif new file mode 100644 index 0000000..30d99b9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/one.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oneeighth.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oneeighth.glif new file mode 100644 index 0000000..0a28af0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oneeighth.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/onehalf.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/onehalf.glif new file mode 100644 index 0000000..160b509 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/onehalf.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/onequarter.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/onequarter.glif new file mode 100644 index 0000000..7fbfc17 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/onequarter.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/openbullet.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/openbullet.glif new file mode 100644 index 0000000..bfa3f09 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/openbullet.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ordfeminine.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ordfeminine.glif new file mode 100644 index 0000000..bb608ac --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ordmasculine.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ordmasculine.glif new file mode 100644 index 0000000..61c3788 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/orthogonal.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/orthogonal.glif new file mode 100644 index 0000000..39c108e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/orthogonal.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oslash.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oslash.glif new file mode 100644 index 0000000..edfd5ed --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oslash.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oslashacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oslashacute.glif new file mode 100644 index 0000000..4d25163 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/oslashacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/otilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/otilde.glif new file mode 100644 index 0000000..7d3bca0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/otilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/p.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/p.glif new file mode 100644 index 0000000..d753b20 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/p.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/paragraph.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/paragraph.glif new file mode 100644 index 0000000..bfc6837 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/paragraph.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/parenleft.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/parenleft.glif new file mode 100644 index 0000000..8692092 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/parenleft.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/parenright.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/parenright.glif new file mode 100644 index 0000000..9490fc5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/parenright.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/partialdiff.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/partialdiff.glif new file mode 100644 index 0000000..083ba35 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/partialdiff.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/percent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/percent.glif new file mode 100644 index 0000000..a16ab1b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/percent.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/period.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/period.glif new file mode 100644 index 0000000..c91a574 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/period.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/periodcentered.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/periodcentered.glif new file mode 100644 index 0000000..48e13b3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/periodcentered.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/perthousand.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/perthousand.glif new file mode 100644 index 0000000..aa76d60 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/perthousand.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/peseta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/peseta.glif new file mode 100644 index 0000000..92acacf --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/peseta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/phi.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/phi.glif new file mode 100644 index 0000000..b6dc72d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/phi.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/pi.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/pi.glif new file mode 100644 index 0000000..44a9c0f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/pi.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/plus.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/plus.glif new file mode 100644 index 0000000..6c81149 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/plusminus.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/plusminus.glif new file mode 100644 index 0000000..f94f172 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/plusminus.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/product.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/product.glif new file mode 100644 index 0000000..9170ac1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/product.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/psi.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/psi.glif new file mode 100644 index 0000000..9b867ff --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/psi.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/q.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/q.glif new file mode 100644 index 0000000..681b67d --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/q.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/question.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/question.glif new file mode 100644 index 0000000..e3604db --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/question.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/questiondown.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/questiondown.glif new file mode 100644 index 0000000..996970a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/questiondown.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedbl.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedbl.glif new file mode 100644 index 0000000..4a071d6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedbl.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblbase.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblbase.glif new file mode 100644 index 0000000..c79eef7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblleft.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblleft.glif new file mode 100644 index 0000000..34c8fd6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblright.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblright.glif new file mode 100644 index 0000000..b69ec01 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotedblright.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quoteleft.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quoteleft.glif new file mode 100644 index 0000000..06099a0 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quoteleft.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotereversed.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotereversed.glif new file mode 100644 index 0000000..814eee7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotereversed.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quoteright.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quoteright.glif new file mode 100644 index 0000000..1d8ce05 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quoteright.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotesinglbase.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 0000000..e1b6bcf --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotesingle.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotesingle.glif new file mode 100644 index 0000000..3e01c09 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/quotesingle.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/r.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/r.glif new file mode 100644 index 0000000..f6e509c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/r.glif @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/racute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/racute.glif new file mode 100644 index 0000000..4fd8a8e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/racute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/radical.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/radical.glif new file mode 100644 index 0000000..acd7a55 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/radical.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rcaron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rcaron.glif new file mode 100644 index 0000000..2bbfa6e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rcaron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rcommaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 0000000..f807466 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/registered.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/registered.glif new file mode 100644 index 0000000..a97a5f8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/registered.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/revlogicalnot.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/revlogicalnot.glif new file mode 100644 index 0000000..ef09401 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/revlogicalnot.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rho.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rho.glif new file mode 100644 index 0000000..3aef60b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rho.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ring.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ring.glif new file mode 100644 index 0000000..3896e9c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ring.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rtblock.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rtblock.glif new file mode 100644 index 0000000..ef72701 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/rtblock.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/s.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/s.glif new file mode 100644 index 0000000..a2c10af --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/s.glif @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sacute.glif new file mode 100644 index 0000000..14a6897 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scaron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scaron.glif new file mode 100644 index 0000000..0b59f0a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scaron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scedilla.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scedilla.glif new file mode 100644 index 0000000..1c8cdd2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scedilla.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scircumflex.glif new file mode 100644 index 0000000..a77ae86 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/scircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/second.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/second.glif new file mode 100644 index 0000000..a3cff6e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/second.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/section.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/section.glif new file mode 100644 index 0000000..30c5c81 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/section.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/semicolon.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/semicolon.glif new file mode 100644 index 0000000..466baf8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/semicolon.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/seven.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/seven.glif new file mode 100644 index 0000000..0107bde --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/seven.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/seveneighths.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/seveneighths.glif new file mode 100644 index 0000000..45a037b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/seveneighths.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/shade.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/shade.glif new file mode 100644 index 0000000..5172f3e --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/shade.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sigma.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sigma.glif new file mode 100644 index 0000000..c1f32c6 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sigma.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sigma1.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sigma1.glif new file mode 100644 index 0000000..6edc1ef --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sigma1.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/six.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/six.glif new file mode 100644 index 0000000..c3d2a51 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/six.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/slash.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/slash.glif new file mode 100644 index 0000000..70038ea --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/slash.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/smileface.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/smileface.glif new file mode 100644 index 0000000..04bdb74 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/smileface.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/space.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/space.glif new file mode 100644 index 0000000..fd76895 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/space.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/spade.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/spade.glif new file mode 100644 index 0000000..cff30bc --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/spade.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sterling.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sterling.glif new file mode 100644 index 0000000..142747c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sterling.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/summation.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/summation.glif new file mode 100644 index 0000000..0751cb3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/summation.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sun.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sun.glif new file mode 100644 index 0000000..8cc29d5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/sun.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/t.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/t.glif new file mode 100644 index 0000000..435f53b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/t.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tau.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tau.glif new file mode 100644 index 0000000..e58f956 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tau.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tbar.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tbar.glif new file mode 100644 index 0000000..3869e53 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tbar.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tcaron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tcaron.glif new file mode 100644 index 0000000..8c0b27c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tcaron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tcommaaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 0000000..47aef8f --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/theta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/theta.glif new file mode 100644 index 0000000..cb67ce1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/theta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/thorn.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/thorn.glif new file mode 100644 index 0000000..74f90eb --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/thorn.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/three.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/three.glif new file mode 100644 index 0000000..07809df --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/three.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/threeeighths.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/threeeighths.glif new file mode 100644 index 0000000..9497142 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/threeeighths.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/threequarters.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/threequarters.glif new file mode 100644 index 0000000..d8315e5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/threequarters.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tilde.glif new file mode 100644 index 0000000..f778dea --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tonos.glif new file mode 100644 index 0000000..8c8cd41 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/tonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/trademark.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/trademark.glif new file mode 100644 index 0000000..0367069 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/trademark.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagdn.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagdn.glif new file mode 100644 index 0000000..8c9e6f3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagdn.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triaglf.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triaglf.glif new file mode 100644 index 0000000..038a9e5 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triaglf.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagrt.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagrt.glif new file mode 100644 index 0000000..417086c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagrt.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagup.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagup.glif new file mode 100644 index 0000000..b4173fd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/triagup.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/two.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/two.glif new file mode 100644 index 0000000..4af0abd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/two.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/u.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/u.glif new file mode 100644 index 0000000..45fdaea --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/u.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uacute.glif new file mode 100644 index 0000000..63240b7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ubreve.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ubreve.glif new file mode 100644 index 0000000..8034501 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ubreve.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ucircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ucircumflex.glif new file mode 100644 index 0000000..79bf499 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/udieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/udieresis.glif new file mode 100644 index 0000000..57312d1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/udieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ugrave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ugrave.glif new file mode 100644 index 0000000..55d8a65 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ugrave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uhungarumlaut.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 0000000..dbbe6c2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/umacron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/umacron.glif new file mode 100644 index 0000000..0ef70d8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/umacron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/underscore.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/underscore.glif new file mode 100644 index 0000000..709b4ac --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/underscore.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/underscoredbl.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/underscoredbl.glif new file mode 100644 index 0000000..9712ecf --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/underscoredbl.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_2.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_2.glif new file mode 100644 index 0000000..75bfb20 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_2.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_3.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_3.glif new file mode 100644 index 0000000..8b90eec --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_3.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_9.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_9.glif new file mode 100644 index 0000000..2d0628b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni00B_9.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni02C_9.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni02C_9.glif new file mode 100644 index 0000000..dee3a99 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni02C_9.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni0394.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni0394.glif new file mode 100644 index 0000000..d605482 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni0394.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni03A_9.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni03A_9.glif new file mode 100644 index 0000000..67357e8 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni03A_9.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni03B_C_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni03B_C_.glif new file mode 100644 index 0000000..b623f7c --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni03B_C_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni203E_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni203E_.glif new file mode 100644 index 0000000..f61eb11 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni203E_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni207F_.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni207F_.glif new file mode 100644 index 0000000..7f2f7aa --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uni207F_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_001.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_001.glif new file mode 100644 index 0000000..74c3297 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_001.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_002.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_002.glif new file mode 100644 index 0000000..56a52d7 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_002.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_004.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_004.glif new file mode 100644 index 0000000..6fa8b15 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_004.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_005.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_005.glif new file mode 100644 index 0000000..44e76bb --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uniF_005.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uogonek.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uogonek.glif new file mode 100644 index 0000000..ab80fa4 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uogonek.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upblock.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upblock.glif new file mode 100644 index 0000000..629c7bb --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upblock.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilon.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilon.glif new file mode 100644 index 0000000..76a92b9 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilon.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilondieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilondieresis.glif new file mode 100644 index 0000000..2948933 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilondieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilondieresistonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilondieresistonos.glif new file mode 100644 index 0000000..ed985eb --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilondieresistonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilontonos.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilontonos.glif new file mode 100644 index 0000000..7a7dda2 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/upsilontonos.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uring.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uring.glif new file mode 100644 index 0000000..dde9163 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/uring.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/utilde.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/utilde.glif new file mode 100644 index 0000000..86a6357 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/utilde.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/v.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/v.glif new file mode 100644 index 0000000..5984878 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/v.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/w.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/w.glif new file mode 100644 index 0000000..ca9ae94 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/w.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wacute.glif new file mode 100644 index 0000000..1a1d283 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wcircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wcircumflex.glif new file mode 100644 index 0000000..2d4c1a1 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wdieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wdieresis.glif new file mode 100644 index 0000000..b6ae798 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wdieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wgrave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wgrave.glif new file mode 100644 index 0000000..174565b --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/wgrave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/x.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/x.glif new file mode 100644 index 0000000..1e1a2da --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/x.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/xi.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/xi.glif new file mode 100644 index 0000000..b6ad5da --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/xi.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/y.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/y.glif new file mode 100644 index 0000000..ba444ae --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/y.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/yacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/yacute.glif new file mode 100644 index 0000000..d87845a --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/yacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ycircumflex.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ycircumflex.glif new file mode 100644 index 0000000..e5fd7ca --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ydieresis.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ydieresis.glif new file mode 100644 index 0000000..68b5d59 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ydieresis.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/yen.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/yen.glif new file mode 100644 index 0000000..4885d09 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/yen.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ygrave.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ygrave.glif new file mode 100644 index 0000000..d52dc03 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/ygrave.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/z.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/z.glif new file mode 100644 index 0000000..c8e4d32 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/z.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zacute.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zacute.glif new file mode 100644 index 0000000..9c26e48 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zacute.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zcaron.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zcaron.glif new file mode 100644 index 0000000..4b4eed3 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zcaron.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zdotaccent.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zdotaccent.glif new file mode 100644 index 0000000..9fc8fbd --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zero.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zero.glif new file mode 100644 index 0000000..f5cedab --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zero.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zeta.glif b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zeta.glif new file mode 100644 index 0000000..10f9a96 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/glyphs/zeta.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/metainfo.plist b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/metainfo.plist new file mode 100644 index 0000000..9b9b988 --- /dev/null +++ b/bhatkhande/bangla/OmeBhatkhandeBangla.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + net.GitHub.FontForge + formatVersion + 2 + + diff --git a/ttf/OmeBhatkhandeBangla.ttf b/ttf/OmeBhatkhandeBangla.ttf new file mode 100644 index 0000000000000000000000000000000000000000..0f16aa83a24b74fc6823e5ddf48dbe0adf08dcae GIT binary patch literal 34704 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 LFk??C$(H{ElSy?$ literal 0 HcmV?d00001 diff --git a/ttf/OmeBhatkhandeEnglish.ttf b/ttf/OmeBhatkhandeEnglish.ttf index 316c562f7ba80083b37c4a0327161baedf999956..1ea011bdfda8b9e2280caeb8673d8fa27ecdae39 100644 GIT binary patch delta 76 zcmccfiSf=SMiB-^1_lOxh6V;^h5|RY5a04^oM971YMIkjzfGJ{AoJ$UU7L7*o39Mq X96)sp43C-etzqDNKpyxB1Gz&A|WykA5#b1EV)F9w-3-%kvWX From 5f39f630e8389eb726309ee3e14a016c46414d3d Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Tue, 10 Sep 2024 22:19:45 -0400 Subject: [PATCH 11/14] Make font-goggles more Bhatkhande specific Ome Swarlipi doesn't fit in the format, which is more useful for Bhatkhande specifically, because of the multiple languages. --- .../font-goggles.gggls | 29 +++++++++---------- 1 file changed, 13 insertions(+), 16 deletions(-) rename font-goggles.gggls => bhatkhande/font-goggles.gggls (58%) diff --git a/font-goggles.gggls b/bhatkhande/font-goggles.gggls similarity index 58% rename from font-goggles.gggls rename to bhatkhande/font-goggles.gggls index 436e84f..95792bd 100644 --- a/font-goggles.gggls +++ b/bhatkhande/font-goggles.gggls @@ -1,23 +1,20 @@ { "fonts": [ { - "path": "ttf/OmeBhatkhandeEnglish.ttf" + "path": "../ttf/OmeBhatkhandeHindi.ttf" }, { - "path": "ttf/OmeBhatkhandeHindi.ttf" + "path": "../ttf/OmeBhatkhandeEnglish.ttf" }, { - "path": "ttf/OmeBhatkhandePunjabi.ttf" + "path": "../ttf/OmeBhatkhandePunjabi.ttf" }, { - "path": "ttf/OmeBhatkhandeBangla.ttf" - }, - { - "path": "ttf/OmeSwarlipi.ttf" + "path": "../ttf/OmeBhatkhandeBangla.ttf" } ], "textSettings": { - "text": "su sU ml mL `@DLr@gm qsUwWrUEMU [];'’\\ 1234567890", + "text": "su sU ml mL `@DLr@gm qsUwWrUEMU [];'’\\\\ 1234567890", "textFilePath": null, "textFileIndex": 0, "shouldApplyBiDi": true, @@ -28,24 +25,24 @@ "features": {}, "varLocation": {}, "relativeFontSize": 0.25, - "relativeHBaseline": 0.3546029281616211, + "relativeHBaseline": 0.4, "relativeVBaseline": 0.5, - "relativeMargin": 0.14113643646240234, + "relativeMargin": 0.1, "enableColor": true }, "uiSettings": { "windowPosition": [ - 1920.0, 0.0, - 1920.0, - 1068.0 + 0.0, + 1470.0, + 919.0 ], "fontListItemSize": 150, "fontListShowFontFileName": true, - "characterListVisible": true, + "characterListVisible": false, "characterListSize": 98.0, - "glyphListVisible": true, - "glyphListSize": 226.0, + "glyphListVisible": false, + "glyphListSize": 117.0, "compileOutputVisible": false, "compileOutputSize": 80.0, "formattingOptionsVisible": true, From c82b6432b1e73d58fc758a4ca7d74727c92db807 Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Wed, 11 Sep 2024 00:22:40 -0400 Subject: [PATCH 12/14] Update docker compose for new Docker --- scripts/server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server b/scripts/server index 0b715da..1e328aa 100755 --- a/scripts/server +++ b/scripts/server @@ -1,3 +1,3 @@ #!/usr/bin/env bash -docker-compose up +docker compose up From 749daa6fe345e50b4fb9fd45828a63b19a3b6e84 Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Wed, 11 Sep 2024 00:23:09 -0400 Subject: [PATCH 13/14] Add documentation for Ome Bhatkhande Bangla Also adjust the home page to now feature a 2x2 grid, instead of a 3x1 like before, since now we have 4 variants not 3. --- docs/_data/navigation.yml | 2 + docs/_pages/ome-bhatkhande-bangla.md | 318 ++++++++++++++++++ docs/_pages/usage.md | 2 +- docs/_sass/minimal-mistakes/_archive.scss | 15 +- docs/_sass/omenad-fonts/_tables.scss | 10 + .../images/ome-bhatkhande-bangla-header.jpg | Bin 0 -> 301925 bytes .../ome-bhatkhande-bangla-thumbnail.jpg | Bin 0 -> 54327 bytes docs/index.html | 4 + 8 files changed, 340 insertions(+), 11 deletions(-) create mode 100644 docs/_pages/ome-bhatkhande-bangla.md create mode 100644 docs/assets/images/ome-bhatkhande-bangla-header.jpg create mode 100644 docs/assets/images/ome-bhatkhande-bangla-thumbnail.jpg diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index 815b04c..3b96768 100644 --- a/docs/_data/navigation.yml +++ b/docs/_data/navigation.yml @@ -30,6 +30,8 @@ sidebar: url: /ome-bhatkhande-english/ - title: Ome Bhatkhande Punjabi url: /ome-bhatkhande-punjabi/ + - title: Ome Bhatkhande Bangla + url: /ome-bhatkhande-bangla/ - title: Usage children: - title: Desktop diff --git a/docs/_pages/ome-bhatkhande-bangla.md b/docs/_pages/ome-bhatkhande-bangla.md new file mode 100644 index 0000000..c9c64a0 --- /dev/null +++ b/docs/_pages/ome-bhatkhande-bangla.md @@ -0,0 +1,318 @@ +--- +title: Ome Bhatkhande Bangla +layout: single +permalink: /ome-bhatkhande-bangla/ +header: + overlay_color: "000" + overlay_filter: "0.5" + overlay_image: /assets/images/ome-bhatkhande-bangla-header.jpg +sidebar: + nav: "sidebar" +--- + +{% include toc title="Overview" %} + +# Introduction + +# Glyphs + +## Swar (Notes) + +### Regular Notes + +For the seven natural notes, use lower case keys corresponding to each note. + +{:.keymap.bhatkhande-bangla} +| Note | Key | Bhatkhande | +|------|-----|------------| +| Sa | `s` | s | +| Re | `r` | r | +| Ga | `g` | g | +| Ma | `m` | m | +| Pa | `p` | p | +| Dha | `d` | d | +| Ni | `n` | n | + +### Variant Notes + +In Indian Music, Ma is the only note with a Sharp variant. Re, Ga, Dha, and Ni have Flat variants. These are typed using capital letters. + +{:.keymap.bhatkhande-bangla} +| Note | Key | Bhatkhande | +|----------|-----|------------| +| Flat Re | `R` | R | +| Flat Ga | `G` | G | +| Sharp Ma | `M` | M | +| Flat Dha | `D` | D | +| Flat Ni | `N` | N | + +### Octaves + +A dot symbol `·` above or below a note signifies upper (Tar) or lower (Mandra) octave respectively. The two dots symbol `··` above or below a note signifies two octaves upper (Ati Tar) or lower (Ati Mandra) respectively. The absence of the dot signifies middle octave. + +{:.keymap.bhatkhande-bangla} +| Note | Key | Bhatkhande | +|-----------------------|------|------------| +| Lower Sharp Ma | `Ml` | Ml | +| Middle Pa | `p` | p | +| Upper Flat Dha | `Du` | Du | +| Double Upper Flat Gha | `GU` | GU | + +## Mizrab Ke Bol (Strokes) + +All Strokes take the same space as Notes, except for Dir which takes the space for two Notes. + +{:.keymap.bhatkhande-bangla} +| Stroke | Key | Bhatkhande | +|--------|-----|-------------| +| Da | `;` | ; | +| Ra | `'` | {{ "'" }} | +| Daa | `[` | [ | +| Raa | `]` | ] | +| Dir | `\` | \ | +| Khali | `-` | - | + +### Special Instructions for Word Processors + +A number of word processors, including Microsoft Word, Apple Pages, and LibreOffice, will sometimes automatically replace a straight quotation mark `'` ([`U+0027` Apostrophe](http://graphemica.com/%27)) with a typographic quote `’` ([`U+2019` Right Single Quotation Mark](http://graphemica.com/%E2%80%99)). This facility is called "Smart Quotes". + +In previous versions, the Bhatkhande ' corresponded to the former, not the latter, and having Smart Quotes enabled made that character disappear. This was fixed in [version 2.1.0](https://github.com/omenad/fonts/releases/tag/2.1.0). Please upgrade to the latest version to remedy this issue. + +## Chhand + +Chhand characters take zero space, and must be typed immediately before a set of notes they will cover. They are used to show multiple notes played within the same beat. + +To make a chhand of 2-8 notes, use the keys `Shift``+``2`–`8`: + +{:.keymap.bhatkhande-bangla} +| Chhand Size | Key | Bhatkhande | +|--------------|-----|------------| +| Dugun (2) | `@` | @ | +| Tigun (3) | `#` | # | +| Chaugun (4) | `$` | $ | +| Pachgun (5) | `%` | % | +| Chhatgun (6) | `^` | ^ | +| Satgun (7) | `&` | & | +| Athgun (8) | `*` | * | + +Additionally, `, `!`, and `~` can be used for a lower version of Chaugun (4), Chhatgun (6), and Athgun (8) to allow for larger groupings. + +{:.keymap.bhatkhande-bangla} +| Chhand Size | Key | Bhatkhande | +|--------------------|----------------|------------| +| Lower Chaugun (4) | ` | ` | +| Lower Chhatgun (6) | `!` | ! | +| Lower Athgun (8) | `~` | ~ | + +This is an example of a chhand showing complicated layakari: + +{:.keymap.bhatkhande-bangla} +| Key Strokes | Bhatkhande | +|--------------------------------------|----------------------------------| +| ``~#srg%mpdnsu !@sr$gmpd `qswrWgem`` | ~#srg%mpdnsu !@sr$gmpd `qswrWgem | + +## Meend + +The Meend characters take zero space, and must be typed immediately before a note from any octave. The Meend characters, are to be used as a set. + +A valid Meend sequence is that which begins with the Meend Start character `q`, is followed by one note from any octave, followed by zero or more pairs of a Meend Continue character `w` and one note from any octave, and finished with a Meend End character `e` followed by one note from any octave. The Meend Stroke character, made with a `W`, is used to indicate a note on which a stroke is necesary to keep the meend going. + +{:.keymap.bhatkhande-bangla} +| Meend Character | Key | Bhatkhande | +|-----------------|-----|------------| +| Meend Start | `q` | q | +| Ghaseet Start | `Q` | Q | +| Meend Continue | `w` | w | +| Meend Stroke | `W` | W | +| Meend End | `e` | e | +| Ghaseet End | `E` | E | + +The following examples illustrate how a valid Meend sequence is visually cohesive in its representation of a continuous pull: + +{:.keymap.bhatkhande-bangla} +| Key Strokes | Bhatkhande | +|--------------|------------| +| `qswrwgem` | qswrwgem | +| `qger` | qger | +| `qRwGwmep` | qRwGwmep | +| `qDlwNlWser` | qDlwNlWser | + +## Murki + +Parentheses around a note indicate a quick movement from the note to the adjescent ones and back to the original note. For example, (p) can translate to Mpdp, or dpMp, or pMdp, depending on the artist's interpretation. + +{:.keymap.bhatkhande-bangla} +| Key Strokes | Bhatkhande | +|-------------|------------| +| `(p)` | (p) | + +## Kan + +Kan and Krintan rely on the word processing ability to **superscript**. Since the width of these superscripted characters depends on the word processor, in certain cases it can break the monospacing of the font. + +{:.keymap.bhatkhande-bangla} +| Key Strokes | Bhatkhande | +|--------------------------|---------------------| +| ```m````p` | mp | +| `d````g````m` | dgm | + +The ability to add predictable superscripting is planned for the future. + +## Krintan + +Krintan is Kan repeated twice, thrice, four times in a single stroke of the Mizrab, represented by the numeral after the Kan note. + +{:.keymap.bhatkhande-bangla} +| Key Strokes | Bhatkhande | +|--------------------------|---------------------| +| ```m3````p` | m3p | + +## Miscellaneous + +{:.keymap.bhatkhande-bangla} +| Type | Key | Bhatkhande | +|-----------|-----|------------| +| Sam | `x` | x | +| Long Dash | `_` | _ | +| Comma | `,` | , | +| Plus | `+` | + | +| 0 | `0` | 0 | +| 1 | `1` | 1 | +| 2 | `2` | 2 | +| 3 | `3` | 3 | +| 4 | `4` | 4 | +| 5 | `5` | 5 | +| 6 | `6` | 6 | +| 7 | `7` | 7 | +| 8 | `8` | 8 | +| 9 | `9` | 9 | + +# Layout + +
+ +{:.composition.bhatkhande-bangla} +|||`g @pp g p `|`- @nn d n `| +|||`[ \ [ ] `|`- \ [ ] `| +|`su - d n `|`su ru su - `|`su @gugu @gugu @mumu`|`ru @rusu @-su d `| +|`[ - [ ] `|`[ ] [ - `|`[ \ \ \`|`[ @'[ @-' [`| +|`p @mm @gg @mm`|`r @rs @-s s `||| +|`[ \ \ \`|`[ @'[ @-' [ `||| +|`x`|`2`|`0`|`3`| + +
+ +_Raga Bilawal: Composition 101, Antara from राग विबोध : मिश्रबानी by Dr. Ragini Trivedi_ + +The Bhatkhande notation system requires more ceremony and organization to write. +It is written in a tabular format, with columns subdividing the beat into smaller parts. +Each line of the composition is written in two rows: the top row being the notes (movement of the left hand on sitar), and the bottom one being strokes (movement of the right hand on sitar). +The final row represents the starting beat for each subdivision. The rest are captured from the alignment. + +## Zero Character Sequencing + +The zero character sets of Chhand and Meend, they can be typed in any order and have the same visual effect. For example, pay attention to the first three characters in the following: + +{:.keymap.bhatkhande-bangla} +| Key Strokes | Bhatkhande | +|--------------------------|-------------| +| `@qswr@Wgem | `@qswr@Wgem | +| `q@swr@Wgem | `q@swr@Wgem | +| @`qswr@Wgem | @`qswr@Wgem | +| @q`swr@Wgem | @q`swr@Wgem | +| q`@swr@Wgem | q`@swr@Wgem | +| q@`swr@Wgem | q@`swr@Wgem | + +Of these, the first one should be considered canonical. The characters should be ordered in ascending terms of locality, with the least local Lower Chaugun (affecting 4 notes) first, then Dugun (affecting two notes), and then the Meend Start (affecting only one). The character affecting only one note should be closest to it. + +# Web Use + +For usage on the web, add the following block to the `` section: + +```html + +``` + +You can then use the `.ome-bhatkhande-bangla` class on any element to use the font: + +```html +g @pp g p +``` + +It is recommended to use `
` or `` to preserve whitespace in the compositions.
+
+For writing a full composition as shown above, a table is required, for example:
+
+```html
+
+  
+    
+      
+      
+      
+      
+    
+    
+      
+      
+      
+      
+    
+    
+      
+      
+      
+      
+    
+    
+      
+      
+      
+      
+    
+    
+      
+      
+      
+      
+    
+    
+      
+      
+      
+      
+    
+    
+      
+      
+      
+      
+    
+  
+
g @pp g p - @nn d n
[ \ [ ] - \ [ ]
su - d n su ru su - su @gugu @gugu @mumuru @rusu @-su d
[ - [ ] [ ] [ - [ \ \ \[ @'[ @-' [
p @mm @gg @mmr @rs @-s s
[ \ \ \[ @'[ @-' [
x203
+``` + +with additional styling provided by: + +```css +table.composition { + border: none; +} + +table.composition td { + width: 25%; + border: none; + border-right: 1px solid black; +} + +table.composition td:last-child { + border-right: none; +} + +table.composition.bhatkhande-bangla td > code { + white-space: pre; + font-family: 'ome_bhatkhande_bangla'; +} +``` + +Webfonts are currently not included in the download package, and they are not licensed for self-hosted web use. Usage from the above URL is free and unlimited at this time. diff --git a/docs/_pages/usage.md b/docs/_pages/usage.md index 56aa415..7622e89 100644 --- a/docs/_pages/usage.md +++ b/docs/_pages/usage.md @@ -32,7 +32,7 @@ For usage on the web, add the following block to the `` section: ``` -You can then use the [`.ome-swarlipi`](/fonts/ome-swarlipi), [`.ome-bhatkhande-hindi`](/fonts/ome-bhatkhande-hindi), [`.ome-bhatkhande-english`](/fonts/ome-bhatkhande-english), or [`.ome-bhatkhande-punjabi`](/fonts/ome-bhatkhande-punjabi) CSS classes to render in the respective font. +You can then use the [`.ome-swarlipi`](/fonts/ome-swarlipi), [`.ome-bhatkhande-hindi`](/fonts/ome-bhatkhande-hindi), [`.ome-bhatkhande-english`](/fonts/ome-bhatkhande-english), [`.ome-bhatkhande-punjabi`](/fonts/ome-bhatkhande-punjabi), or [`.ome-bhatkhande-bangla`](/fonts/ome-bhatkhande-bangla) CSS classes to render in the respective font. ## License diff --git a/docs/_sass/minimal-mistakes/_archive.scss b/docs/_sass/minimal-mistakes/_archive.scss index bc37bb6..b8541f0 100644 --- a/docs/_sass/minimal-mistakes/_archive.scss +++ b/docs/_sass/minimal-mistakes/_archive.scss @@ -263,14 +263,14 @@ @include breakpoint($small) { .archive__item-teaser { float: left; - width: span(5 of 12); + width: span(6 of 12); } .archive__item-body { float: right; padding-left: gutter(0.5 of 12); padding-right: gutter(1 of 12); - width: span(7 of 12); + width: span(6 of 12); } } } @@ -339,19 +339,14 @@ @include breakpoint($small) { float: left; margin-bottom: 0; - width: span(4 of 12); + width: span(6 of 12); - &:nth-child(3n + 1) { + &:nth-child(2n + 1) { clear: both; margin-left: 0; } - &:nth-child(3n + 2) { - clear: none; - margin-left: gutter(of 12); - } - - &:nth-child(3n + 3) { + &:nth-child(2n + 2) { clear: none; margin-left: gutter(of 12); } diff --git a/docs/_sass/omenad-fonts/_tables.scss b/docs/_sass/omenad-fonts/_tables.scss index 87fae94..188aa1b 100644 --- a/docs/_sass/omenad-fonts/_tables.scss +++ b/docs/_sass/omenad-fonts/_tables.scss @@ -69,6 +69,12 @@ table.keymap { font-size: 1.5em; line-height: 3em; } + + &.bhatkhande-bangla td:last-child { + font-family: 'ome_bhatkhande_bangla'; + font-size: 1.5em; + line-height: 3em; + } } table.composition { @@ -106,6 +112,10 @@ table.composition { &.bhatkhande-punjabi td > code { font-family: 'ome_bhatkhande_punjabi'; } + + &.bhatkhande-bangla td > code { + font-family: 'ome_bhatkhande_bangla'; + } } .horizontal-scroll-block { diff --git a/docs/assets/images/ome-bhatkhande-bangla-header.jpg b/docs/assets/images/ome-bhatkhande-bangla-header.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab7ac1bdcf95a58e8f8bd08172e67a51100e386d GIT binary patch literal 301925 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
gl{Iq?b|~ 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≪8GW$okRhUAk;>SotJw$75qi9 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℘YN||& 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 h%d)^m4e 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�lgEE6%~0@y7!&1Hu_a8_?)&TLxk&f8vGvP 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

    rLt~=t}>~+Mq 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 E1c@pRC;$Ke literal 0 HcmV?d00001 diff --git a/docs/index.html b/docs/index.html index 08ca704..ae92663 100644 --- a/docs/index.html +++ b/docs/index.html @@ -27,6 +27,10 @@ alt: "Ome Bhatkhande Punjabi" title: "Ome Bhatkhande Punjabi" url: /ome-bhatkhande-punjabi/ + - image_path: /assets/images/ome-bhatkhande-bangla-thumbnail.jpg + alt: "Ome Bhatkhande Bangla" + title: "Ome Bhatkhande Bangla" + url: /ome-bhatkhande-bangla/ --- {% include feature_row id="feature_row_swarlipi" type="left" %} From 93b8f57ed043ff34ed6ab9a59928cacf74d4f3a4 Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Wed, 11 Sep 2024 00:40:00 -0400 Subject: [PATCH 14/14] 3.0.0 --- CHANGELOG.md | 8 ++++++++ README.md | 5 +++-- docs/_config.yml | 2 +- docs/_data/navigation.yml | 6 +++--- docs/index.html | 2 +- 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c50e0d..3e586b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 3.0.0 + +- Add Bangla version of Bhatkhande font. + [#71](https://github.com/omenad/fonts/pull/71) + [#72](https://github.com/omenad/fonts/pull/72) +- Pipeline builds for Bhatkhande fonts + [#69](https://github.com/omenad/fonts/pull/69) + ## 2.3.0 - Add `U`, `L` for Ati Tar and Ati Mandra in all fonts diff --git a/README.md b/README.md index 2fba297..887fded 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ A notation system designed to be non-language specific, easy to learn, and very [![bhatkhande-hindi-image][bhatkhande-hindi-image]][bhatkhande-hindi] -The classical system for writing Indian Classical Music. These are available for [Hindi][bhatkhande-hindi], [English][bhatkhande-english], and [Punjabi][bhatkhande-punjabi]. +The classical system for writing Indian Classical Music. These are available for [Hindi][bhatkhande-hindi], [English][bhatkhande-english], [Punjabi][bhatkhande-punjabi], and [Bangla][bhatkhande-bangla]. ## Development @@ -40,11 +40,12 @@ Add a new URL to rajada.in for the release. Make a `docs/$TAG` branch and update all references for downloading it. Merge to `master`. [docs]: https://omenad.github.io/fonts/ -[download]: https://rajada.in/omenadfonts230 +[download]: https://rajada.in/omenadfonts300 [swarlipi]: https://omenad.github.io/fonts/ome-swarlipi/ [swarlipi-image]: https://omenad.github.io/fonts/assets/images/ome-swarlipi-thumbnail.jpg [bhatkhande-hindi]: https://omenad.github.io/fonts/ome-bhatkhande-hindi/ [bhatkhande-hindi-image]: https://omenad.github.io/fonts/assets/images/ome-bhatkhande-hindi-thumbnail.jpg [bhatkhande-english]: https://omenad.github.io/fonts/ome-bhatkhande-english/ [bhatkhande-punjabi]: https://omenad.github.io/fonts/ome-bhatkhande-punjabi/ +[bhatkhande-bangla]: https://omenad.github.io/fonts/ome-bhatkhande-bangla/ [fontforge]: https://fontforge.org/en-US/ diff --git a/docs/_config.yml b/docs/_config.yml index aac901f..435d5e0 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -11,7 +11,7 @@ _include: ["_pages"] minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise" # Download Settings -download_url : "https://rajada.in/omenadfonts230" +download_url : "https://rajada.in/omenadfonts300" # Site Settings locale : "en" diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index 3b96768..2dd4e31 100644 --- a/docs/_data/navigation.yml +++ b/docs/_data/navigation.yml @@ -5,7 +5,7 @@ main: # - title: "History" # url: /history/ - title: Download - url: https://rajada.in/omenadfonts230 + url: https://rajada.in/omenadfonts300 - title: "GitHub" url: https://github.com/omenad/fonts - title: "Omenad" @@ -41,10 +41,10 @@ sidebar: - title: Apps url: /usage/#apps - title: Download - url: https://rajada.in/omenadfonts230 + url: https://rajada.in/omenadfonts300 children: - title: Download - url: https://rajada.in/omenadfonts230 + url: https://rajada.in/omenadfonts300 - title: Resources children: - title: GitHub diff --git a/docs/index.html b/docs/index.html index ae92663..d59cdf6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -7,7 +7,7 @@ overlay_filter: "0.5" overlay_image: /assets/images/patrick-tomasso-71909.jpg cta_label: "Download" - cta_url: https://rajada.in/omenadfonts230 + cta_url: https://rajada.in/omenadfonts300 feature_row_swarlipi: - image_path: /assets/images/ome-swarlipi-thumbnail.jpg alt: "Ome Swarlipi"